bitwarden-estensione-browser/src/services/browserPlatformUtils.servic...

254 lines
8.1 KiB
TypeScript
Raw Normal View History

import * as tldjs from 'tldjs';
2018-01-06 20:22:55 +01:00
2018-01-13 03:31:46 +01:00
import { BrowserApi } from '../browser/browserApi';
2018-04-10 20:20:03 +02:00
import { DeviceType } from 'jslib/enums/deviceType';
2018-01-09 20:26:20 +01:00
2018-04-10 20:20:03 +02:00
import { MessagingService } from 'jslib/abstractions/messaging.service';
2018-04-11 05:49:46 +02:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-04-24 23:04:49 +02:00
import { AnalyticsIds } from 'jslib/misc/analytics';
2018-04-14 15:39:47 +02:00
const DialogPromiseExpiration = 600000; // 10 minutes
2018-04-10 20:20:03 +02:00
2018-01-09 20:26:20 +01:00
export default class BrowserPlatformUtilsService implements PlatformUtilsService {
static getDomain(uriString: string): string {
if (uriString == null) {
return null;
}
uriString = uriString.trim();
if (uriString === '') {
return null;
}
if (uriString.startsWith('http://') || uriString.startsWith('https://')) {
try {
const url = new URL(uriString);
2018-01-05 22:38:50 +01:00
if (url.hostname === 'localhost' || BrowserPlatformUtilsService.validIpAddress(url.hostname)) {
return url.hostname;
}
const urlDomain = tldjs.getDomain(url.hostname);
return urlDomain != null ? urlDomain : url.hostname;
} catch (e) { }
}
const domain = tldjs.getDomain(uriString);
if (domain != null) {
return domain;
}
return null;
}
private static validIpAddress(ipString: string): boolean {
// tslint:disable-next-line
const ipRegex = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
return ipRegex.test(ipString);
}
2018-03-21 16:21:42 +01:00
identityClientId: string = 'browser';
2018-04-10 20:20:03 +02:00
private showDialogResolves = new Map<number, { resolve: (value: boolean) => void, date: Date }>();
2018-01-09 20:26:20 +01:00
private deviceCache: DeviceType = null;
private analyticsIdCache: string = null;
2018-04-10 20:20:03 +02:00
constructor(private messagingService: MessagingService) { }
2018-01-09 20:26:20 +01:00
getDevice(): DeviceType {
2018-01-05 17:13:24 +01:00
if (this.deviceCache) {
return this.deviceCache;
}
2018-01-16 03:40:42 +01:00
if (navigator.userAgent.indexOf(' Firefox/') !== -1 || navigator.userAgent.indexOf(' Gecko/') !== -1) {
2018-01-09 20:26:20 +01:00
this.deviceCache = DeviceType.Firefox;
} else if ((!!(window as any).opr && !!opr.addons) || !!(window as any).opera ||
navigator.userAgent.indexOf(' OPR/') >= 0) {
2018-01-09 20:26:20 +01:00
this.deviceCache = DeviceType.Opera;
} else if (navigator.userAgent.indexOf(' Edge/') !== -1) {
2018-01-09 20:26:20 +01:00
this.deviceCache = DeviceType.Edge;
} else if (navigator.userAgent.indexOf(' Vivaldi/') !== -1) {
2018-01-09 20:26:20 +01:00
this.deviceCache = DeviceType.Vivaldi;
2018-01-16 03:40:42 +01:00
} else if ((window as any).safari && navigator.userAgent.indexOf(' Safari/') !== -1 &&
navigator.userAgent.indexOf('Chrome') === -1) {
2018-01-11 21:49:29 +01:00
this.deviceCache = DeviceType.Safari;
2018-01-16 03:40:42 +01:00
} else if ((window as any).chrome && navigator.userAgent.indexOf(' Chrome/') !== -1) {
2018-01-09 20:26:20 +01:00
this.deviceCache = DeviceType.Chrome;
}
2018-01-05 17:13:24 +01:00
return this.deviceCache;
}
2018-01-05 17:13:24 +01:00
getDeviceString(): string {
2018-01-09 20:26:20 +01:00
return DeviceType[this.getDevice()].toLowerCase();
}
isFirefox(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Firefox;
}
isChrome(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Chrome;
}
isEdge(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Edge;
}
isOpera(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Opera;
}
isVivaldi(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Vivaldi;
}
isSafari(): boolean {
2018-01-09 20:26:20 +01:00
return this.getDevice() === DeviceType.Safari;
}
2018-06-08 05:36:58 +02:00
isIE(): boolean {
return false;
}
2018-02-27 05:51:17 +01:00
isMacAppStore(): boolean {
return false;
}
analyticsId(): string {
if (this.analyticsIdCache) {
return this.analyticsIdCache;
}
2018-01-24 18:24:31 +01:00
this.analyticsIdCache = (AnalyticsIds as any)[this.getDevice()];
return this.analyticsIdCache;
}
getDomain(uriString: string): string {
2018-01-05 22:38:50 +01:00
return BrowserPlatformUtilsService.getDomain(uriString);
}
2018-01-04 22:49:58 +01:00
isViewOpen(): boolean {
2018-01-13 03:31:46 +01:00
if (BrowserApi.isPopupOpen()) {
2018-01-12 04:22:07 +01:00
return true;
}
2018-01-13 03:31:46 +01:00
if (this.isSafari()) {
return false;
2018-01-05 17:13:24 +01:00
}
2018-01-04 22:49:58 +01:00
const sidebarView = this.sidebarViewName();
const sidebarOpen = sidebarView != null && chrome.extension.getViews({ type: sidebarView }).length > 0;
2018-01-05 17:13:24 +01:00
if (sidebarOpen) {
return true;
}
2018-01-04 22:49:58 +01:00
2018-01-05 17:13:24 +01:00
const tabOpen = chrome.extension.getViews({ type: 'tab' }).length > 0;
return tabOpen;
2018-01-04 22:49:58 +01:00
}
2018-01-25 20:31:54 +01:00
launchUri(uri: string, options?: any): void {
BrowserApi.createNewTab(uri, options && options.extensionPage === true);
}
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {
BrowserApi.downloadFile(win, blobData, blobOptions, fileName);
}
2018-01-26 16:48:32 +01:00
getApplicationVersion(): string {
return BrowserApi.getApplicationVersion();
}
2018-02-02 04:53:36 +01:00
supportsU2f(win: Window): boolean {
2018-04-14 19:32:56 +02:00
if (win != null && (win as any).u2f != null) {
2018-02-02 04:53:36 +01:00
return true;
}
return this.isChrome() || this.isOpera();
}
2018-05-16 21:30:36 +02:00
supportsDuo(): boolean {
return true;
}
2018-05-31 20:42:59 +02:00
showToast(type: 'error' | 'success' | 'warning' | 'info', title: string, text: string, global?: any): void {
throw new Error('showToast not implemented');
}
2018-02-03 05:46:30 +01:00
showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string) {
2018-04-10 20:20:03 +02:00
const dialogId = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
this.messagingService.send('showDialog', {
text: text,
title: title,
confirmText: confirmText,
cancelText: cancelText,
type: type,
dialogId: dialogId,
});
return new Promise<boolean>((resolve) => {
this.showDialogResolves.set(dialogId, { resolve: resolve, date: new Date() });
});
2018-02-03 05:46:30 +01:00
}
2018-02-13 23:23:30 +01:00
isDev(): boolean {
2018-04-14 19:32:56 +02:00
return process.env.ENV === 'development';
2018-02-13 23:23:30 +01:00
}
2018-02-16 20:00:41 +01:00
copyToClipboard(text: string, options?: any): void {
2018-04-23 19:04:11 +02:00
const doc = options ? options.doc : window.document;
if ((window as any).clipboardData && (window as any).clipboardData.setData) {
// IE specific code path to prevent textarea being shown while dialog is visible.
(window as any).clipboardData.setData('Text', text);
} else if (doc.queryCommandSupported && doc.queryCommandSupported('copy')) {
const textarea = doc.createElement('textarea');
textarea.textContent = text;
// Prevent scrolling to bottom of page in MS Edge.
textarea.style.position = 'fixed';
doc.body.appendChild(textarea);
textarea.select();
try {
// Security exception may be thrown by some browsers.
doc.execCommand('copy');
} catch (e) {
// tslint:disable-next-line
console.warn('Copy to clipboard failed.', e);
} finally {
doc.body.removeChild(textarea);
}
}
2018-02-16 20:00:41 +01:00
}
2018-04-10 20:20:03 +02:00
resolveDialogPromise(dialogId: number, confirmed: boolean) {
if (this.showDialogResolves.has(dialogId)) {
const resolveObj = this.showDialogResolves.get(dialogId);
resolveObj.resolve(confirmed);
this.showDialogResolves.delete(dialogId);
}
// Clean up old promises
const deleteIds: number[] = [];
this.showDialogResolves.forEach((val, key) => {
const age = new Date().getTime() - val.date.getTime();
if (age > DialogPromiseExpiration) {
deleteIds.push(key);
}
});
deleteIds.forEach((id) => {
this.showDialogResolves.delete(id);
});
}
2018-01-04 22:49:58 +01:00
private sidebarViewName(): string {
if ((window as any).chrome.sidebarAction && this.isFirefox()) {
return 'sidebar';
} else if (this.isOpera() && (typeof opr !== 'undefined') && opr.sidebarAction) {
return 'sidebar_panel';
}
return null;
}
}