import * as fs from 'fs'; import * as os from 'os'; import * as path from 'path'; import { BrowserWindow } from 'electron'; import * as log from 'loglevel'; import wurl from 'wurl'; const INJECT_CSS_PATH = path.join(__dirname, '../..', 'inject/inject.css'); export function isOSX(): boolean { return os.platform() === 'darwin'; } export function isLinux(): boolean { return os.platform() === 'linux'; } export function isWindows(): boolean { return os.platform() === 'win32'; } export function linkIsInternal( currentUrl: string, newUrl: string, internalUrlRegex: string | RegExp, ): boolean { if (newUrl === 'about:blank') { return true; } if (internalUrlRegex) { const regex = RegExp(internalUrlRegex); return regex.test(newUrl); } const currentDomain = wurl('domain', currentUrl); const newDomain = wurl('domain', newUrl); return currentDomain === newDomain; } export function shouldInjectCss(): boolean { try { fs.accessSync(INJECT_CSS_PATH); return true; } catch (e) { return false; } } export function getCssToInject(): string { return fs.readFileSync(INJECT_CSS_PATH).toString(); } /** * Helper to print debug messages from the main process in the browser window */ export function debugLog(browserWindow: BrowserWindow, message: string): void { // Need a delay, as it takes time for the preloaded js to be loaded by the window setTimeout(() => { browserWindow.webContents.send('debug', message); }, 3000); log.info(message); } export function getAppIcon(): string { return path.join(__dirname, `../../icon.${isWindows() ? 'ico' : 'png'}`); } export function nativeTabsSupported(): boolean { return isOSX(); } export function getCounterValue(title: string): string { const itemCountRegex = /[([{]([\d.,]*)\+?[}\])]/; const match = itemCountRegex.exec(title); return match ? match[1] : undefined; }