bitwarden-estensione-browser/src/electron/services/electronPlatformUtils.servi...

223 lines
5.9 KiB
TypeScript
Raw Normal View History

2018-04-24 22:00:20 +02:00
import {
clipboard,
ipcRenderer,
2018-04-24 22:00:20 +02:00
remote,
shell,
} from 'electron';
2018-08-18 05:57:42 +02:00
import * as fs from 'fs';
2018-04-24 22:00:20 +02:00
import {
isDev,
isMacAppStore,
} from '../utils';
import { DeviceType } from '../../enums/deviceType';
import { I18nService } from '../../abstractions/i18n.service';
import { MessagingService } from '../../abstractions/messaging.service';
2018-04-24 22:00:20 +02:00
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { StorageService } from '../../abstractions/storage.service';
2018-04-24 22:00:20 +02:00
import { AnalyticsIds } from '../../misc/analytics';
import { ElectronConstants } from '../electronConstants';
2018-04-24 22:00:20 +02:00
export class ElectronPlatformUtilsService implements PlatformUtilsService {
identityClientId: string;
private deviceCache: DeviceType = null;
private analyticsIdCache: string = null;
constructor(private i18nService: I18nService, private messagingService: MessagingService,
private isDesktopApp: boolean, private storageService: StorageService) {
2018-04-24 22:00:20 +02:00
this.identityClientId = isDesktopApp ? 'desktop' : 'connector';
}
getDevice(): DeviceType {
if (!this.deviceCache) {
switch (process.platform) {
case 'win32':
this.deviceCache = DeviceType.WindowsDesktop;
2018-04-24 22:00:20 +02:00
break;
case 'darwin':
this.deviceCache = DeviceType.MacOsDesktop;
2018-04-24 22:00:20 +02:00
break;
case 'linux':
default:
this.deviceCache = DeviceType.LinuxDesktop;
2018-04-24 22:00:20 +02:00
break;
}
}
return this.deviceCache;
}
getDeviceString(): string {
2018-07-09 15:30:15 +02:00
const device = DeviceType[this.getDevice()].toLowerCase();
return device.replace('desktop', '');
2018-04-24 22:00:20 +02:00
}
isFirefox(): boolean {
return false;
}
isChrome(): boolean {
return true;
}
isEdge(): boolean {
return false;
}
isOpera(): boolean {
return false;
}
isVivaldi(): boolean {
return false;
}
isSafari(): boolean {
return false;
}
2018-06-08 05:36:39 +02:00
isIE(): boolean {
return false;
}
2018-04-24 22:00:20 +02:00
isMacAppStore(): boolean {
return isMacAppStore();
}
analyticsId(): string {
if (!this.isDesktopApp) {
return null;
}
if (this.analyticsIdCache) {
return this.analyticsIdCache;
}
this.analyticsIdCache = (AnalyticsIds as any)[this.getDevice()];
return this.analyticsIdCache;
}
2019-08-20 19:47:15 +02:00
isViewOpen(): Promise<boolean> {
return Promise.resolve(false);
2018-04-24 22:00:20 +02:00
}
2018-06-09 20:50:18 +02:00
lockTimeout(): number {
return null;
}
2018-04-24 22:00:20 +02:00
launchUri(uri: string, options?: any): void {
shell.openExternal(uri);
}
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {
2018-08-18 05:57:42 +02:00
remote.dialog.showSaveDialog(remote.getCurrentWindow(), {
defaultPath: fileName,
2018-08-18 06:24:48 +02:00
showsTagField: false,
2020-01-27 15:46:42 +01:00
}).then((ret) => {
if (ret.filePath != null) {
fs.writeFile(ret.filePath, Buffer.from(blobData), (err) => {
2018-08-29 15:35:10 +02:00
// error check?
});
}
2018-08-18 05:57:42 +02:00
});
2018-04-24 22:00:20 +02:00
}
getApplicationVersion(): string {
return remote.app.getVersion();
}
supportsU2f(win: Window): boolean {
// Not supported in Electron at this time.
// ref: https://github.com/electron/electron/issues/3226
return false;
}
2018-05-16 21:30:28 +02:00
supportsDuo(): boolean {
return true;
}
2018-10-03 05:09:19 +02:00
showToast(type: 'error' | 'success' | 'warning' | 'info', title: string, text: string | string[],
options?: any): void {
this.messagingService.send('showToast', {
text: text,
title: title,
type: type,
options: options,
});
2018-05-31 20:40:01 +02:00
}
2020-01-27 15:46:42 +01:00
async showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string):
2018-04-24 22:00:20 +02:00
Promise<boolean> {
const buttons = [confirmText == null ? this.i18nService.t('ok') : confirmText];
if (cancelText != null) {
buttons.push(cancelText);
}
2020-01-27 15:46:42 +01:00
const result = await remote.dialog.showMessageBox(remote.getCurrentWindow(), {
2018-04-24 22:00:20 +02:00
type: type,
title: title,
message: title,
detail: text,
buttons: buttons,
cancelId: buttons.length === 2 ? 1 : null,
defaultId: 0,
noLink: true,
});
2020-01-27 15:46:42 +01:00
return Promise.resolve(result.response === 0);
2018-04-24 22:00:20 +02:00
}
2018-10-03 06:09:07 +02:00
eventTrack(action: string, label?: string, options?: any) {
this.messagingService.send('analyticsEventTrack', {
action: action,
label: label,
options: options,
});
2018-10-03 06:09:07 +02:00
}
2018-04-24 22:00:20 +02:00
isDev(): boolean {
return isDev();
}
2018-06-30 19:51:09 +02:00
isSelfHost(): boolean {
return false;
}
2018-04-24 22:00:20 +02:00
copyToClipboard(text: string, options?: any): void {
const type = options ? options.type : null;
2019-05-30 15:37:02 +02:00
const clearing = options ? !!options.clearing : false;
2019-02-27 17:26:35 +01:00
const clearMs: number = options && options.clearMs ? options.clearMs : null;
2018-04-24 22:00:20 +02:00
clipboard.writeText(text, type);
2019-05-30 15:37:02 +02:00
if (!clearing) {
this.messagingService.send('copiedToClipboard', {
clipboardValue: text,
clearMs: clearMs,
type: type,
clearing: clearing,
});
}
2018-04-24 22:00:20 +02:00
}
readFromClipboard(options?: any): Promise<string> {
const type = options ? options.type : null;
return Promise.resolve(clipboard.readText(type));
}
supportsBiometric(): Promise<boolean> {
return this.storageService.get(ElectronConstants.enableBiometric);
}
authenticateBiometric(): Promise<boolean> {
return new Promise((resolve) => {
const val = ipcRenderer.sendSync('biometric', {
action: 'authenticate',
});
resolve(val);
});
}
2018-04-24 22:00:20 +02:00
}