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

187 lines
4.6 KiB
TypeScript
Raw Normal View History

2018-04-24 22:00:20 +02:00
import {
clipboard,
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 { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { AnalyticsIds } from '../../misc/analytics';
import { Utils } from '../../misc/utils';
export class ElectronPlatformUtilsService implements PlatformUtilsService {
identityClientId: string;
private deviceCache: DeviceType = null;
private analyticsIdCache: string = null;
constructor(private i18nService: I18nService, private isDesktopApp: boolean) {
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;
}
getDomain(uriString: string): string {
return Utils.getHostname(uriString);
}
isViewOpen(): boolean {
return false;
}
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,
2018-08-29 15:35:10 +02:00
}, (path) => {
if (path != null) {
fs.writeFile(path, Buffer.from(blobData), (err) => {
// 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-05-31 20:40:01 +02:00
showToast(type: 'error' | 'success' | 'warning' | 'info', title: string, text: string, global?: any): void {
if (global == null && Utils.isBrowser) {
global = window;
}
if (global == null || global.BitwardenToasterService == null) {
throw new Error('BitwardenToasterService not available on global.');
}
global.BitwardenToasterService.popAsync(type, title, text);
}
2018-04-24 22:00:20 +02:00
showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string):
Promise<boolean> {
const buttons = [confirmText == null ? this.i18nService.t('ok') : confirmText];
if (cancelText != null) {
buttons.push(cancelText);
}
const result = remote.dialog.showMessageBox(remote.getCurrentWindow(), {
type: type,
title: title,
message: title,
detail: text,
buttons: buttons,
cancelId: buttons.length === 2 ? 1 : null,
defaultId: 0,
noLink: true,
});
return Promise.resolve(result === 0);
}
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;
clipboard.writeText(text, type);
}
}