Compare commits
	
		
			112 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 814ce071a3 | ||
|  | 92fb176f67 | ||
|  | a03f569af9 | ||
|  | af59bb7c99 | ||
|  | 4390966a62 | ||
|  | a6d942fe6c | ||
|  | 9d4093b3d8 | ||
|  | 20a6c5d128 | ||
|  | c843e179fc | ||
|  | 438d4fffa7 | ||
|  | 5c164bfa7d | ||
|  | cbc89a72a2 | ||
|  | fb1e163130 | ||
|  | 2ebeeedba8 | ||
|  | 82a7f97ca6 | ||
|  | 55eb768064 | ||
|  | 611932c66d | ||
|  | 5deffa5022 | ||
|  | 6f01f1362a | ||
|  | 9d2739f050 | ||
|  | 01f6e77237 | ||
|  | 7ac35cc087 | ||
|  | 32e6b3054f | ||
|  | 40bf2a1f20 | ||
|  | dee2f05ac0 | ||
|  | ca5de73155 | ||
|  | d0f8c040c7 | ||
|  | 7cf40f1e08 | ||
|  | 598c0df60b | ||
|  | d3bcd7306a | ||
|  | b3261bcdff | ||
|  | 20c6f487c4 | ||
|  | 340797ca10 | ||
|  | 220aac2d54 | ||
|  | d9f6cf4cc9 | ||
|  | dc3e5d4930 | ||
|  | fc2b80c36a | ||
|  | ab667d8053 | ||
|  | 8b9a10a23d | ||
|  | 15af3e732f | ||
|  | 534f4c1463 | ||
|  | 063324550e | ||
|  | 268471df6b | ||
|  | ca6b2312be | ||
|  | ff026e5763 | ||
|  | 8f810481e3 | ||
|  | f91e95647a | ||
|  | e9536f247b | ||
|  | 067cbf32a1 | ||
|  | 6824978114 | ||
|  | fa86f1ca25 | ||
|  | a63b3873ae | ||
|  | 5064ea4b47 | ||
|  | 6b0d8520c5 | ||
|  | 4b16164155 | ||
|  | 6036a44fb2 | ||
|  | 598b96b6e8 | ||
|  | 675bc2f06c | ||
|  | eb2988a5e4 | ||
|  | 39ea18228c | ||
|  | 909e0f07e3 | ||
|  | 31af6596bf | ||
|  | 3c9914542f | ||
|  | f4b9605742 | ||
|  | e2fc9241fa | ||
|  | 3b18357c74 | ||
|  | c4beedf740 | ||
|  | b34bf7236f | ||
|  | e32968b2f3 | ||
|  | 747fbb5ab0 | ||
|  | 107e522914 | ||
|  | c83bc08359 | ||
|  | ef0b056437 | ||
|  | 9370f783ba | ||
|  | 227e59fee2 | ||
|  | b7147d0b29 | ||
|  | f93053eb20 | ||
|  | 49b29bfed6 | ||
|  | 0fb610f858 | ||
|  | 1d9a923245 | ||
|  | 9582d32de8 | ||
|  | a2a21631f2 | ||
|  | 9490265a03 | ||
|  | 70bd619fa8 | ||
|  | c5797e4edb | ||
|  | 32321daef2 | ||
|  | 95a9568ece | ||
|  | e7a885a1fb | ||
|  | 17d4d97e2e | ||
|  | 3b14684058 | ||
|  | 7d592a0a1c | ||
|  | eb1be7106b | ||
|  | 1da6e5d51d | ||
|  | dae7089c7e | ||
|  | 30b40e2ff2 | ||
|  | b76f01349a | ||
|  | 8446deb673 | ||
|  | d4b9663257 | ||
|  | 77044fd9fa | ||
|  | 177b77f0b5 | ||
|  | 99b154b8ae | ||
|  | 3fd8aedf81 | ||
|  | b4d2e55c6f | ||
|  | 3c701ff518 | ||
|  | 1f79a97b05 | ||
|  | 90e8e9a806 | ||
|  | 59ef505efd | ||
|  | 8d0a111c91 | ||
|  | a10fa8f3ad | ||
|  | 39427091f5 | ||
|  | f8d93cf397 | ||
|  | ab62b8b5bb | 
							
								
								
									
										2
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
								
							
							
						
						| @@ -1,7 +1,5 @@ | ||||
| * text=auto eol=lf | ||||
|  | ||||
| package-lock.json binary | ||||
| app/package-lock.json binary | ||||
| *.gif binary | ||||
| *.jpg binary | ||||
| *.jpeg binary | ||||
|   | ||||
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						| @@ -1,5 +1,5 @@ | ||||
| # Dependency directories | ||||
| node_modules/ | ||||
| # Dependency directory | ||||
| /node_modules/ | ||||
|  | ||||
| # npm cache directory | ||||
| .npm | ||||
|   | ||||
| @@ -15,17 +15,17 @@ addons: | ||||
|  | ||||
| language: node_js | ||||
| node_js: | ||||
| - '8' | ||||
| - '10' | ||||
| - '12' | ||||
|  | ||||
| before_install: | ||||
|   - ./scripts/travis-xvfb.sh | ||||
|   - npm install -g gulp | ||||
|   - npm install | ||||
|   - npm ci | ||||
|  | ||||
| cache: | ||||
|   directories: | ||||
|   - node_modules | ||||
|   - app/node_modules | ||||
|  | ||||
| script: | ||||
| - npm run travis | ||||
|   | ||||
| @@ -6,7 +6,7 @@ The following is a set of guidelines for contributing to Zulip's desktop Client. | ||||
|  | ||||
| ## Getting Started | ||||
|  | ||||
| Zulip-Desktop app is built on top of [Electron](http://electron.atom.io/). If you are new to Electron, please head over to [this](https://jlord.dev/blog/essential-electron) great article. | ||||
| Zulip-Desktop app is built on top of [Electron](http://electron.atom.io/). If you are new to Electron, please head over to [this](https://jlord.us/essential-electron) great article. | ||||
|  | ||||
| ## Community | ||||
|  | ||||
|   | ||||
| @@ -18,6 +18,15 @@ Please see the [installation guide](https://zulipchat.com/help/desktop-app-insta | ||||
| * Multi-language spell checker | ||||
| * Automatic updates | ||||
|  | ||||
| # Reporting issues | ||||
|  | ||||
| This desktop client shares most of its code with the Zulip webapp. | ||||
| Issues in an individual organization's Zulip window should be reported | ||||
| in the [Zulip server and webapp | ||||
| project](https://github.com/zulip/zulip/issues/new).  Other | ||||
| issues in the desktop app and its settings should be reported [in this | ||||
| project](https://github.com/zulip/zulip-desktop/issues/new). | ||||
|  | ||||
| # Contribute | ||||
|  | ||||
| First, join us on the [Zulip community server](https://zulip.readthedocs.io/en/latest/contributing/chat-zulip-org.html)! | ||||
|   | ||||
| @@ -1,11 +1,11 @@ | ||||
| 'use strict'; | ||||
| import { app, dialog, shell } from 'electron'; | ||||
| import { app, dialog } from 'electron'; | ||||
| import { autoUpdater } from 'electron-updater'; | ||||
| import { linuxUpdateNotification } from './linuxupdater';	// Required only in case of linux | ||||
|  | ||||
| import log = require('electron-log'); | ||||
| import isDev = require('electron-is-dev'); | ||||
| import ConfigUtil = require('../renderer/js/utils/config-util'); | ||||
| import log from 'electron-log'; | ||||
| import isDev from 'electron-is-dev'; | ||||
| import * as ConfigUtil from '../renderer/js/utils/config-util'; | ||||
| import * as LinkUtil from '../renderer/js/utils/link-util'; | ||||
|  | ||||
| export function appUpdater(updateFromMenu = false): void { | ||||
| 	// Don't initiate auto-updates in development | ||||
| @@ -62,20 +62,19 @@ export function appUpdater(updateFromMenu = false): void { | ||||
| 		} | ||||
| 	}); | ||||
|  | ||||
| 	autoUpdater.on('error', error => { | ||||
| 	autoUpdater.on('error', async error => { | ||||
| 		if (updateFromMenu) { | ||||
| 			const messageText = (updateAvailable) ? ('Unable to download the updates') : ('Unable to check for updates'); | ||||
| 			dialog.showMessageBox({ | ||||
| 			const { response } = await dialog.showMessageBox({ | ||||
| 				type: 'error', | ||||
| 				buttons: ['Manual Download', 'Cancel'], | ||||
| 				message: messageText, | ||||
| 				detail: (error).toString() + `\n\nThe latest version of Zulip Desktop is available at -\nhttps://zulipchat.com/apps/.\n | ||||
| Current Version: ${app.getVersion()}` | ||||
| 			}, response => { | ||||
| 				if (response === 0) { | ||||
| 					shell.openExternal('https://zulipchat.com/apps/'); | ||||
| 				} | ||||
| 				Current Version: ${app.getVersion()}` | ||||
| 			}); | ||||
| 			if (response === 0) { | ||||
| 				LinkUtil.openBrowser(new URL('https://zulipchat.com/apps/')); | ||||
| 			} | ||||
| 			// Remove all autoUpdator listeners so that next time autoUpdator is manually called these | ||||
| 			// listeners don't trigger multiple times. | ||||
| 			autoUpdater.removeAllListeners(); | ||||
| @@ -83,23 +82,22 @@ Current Version: ${app.getVersion()}` | ||||
| 	}); | ||||
|  | ||||
| 	// Ask the user if update is available | ||||
| 	autoUpdater.on('update-downloaded', event => { | ||||
| 	autoUpdater.on('update-downloaded', async event => { | ||||
| 		// Ask user to update the app | ||||
| 		dialog.showMessageBox({ | ||||
| 		const { response } = await dialog.showMessageBox({ | ||||
| 			type: 'question', | ||||
| 			buttons: ['Install and Relaunch', 'Install Later'], | ||||
| 			defaultId: 0, | ||||
| 			message: `A new update ${event.version} has been downloaded`, | ||||
| 			detail: 'It will be installed the next time you restart the application' | ||||
| 		}, response => { | ||||
| 			if (response === 0) { | ||||
| 				setTimeout(() => { | ||||
| 					autoUpdater.quitAndInstall(); | ||||
| 					// force app to quit. This is just a workaround, ideally autoUpdater.quitAndInstall() should relaunch the app. | ||||
| 					app.quit(); | ||||
| 				}, 1000); | ||||
| 			} | ||||
| 		}); | ||||
| 		if (response === 0) { | ||||
| 			setTimeout(() => { | ||||
| 				autoUpdater.quitAndInstall(); | ||||
| 				// force app to quit. This is just a workaround, ideally autoUpdater.quitAndInstall() should relaunch the app. | ||||
| 				app.quit(); | ||||
| 			}, 1000); | ||||
| 		} | ||||
| 	}); | ||||
| 	// Init for updates | ||||
| 	autoUpdater.checkForUpdates(); | ||||
|   | ||||
| @@ -1,19 +1,16 @@ | ||||
| 'use strict'; | ||||
| import { sentryInit } from '../renderer/js/utils/sentry-util'; | ||||
| import { appUpdater } from './autoupdater'; | ||||
| import { setAutoLaunch } from './startup'; | ||||
|  | ||||
| import windowStateKeeper = require('electron-window-state'); | ||||
| import path = require('path'); | ||||
| import fs = require('fs'); | ||||
| import isDev = require('electron-is-dev'); | ||||
| import electron = require('electron'); | ||||
| const { app, ipcMain } = electron; | ||||
| import windowStateKeeper from 'electron-window-state'; | ||||
| import path from 'path'; | ||||
| import fs from 'fs'; | ||||
| import electron, { app, ipcMain, session, dialog } from 'electron'; | ||||
|  | ||||
| import AppMenu = require('./menu'); | ||||
| import BadgeSettings = require('../renderer/js/pages/preference/badge-settings'); | ||||
| import ConfigUtil = require('../renderer/js/utils/config-util'); | ||||
| import ProxyUtil = require('../renderer/js/utils/proxy-util'); | ||||
| import * as AppMenu from './menu'; | ||||
| import * as BadgeSettings from '../renderer/js/pages/preference/badge-settings'; | ||||
| import * as ConfigUtil from '../renderer/js/utils/config-util'; | ||||
| import * as ProxyUtil from '../renderer/js/utils/proxy-util'; | ||||
|  | ||||
| interface PatchedGlobal extends NodeJS.Global { | ||||
| 	mainWindowState: windowStateKeeper.State; | ||||
| @@ -21,12 +18,6 @@ interface PatchedGlobal extends NodeJS.Global { | ||||
|  | ||||
| const globalPatched = global as PatchedGlobal; | ||||
|  | ||||
| // Adds debug features like hotkeys for triggering dev tools and reload | ||||
| // in development mode | ||||
| if (isDev) { | ||||
| 	require('electron-debug')(); | ||||
| } | ||||
|  | ||||
| // Prevent window being garbage collected | ||||
| let mainWindow: Electron.BrowserWindow; | ||||
| let badgeCount: number; | ||||
| @@ -57,6 +48,15 @@ const iconPath = (): string => { | ||||
| 	return APP_ICON + (process.platform === 'win32' ? '.ico' : '.png'); | ||||
| }; | ||||
|  | ||||
| // toggle the app window | ||||
| const toggleApp = (): void => { | ||||
| 	if (!mainWindow.isVisible() || mainWindow.isMinimized()) { | ||||
| 		mainWindow.show(); | ||||
| 	} else { | ||||
| 		mainWindow.hide(); | ||||
| 	} | ||||
| }; | ||||
|  | ||||
| function createMainWindow(): Electron.BrowserWindow { | ||||
| 	// Load the previous state with fallback to defaults | ||||
| 	const mainWindowState: windowStateKeeper.State = windowStateKeeper({ | ||||
| @@ -81,7 +81,8 @@ function createMainWindow(): Electron.BrowserWindow { | ||||
| 		webPreferences: { | ||||
| 			plugins: true, | ||||
| 			nodeIntegration: true, | ||||
| 			partition: 'persist:webviewsession' | ||||
| 			partition: 'persist:webviewsession', | ||||
| 			webviewTag: true | ||||
| 		}, | ||||
| 		show: false | ||||
| 	}); | ||||
| @@ -93,9 +94,12 @@ function createMainWindow(): Electron.BrowserWindow { | ||||
| 	win.loadURL(mainURL); | ||||
|  | ||||
| 	// Keep the app running in background on close event | ||||
| 	win.on('close', e => { | ||||
| 	win.on('close', event => { | ||||
| 		if (ConfigUtil.getConfigItem('quitOnClose')) { | ||||
| 			app.quit(); | ||||
| 		} | ||||
| 		if (!isQuitting) { | ||||
| 			e.preventDefault(); | ||||
| 			event.preventDefault(); | ||||
|  | ||||
| 			if (process.platform === 'darwin') { | ||||
| 				app.hide(); | ||||
| @@ -116,8 +120,8 @@ function createMainWindow(): Electron.BrowserWindow { | ||||
| 	}); | ||||
|  | ||||
| 	//  To destroy tray icon when navigate to a new URL | ||||
| 	win.webContents.on('will-navigate', e => { | ||||
| 		if (e) { | ||||
| 	win.webContents.on('will-navigate', event => { | ||||
| 		if (event) { | ||||
| 			win.webContents.send('destroytray'); | ||||
| 		} | ||||
| 	}); | ||||
| @@ -144,7 +148,10 @@ app.on('certificate-error', (event: Event, _webContents: Electron.WebContents, _ | ||||
| }); | ||||
|  | ||||
| app.on('activate', () => { | ||||
| 	if (!mainWindow) { | ||||
| 	if (mainWindow) { | ||||
| 		// if there is already a window toggle the app | ||||
| 		toggleApp(); | ||||
| 	} else { | ||||
| 		mainWindow = createMainWindow(); | ||||
| 	} | ||||
| }); | ||||
| @@ -158,7 +165,7 @@ app.on('ready', () => { | ||||
| 	// Auto-hide menu bar on Windows + Linux | ||||
| 	if (process.platform !== 'darwin') { | ||||
| 		const shouldHideMenu = ConfigUtil.getConfigItem('autoHideMenubar') || false; | ||||
| 		mainWindow.setAutoHideMenuBar(shouldHideMenu); | ||||
| 		mainWindow.autoHideMenuBar = shouldHideMenu; | ||||
| 		mainWindow.setMenuBarVisibility(!shouldHideMenu); | ||||
| 	} | ||||
|  | ||||
| @@ -182,6 +189,10 @@ app.on('ready', () => { | ||||
| 		} else { | ||||
| 			mainWindow.show(); | ||||
| 		} | ||||
| 		if (!ConfigUtil.isConfigItemExists('userAgent')) { | ||||
| 			const userAgent = session.fromPartition('webview:persistsession').getUserAgent(); | ||||
| 			ConfigUtil.setConfigItem('userAgent', userAgent); | ||||
| 		} | ||||
| 	}); | ||||
|  | ||||
| 	page.once('did-frame-finish-load', () => { | ||||
| @@ -191,6 +202,27 @@ app.on('ready', () => { | ||||
| 		} | ||||
| 	}); | ||||
|  | ||||
| 	const permissionCallbacks = new Map(); | ||||
| 	let nextPermissionId = 0; | ||||
|  | ||||
| 	page.session.setPermissionRequestHandler((webContents, permission, callback, details) => { | ||||
| 		const {origin} = new URL(details.requestingUrl); | ||||
| 		permissionCallbacks.set(nextPermissionId, callback); | ||||
| 		page.send('permission-request', nextPermissionId, { | ||||
| 			webContentsId: webContents.id === mainWindow.webContents.id ? | ||||
| 				null : | ||||
| 				webContents.id, | ||||
| 			origin, | ||||
| 			permission | ||||
| 		}); | ||||
| 		nextPermissionId++; | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('permission-response', (event: Event, permissionId: number, grant: boolean) => { | ||||
| 		permissionCallbacks.get(permissionId)(grant); | ||||
| 		permissionCallbacks.delete(permissionId); | ||||
| 	}); | ||||
|  | ||||
| 	// Temporarily remove this event | ||||
| 	// electron.powerMonitor.on('resume', () => { | ||||
| 	// 	mainWindow.reload(); | ||||
| @@ -244,38 +276,34 @@ app.on('ready', () => { | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('toggle-app', () => { | ||||
| 		if (!mainWindow.isVisible() || mainWindow.isMinimized()) { | ||||
| 			mainWindow.show(); | ||||
| 		} else { | ||||
| 			mainWindow.hide(); | ||||
| 		} | ||||
| 		toggleApp(); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('toggle-badge-option', () => { | ||||
| 		BadgeSettings.updateBadge(badgeCount, mainWindow); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('toggle-menubar', (_event: Electron.IpcMessageEvent, showMenubar: boolean) => { | ||||
| 		mainWindow.setAutoHideMenuBar(showMenubar); | ||||
| 	ipcMain.on('toggle-menubar', (_event: Electron.IpcMainEvent, showMenubar: boolean) => { | ||||
| 		mainWindow.autoHideMenuBar = showMenubar; | ||||
| 		mainWindow.setMenuBarVisibility(!showMenubar); | ||||
| 		page.send('toggle-autohide-menubar', showMenubar, true); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('update-badge', (_event: Electron.IpcMessageEvent, messageCount: number) => { | ||||
| 	ipcMain.on('update-badge', (_event: Electron.IpcMainEvent, messageCount: number) => { | ||||
| 		badgeCount = messageCount; | ||||
| 		BadgeSettings.updateBadge(badgeCount, mainWindow); | ||||
| 		page.send('tray', messageCount); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('update-taskbar-icon', (_event: Electron.IpcMessageEvent, data: any, text: string) => { | ||||
| 	ipcMain.on('update-taskbar-icon', (_event: Electron.IpcMainEvent, data: string, text: string) => { | ||||
| 		BadgeSettings.updateTaskbarIcon(data, text, mainWindow); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('forward-message', (_event: Electron.IpcMessageEvent, listener: any, ...params: any[]) => { | ||||
| 		page.send(listener, ...params); | ||||
| 	ipcMain.on('forward-message', (_event: Electron.IpcMainEvent, listener: string, ...parameters: any[]) => { | ||||
| 		page.send(listener, ...parameters); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('update-menu', (_event: Electron.IpcMessageEvent, props: any) => { | ||||
| 	ipcMain.on('update-menu', (_event: Electron.IpcMainEvent, props: any) => { | ||||
| 		AppMenu.setMenu(props); | ||||
| 		const activeTab = props.tabs[props.activeTabIndex]; | ||||
| 		if (activeTab) { | ||||
| @@ -283,35 +311,50 @@ app.on('ready', () => { | ||||
| 		} | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('toggleAutoLauncher', (_event: Electron.IpcMessageEvent, AutoLaunchValue: boolean) => { | ||||
| 	ipcMain.on('toggleAutoLauncher', (_event: Electron.IpcMainEvent, AutoLaunchValue: boolean) => { | ||||
| 		setAutoLaunch(AutoLaunchValue); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('downloadFile', (_event: Electron.IpcMessageEvent, url: string, downloadPath: string) => { | ||||
| 	ipcMain.on('downloadFile', (_event: Electron.IpcMainEvent, url: string, downloadPath: string) => { | ||||
| 		page.downloadURL(url); | ||||
| 		page.session.once('will-download', (_event: Event, item) => { | ||||
| 			const filePath = path.join(downloadPath, item.getFilename()); | ||||
| 		page.session.once('will-download', async (_event: Event, item) => { | ||||
| 			let setFilePath: string; | ||||
| 			let shortFileName: string; | ||||
| 			if (ConfigUtil.getConfigItem('promptDownload', false)) { | ||||
| 				const showDialogOptions: object = { | ||||
| 					defaultPath: path.join(downloadPath, item.getFilename()) | ||||
| 				}; | ||||
|  | ||||
| 			const getTimeStamp = (): any => { | ||||
| 				const date = new Date(); | ||||
| 				return date.getTime(); | ||||
| 			}; | ||||
| 				const result = await dialog.showSaveDialog(mainWindow, showDialogOptions); | ||||
| 				if (result.canceled) { | ||||
| 					item.cancel(); | ||||
| 					return; | ||||
| 				} | ||||
| 				setFilePath = result.filePath; | ||||
| 				shortFileName = path.basename(setFilePath); | ||||
| 			} else { | ||||
| 				const getTimeStamp = (): number => { | ||||
| 					const date = new Date(); | ||||
| 					return date.getTime(); | ||||
| 				}; | ||||
|  | ||||
| 			const formatFile = (filePath: string): string => { | ||||
| 				const fileExtension = path.extname(filePath); | ||||
| 				const baseName = path.basename(filePath, fileExtension); | ||||
| 				return `${baseName}-${getTimeStamp()}${fileExtension}`; | ||||
| 			}; | ||||
| 				const formatFile = (filePath: string): string => { | ||||
| 					const fileExtension = path.extname(filePath); | ||||
| 					const baseName = path.basename(filePath, fileExtension); | ||||
| 					return `${baseName}-${getTimeStamp()}${fileExtension}`; | ||||
| 				}; | ||||
|  | ||||
| 			// Update the name and path of the file if it already exists | ||||
| 				const filePath = path.join(downloadPath, item.getFilename()); | ||||
|  | ||||
| 			const updatedFilePath = path.join(downloadPath, formatFile(filePath)); | ||||
|  | ||||
| 			const setFilePath = fs.existsSync(filePath) ? updatedFilePath : filePath; | ||||
| 				// Update the name and path of the file if it already exists | ||||
| 				const updatedFilePath = path.join(downloadPath, formatFile(filePath)); | ||||
| 				setFilePath = fs.existsSync(filePath) ? updatedFilePath : filePath; | ||||
| 				shortFileName = fs.existsSync(filePath) ? formatFile(filePath) : item.getFilename(); | ||||
| 			} | ||||
|  | ||||
| 			item.setSavePath(setFilePath); | ||||
|  | ||||
| 			item.on('updated', (_event: Event, state) => { | ||||
| 			const updatedListener = (_event: Event, state: string): void => { | ||||
| 				switch (state) { | ||||
| 					case 'interrupted': { | ||||
| 						// Can interrupted to due to network error, cancel download then | ||||
| @@ -330,38 +373,51 @@ app.on('ready', () => { | ||||
| 						console.info('Unknown updated state of download item'); | ||||
| 					} | ||||
| 				} | ||||
| 			}); | ||||
| 			}; | ||||
| 			item.on('updated', updatedListener); | ||||
| 			item.once('done', (_event: Event, state) => { | ||||
| 				const getFileName = fs.existsSync(filePath) ? formatFile(filePath) : item.getFilename(); | ||||
| 				if (state === 'completed') { | ||||
| 					page.send('downloadFileCompleted', item.getSavePath(), getFileName); | ||||
| 					page.send('downloadFileCompleted', item.getSavePath(), shortFileName); | ||||
| 				} else { | ||||
| 					console.log('Download failed state: ', state); | ||||
| 					console.log('Download failed state:', state); | ||||
| 					page.send('downloadFileFailed'); | ||||
| 				} | ||||
| 				// To stop item for listening to updated events of this file | ||||
| 				item.removeAllListeners('updated'); | ||||
| 				item.removeListener('updated', updatedListener); | ||||
| 			}); | ||||
| 		}); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('realm-name-changed', (_event: Electron.IpcMessageEvent, serverURL: string, realmName: string) => { | ||||
| 	ipcMain.on('realm-name-changed', (_event: Electron.IpcMainEvent, serverURL: string, realmName: string) => { | ||||
| 		page.send('update-realm-name', serverURL, realmName); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('realm-icon-changed', (_event: Electron.IpcMessageEvent, serverURL: string, iconURL: string) => { | ||||
| 	ipcMain.on('realm-icon-changed', (_event: Electron.IpcMainEvent, serverURL: string, iconURL: string) => { | ||||
| 		page.send('update-realm-icon', serverURL, iconURL); | ||||
| 	}); | ||||
|  | ||||
| 	// Using event.sender.send instead of page.send here to | ||||
| 	// make sure the value of errorReporting is sent only once on load. | ||||
| 	ipcMain.on('error-reporting', (event: Electron.IpcMessageEvent) => { | ||||
| 	ipcMain.on('error-reporting', (event: Electron.IpcMainEvent) => { | ||||
| 		event.sender.send('error-reporting-val', errorReporting); | ||||
| 	}); | ||||
|  | ||||
| 	ipcMain.on('save-last-tab', (_event: Electron.IpcMessageEvent, index: number) => { | ||||
| 	ipcMain.on('save-last-tab', (_event: Electron.IpcMainEvent, index: number) => { | ||||
| 		ConfigUtil.setConfigItem('lastActiveTab', index); | ||||
| 	}); | ||||
|  | ||||
| 	// Update user idle status for each realm after every 15s | ||||
| 	const idleCheckInterval = 15 * 1000; // 15 seconds | ||||
| 	setInterval(() => { | ||||
| 		// Set user idle if no activity in 1 second (idleThresholdSeconds) | ||||
| 		const idleThresholdSeconds = 1; // 1 second | ||||
| 		const idleState = electron.powerMonitor.getSystemIdleState(idleThresholdSeconds); | ||||
| 		if (idleState === 'active') { | ||||
| 			page.send('set-active'); | ||||
| 		} else { | ||||
| 			page.send('set-idle'); | ||||
| 		} | ||||
| 	}, idleCheckInterval); | ||||
| }); | ||||
|  | ||||
| app.on('before-quit', () => { | ||||
|   | ||||
| @@ -1,11 +1,11 @@ | ||||
| import { app, Notification } from 'electron'; | ||||
|  | ||||
| import request = require('request'); | ||||
| import semver = require('semver'); | ||||
| import ConfigUtil = require('../renderer/js/utils/config-util'); | ||||
| import ProxyUtil = require('../renderer/js/utils/proxy-util'); | ||||
| import LinuxUpdateUtil = require('../renderer/js/utils/linux-update-util'); | ||||
| import Logger = require('../renderer/js/utils/logger-util'); | ||||
| import request from 'request'; | ||||
| import semver from 'semver'; | ||||
| import * as ConfigUtil from '../renderer/js/utils/config-util'; | ||||
| import * as ProxyUtil from '../renderer/js/utils/proxy-util'; | ||||
| import * as LinuxUpdateUtil from '../renderer/js/utils/linux-update-util'; | ||||
| import Logger from '../renderer/js/utils/logger-util'; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'linux-update-util.log', | ||||
|   | ||||
							
								
								
									
										1133
									
								
								app/main/menu.ts
									
									
									
									
									
								
							
							
						
						| @@ -1,9 +1,8 @@ | ||||
| 'use strict'; | ||||
| import { app } from 'electron'; | ||||
|  | ||||
| import AutoLaunch = require('auto-launch'); | ||||
| import isDev = require('electron-is-dev'); | ||||
| import ConfigUtil = require('../renderer/js/utils/config-util'); | ||||
| import AutoLaunch from 'auto-launch'; | ||||
| import isDev from 'electron-is-dev'; | ||||
| import * as ConfigUtil from '../renderer/js/utils/config-util'; | ||||
|  | ||||
| export const setAutoLaunch = (AutoLaunchValue: boolean): void => { | ||||
| 	// Don't run this in development | ||||
| @@ -11,21 +10,23 @@ export const setAutoLaunch = (AutoLaunchValue: boolean): void => { | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	// On Mac, work around a bug in auto-launch where it opens a Terminal window | ||||
| 	// See https://github.com/Teamwork/node-auto-launch/issues/28#issuecomment-222194437 | ||||
|  | ||||
| 	const appPath = process.platform === 'darwin' ? app.getPath('exe').replace(/\.app\/Content.*/, '.app') : undefined; // Use the default | ||||
|  | ||||
| 	const ZulipAutoLauncher = new AutoLaunch({ | ||||
| 		name: 'Zulip', | ||||
| 		path: appPath, | ||||
| 		isHidden: false | ||||
| 	}); | ||||
| 	const autoLaunchOption = ConfigUtil.getConfigItem('startAtLogin', AutoLaunchValue); | ||||
|  | ||||
| 	if (autoLaunchOption) { | ||||
| 		ZulipAutoLauncher.enable(); | ||||
| 	// setLoginItemSettings doesn't support linux | ||||
| 	if (process.platform === 'linux') { | ||||
| 		const ZulipAutoLauncher = new AutoLaunch({ | ||||
| 			name: 'Zulip', | ||||
| 			isHidden: false | ||||
| 		}); | ||||
| 		if (autoLaunchOption) { | ||||
| 			ZulipAutoLauncher.enable(); | ||||
| 		} else { | ||||
| 			ZulipAutoLauncher.disable(); | ||||
| 		} | ||||
| 	} else { | ||||
| 		ZulipAutoLauncher.disable(); | ||||
| 		app.setLoginItemSettings({ | ||||
| 			openAtLogin: autoLaunchOption, | ||||
| 			openAsHidden: false | ||||
| 		}); | ||||
| 	} | ||||
| }; | ||||
|   | ||||
							
								
								
									
										1940
									
								
								app/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						| @@ -1,50 +0,0 @@ | ||||
| { | ||||
|   "name": "zulip", | ||||
|   "productName": "Zulip", | ||||
|   "version": "4.0.0", | ||||
|   "description": "Zulip Desktop App", | ||||
|   "license": "Apache-2.0", | ||||
|   "copyright": "Kandra Labs, Inc.", | ||||
|   "author": { | ||||
|     "name": "Kandra Labs, Inc.", | ||||
|     "email": "support@zulipchat.com" | ||||
|   }, | ||||
|   "repository": { | ||||
|     "type": "git", | ||||
|     "url": "https://github.com/zulip/zulip-desktop.git" | ||||
|   }, | ||||
|   "bugs": { | ||||
|     "url": "https://github.com/zulip/zulip-desktop/issues" | ||||
|   }, | ||||
|   "main": "main/index.js", | ||||
|   "keywords": [ | ||||
|     "Zulip", | ||||
|     "Group Chat app", | ||||
|     "electron-app", | ||||
|     "electron", | ||||
|     "Desktop app", | ||||
|     "InstantMessaging" | ||||
|   ], | ||||
|   "dependencies": { | ||||
|     "@electron-elements/send-feedback": "1.0.8", | ||||
|     "@sentry/electron": "0.14.0", | ||||
|     "adm-zip": "0.4.11", | ||||
|     "auto-launch": "5.0.5", | ||||
|     "dotenv": "8.0.0", | ||||
|     "electron-is-dev": "0.3.0", | ||||
|     "electron-log": "2.2.14", | ||||
|     "electron-spellchecker": "1.1.2", | ||||
|     "electron-updater": "4.0.6", | ||||
|     "electron-window-state": "5.0.3", | ||||
|     "escape-html": "1.0.3", | ||||
|     "i18n": "0.8.3", | ||||
|     "is-online": "7.0.0", | ||||
|     "node-json-db": "0.9.2", | ||||
|     "request": "2.85.0", | ||||
|     "semver": "5.4.1", | ||||
|     "wurl": "2.5.0" | ||||
|   }, | ||||
|   "optionalDependencies": { | ||||
|     "node-mac-notifier": "1.1.0" | ||||
|   } | ||||
| } | ||||
| @@ -14,33 +14,19 @@ | ||||
|             <div class="maintenance-info"> | ||||
|                 <p class="detail maintainer"> | ||||
|                     Maintained by | ||||
|                     <a onclick="linkInBrowser('website')">Zulip</a> | ||||
|                     <a href="https://zulipchat.com" target="_blank" rel="noopener noreferrer">Zulip</a> | ||||
|                 </p> | ||||
|                 <p class="detail license"> | ||||
|                     Available under the | ||||
|                     <a onclick="linkInBrowser('license')">Apache 2.0 License</a> | ||||
|                     <a href="https://github.com/zulip/zulip-desktop/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">Apache 2.0 License</a> | ||||
|                 </p> | ||||
|             </div> | ||||
|         </div> | ||||
|         <script> | ||||
|  | ||||
|             const { app } = require('electron').remote; | ||||
|             const { shell } = require('electron'); | ||||
|             const version_tag = document.querySelector('#version'); | ||||
|             version_tag.innerHTML = 'v' + app.getVersion(); | ||||
|  | ||||
|             function linkInBrowser(type) { | ||||
|                 let url; | ||||
|                 switch (type) { | ||||
|                     case 'website': | ||||
|                         url = "https://zulipchat.com"; | ||||
|                         break; | ||||
|                     case 'license': | ||||
|                         url = "https://github.com/zulip/zulip-desktop/blob/master/LICENSE"; | ||||
|                         break; | ||||
|                 } | ||||
|                 shell.openExternal(url); | ||||
|             } | ||||
|         </script> | ||||
|         <script>require('./js/shared/preventdrag.js')</script> | ||||
|     </body> | ||||
|   | ||||
| @@ -17,27 +17,43 @@ body { | ||||
| } | ||||
|  | ||||
| #title { | ||||
|     text-align: left; | ||||
|     font-size: 24px; | ||||
|     font-weight: bold; | ||||
|     margin: 20px 0; | ||||
| } | ||||
|  | ||||
| #subtitle { | ||||
|     font-size: 20px; | ||||
|     text-align: left; | ||||
|     margin: 12px 0; | ||||
| } | ||||
|  | ||||
| #description { | ||||
|     text-align: left; | ||||
|     font-size: 16px; | ||||
|     list-style-position: inside; | ||||
| } | ||||
|  | ||||
| #reconnect { | ||||
|     float: left; | ||||
| } | ||||
|  | ||||
| #settings { | ||||
|     margin-left: 116px; | ||||
| } | ||||
|  | ||||
| .button { | ||||
|     font-size: 16px; | ||||
|     background: rgba(0, 150, 136, 1.000); | ||||
|     color: rgba(255, 255, 255, 1.000); | ||||
|     width: 84px; | ||||
|     width: 96px; | ||||
|     height: 32px; | ||||
|     border-radius: 5px; | ||||
|     line-height: 32px; | ||||
|     margin: 20px auto 0; | ||||
|     cursor: pointer; | ||||
| } | ||||
|  | ||||
| #reconnect:hover { | ||||
| .button:hover { | ||||
|     opacity: 0.8; | ||||
| } | ||||
| @@ -642,6 +642,26 @@ input.toggle-round:checked + label::after { | ||||
|     cursor: pointer; | ||||
| } | ||||
|  | ||||
| .server-network-option { | ||||
|     font-weight: bold; | ||||
|     font-size: 1.1rem; | ||||
|     margin-top: 10px; | ||||
|     padding-top: 15px; | ||||
|     align-items: center; | ||||
|     text-align: center; | ||||
|     color: rgb(78, 191, 172); | ||||
|     width: 98%; | ||||
|     height: 46px; | ||||
|     cursor: pointer; | ||||
| } | ||||
|  | ||||
| i.open-network-button { | ||||
|     font-size: 16px; | ||||
|     cursor: pointer; | ||||
|     padding-left: 5px; | ||||
|     position: absolute; | ||||
| } | ||||
|  | ||||
| /* responsive grid */ | ||||
|  | ||||
| @media (max-width: 650px) { | ||||
|   | ||||
| @@ -1,11 +1,7 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| class BaseComponent { | ||||
| export default class BaseComponent { | ||||
| 	generateNodeFromTemplate(template: string): Element | null { | ||||
| 		const wrapper = document.createElement('div'); | ||||
| 		wrapper.innerHTML = template; | ||||
| 		return wrapper.firstElementChild; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = BaseComponent; | ||||
|   | ||||
| @@ -1,8 +1,6 @@ | ||||
| 'use strict'; | ||||
| import Tab from './tab'; | ||||
|  | ||||
| import Tab = require('./tab'); | ||||
|  | ||||
| class FunctionalTab extends Tab { | ||||
| export default class FunctionalTab extends Tab { | ||||
| 	$closeButton: Element; | ||||
| 	template(): string { | ||||
| 		return `<div class="tab functional-tab" data-tab-id="${this.props.tabIndex}"> | ||||
| @@ -41,11 +39,9 @@ class FunctionalTab extends Tab { | ||||
| 			this.$closeButton.classList.remove('active'); | ||||
| 		}); | ||||
|  | ||||
| 		this.$closeButton.addEventListener('click', (e: Event) => { | ||||
| 		this.$closeButton.addEventListener('click', (event: Event) => { | ||||
| 			this.props.onDestroy(); | ||||
| 			e.stopPropagation(); | ||||
| 			event.stopPropagation(); | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = FunctionalTab; | ||||
|   | ||||
| @@ -1,83 +1,56 @@ | ||||
| import { ipcRenderer, remote } from 'electron'; | ||||
|  | ||||
| import LinkUtil = require('../utils/link-util'); | ||||
| import DomainUtil = require('../utils/domain-util'); | ||||
| import ConfigUtil = require('../utils/config-util'); | ||||
| import * as LinkUtil from '../utils/link-util'; | ||||
| import * as ConfigUtil from '../utils/config-util'; | ||||
| import type WebView from './webview'; | ||||
|  | ||||
| const { shell, app } = remote; | ||||
|  | ||||
| const dingSound = new Audio('../resources/sounds/ding.ogg'); | ||||
|  | ||||
| // TODO: TypeScript - Figure out a way to pass correct type here. | ||||
| function handleExternalLink(this: any, event: any): void { | ||||
| 	const { url } = event; | ||||
| 	const domainPrefix = DomainUtil.getDomain(this.props.index).url; | ||||
| export default function handleExternalLink(this: WebView, event: Electron.NewWindowEvent): void { | ||||
| 	event.preventDefault(); | ||||
|  | ||||
| 	const url = new URL(event.url); | ||||
| 	const downloadPath = ConfigUtil.getConfigItem('downloadsPath', `${app.getPath('downloads')}`); | ||||
| 	const shouldShowInFolder = ConfigUtil.getConfigItem('showDownloadFolder', false); | ||||
|  | ||||
| 	// Whitelist URLs which are allowed to be opened in the app | ||||
| 	const { | ||||
| 		isInternalUrl: isWhiteListURL, | ||||
| 		isUploadsUrl: isUploadsURL | ||||
| 	} = LinkUtil.isInternal(domainPrefix, url); | ||||
|  | ||||
| 	if (isWhiteListURL) { | ||||
| 		event.preventDefault(); | ||||
|  | ||||
| 		// Code to show pdf in a new BrowserWindow (currently commented out due to bug-upstream) | ||||
| 		// Show pdf attachments in a new window | ||||
| 		// if (LinkUtil.isPDF(url) && isUploadsURL) { | ||||
| 		// 	ipcRenderer.send('pdf-view', url); | ||||
| 		// 	return; | ||||
| 		// } | ||||
|  | ||||
| 		// download txt, mp3, mp4 etc.. by using downloadURL in the | ||||
| 		// main process which allows the user to save the files to their desktop | ||||
| 		// and not trigger webview reload while image in webview will | ||||
| 		// do nothing and will not save it | ||||
|  | ||||
| 		// Code to show pdf in a new BrowserWindow (currently commented out due to bug-upstream) | ||||
| 		// if (!LinkUtil.isImage(url) && !LinkUtil.isPDF(url) && isUploadsURL) { | ||||
| 		if (!LinkUtil.isImage(url) && isUploadsURL) { | ||||
| 			ipcRenderer.send('downloadFile', url, downloadPath); | ||||
| 			ipcRenderer.once('downloadFileCompleted', (_event: Event, filePath: string, fileName: string) => { | ||||
| 				const downloadNotification = new Notification('Download Complete', { | ||||
| 					body: shouldShowInFolder ? `Click to show ${fileName} in folder` : `Click to open ${fileName}`, | ||||
| 					silent: true // We'll play our own sound - ding.ogg | ||||
| 				}); | ||||
|  | ||||
| 				// Play sound to indicate download complete | ||||
| 				if (!ConfigUtil.getConfigItem('silent')) { | ||||
| 					dingSound.play(); | ||||
| 				} | ||||
|  | ||||
| 				downloadNotification.addEventListener('click', () => { | ||||
| 					if (shouldShowInFolder) { | ||||
| 						// Reveal file in download folder | ||||
| 						shell.showItemInFolder(filePath); | ||||
| 					} else { | ||||
| 						// Open file in the default native app | ||||
| 						shell.openItem(filePath); | ||||
| 					} | ||||
| 				}); | ||||
| 				ipcRenderer.removeAllListeners('downloadFileFailed'); | ||||
| 	if (LinkUtil.isUploadsUrl(this.props.url, url)) { | ||||
| 		ipcRenderer.send('downloadFile', url.href, downloadPath); | ||||
| 		ipcRenderer.once('downloadFileCompleted', (_event: Event, filePath: string, fileName: string) => { | ||||
| 			const downloadNotification = new Notification('Download Complete', { | ||||
| 				body: `Click to show ${fileName} in folder`, | ||||
| 				silent: true // We'll play our own sound - ding.ogg | ||||
| 			}); | ||||
|  | ||||
| 			ipcRenderer.once('downloadFileFailed', () => { | ||||
| 				// Automatic download failed, so show save dialog prompt and download | ||||
| 				// through webview | ||||
| 				this.$el.downloadURL(url); | ||||
| 				ipcRenderer.removeAllListeners('downloadFileCompleted'); | ||||
| 			}); | ||||
| 			return; | ||||
| 		} | ||||
| 			// Play sound to indicate download complete | ||||
| 			if (!ConfigUtil.getConfigItem('silent')) { | ||||
| 				dingSound.play(); | ||||
| 			} | ||||
|  | ||||
| 		// open internal urls inside the current webview. | ||||
| 		this.$el.loadURL(url); | ||||
| 			downloadNotification.addEventListener('click', () => { | ||||
| 				// Reveal file in download folder | ||||
| 				shell.showItemInFolder(filePath); | ||||
| 			}); | ||||
| 			ipcRenderer.removeAllListeners('downloadFileFailed'); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.once('downloadFileFailed', () => { | ||||
| 			// Automatic download failed, so show save dialog prompt and download | ||||
| 			// through webview | ||||
| 			// Only do this if it is the automatic download, otherwise show an error (so we aren't showing two save | ||||
| 			// prompts right after each other) | ||||
| 			if (ConfigUtil.getConfigItem('promptDownload', false)) { | ||||
| 				// We need to create a "new Notification" to display it, but just `Notification(...)` on its own | ||||
| 				// doesn't work | ||||
| 				new Notification('Download Complete', { // eslint-disable-line no-new | ||||
| 					body: 'Download failed' | ||||
| 				}); | ||||
| 			} else { | ||||
| 				this.$el.downloadURL(url.href); | ||||
| 			} | ||||
| 			ipcRenderer.removeAllListeners('downloadFileCompleted'); | ||||
| 		}); | ||||
| 	} else { | ||||
| 		event.preventDefault(); | ||||
| 		shell.openExternal(url); | ||||
| 		LinkUtil.openBrowser(url); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = handleExternalLink; | ||||
|   | ||||
| @@ -1,11 +1,9 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import Tab = require('./tab'); | ||||
| import SystemUtil = require('../utils/system-util'); | ||||
| import Tab from './tab'; | ||||
| import * as SystemUtil from '../utils/system-util'; | ||||
|  | ||||
| class ServerTab extends Tab { | ||||
| export default class ServerTab extends Tab { | ||||
| 	$badge: Element; | ||||
|  | ||||
| 	template(): string { | ||||
| @@ -64,5 +62,3 @@ class ServerTab extends Tab { | ||||
| 		return shortcutText; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ServerTab; | ||||
|   | ||||
| @@ -1,14 +1,12 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import WebView = require('./webview'); | ||||
| import BaseComponent = require('./base'); | ||||
| import WebView from './webview'; | ||||
| import BaseComponent from './base'; | ||||
|  | ||||
| // TODO: TypeScript - Type annotate props | ||||
| interface TabProps { | ||||
| 	[key: string]: any; | ||||
| } | ||||
|  | ||||
| class Tab extends BaseComponent { | ||||
| export default class Tab extends BaseComponent { | ||||
| 	props: TabProps; | ||||
| 	webview: WebView; | ||||
| 	$el: Element; | ||||
| @@ -25,6 +23,10 @@ class Tab extends BaseComponent { | ||||
| 		this.$el.addEventListener('mouseout', this.props.onHoverOut); | ||||
| 	} | ||||
|  | ||||
| 	showNetworkError(): void { | ||||
| 		this.webview.forceLoad(); | ||||
| 	} | ||||
|  | ||||
| 	activate(): void { | ||||
| 		this.$el.classList.add('active'); | ||||
| 		this.webview.load(); | ||||
| @@ -40,5 +42,3 @@ class Tab extends BaseComponent { | ||||
| 		this.webview.$el.parentNode.removeChild(this.webview.$el); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = Tab; | ||||
|   | ||||
| @@ -1,12 +1,11 @@ | ||||
| 'use strict'; | ||||
| import { remote } from 'electron'; | ||||
| import { ipcRenderer, remote } from 'electron'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import fs = require('fs'); | ||||
| import ConfigUtil = require('../utils/config-util'); | ||||
| import SystemUtil = require('../utils/system-util'); | ||||
| import BaseComponent = require('../components/base'); | ||||
| import handleExternalLink = require('../components/handle-external-link'); | ||||
| import path from 'path'; | ||||
| import fs from 'fs'; | ||||
| import * as ConfigUtil from '../utils/config-util'; | ||||
| import * as SystemUtil from '../utils/system-util'; | ||||
| import BaseComponent from './base'; | ||||
| import handleExternalLink from './handle-external-link'; | ||||
|  | ||||
| const { app, dialog } = remote; | ||||
|  | ||||
| @@ -17,7 +16,7 @@ interface WebViewProps { | ||||
| 	[key: string]: any; | ||||
| } | ||||
|  | ||||
| class WebView extends BaseComponent { | ||||
| export default class WebView extends BaseComponent { | ||||
| 	props: any; | ||||
| 	zoomFactor: number; | ||||
| 	badgeCount: number; | ||||
| @@ -25,6 +24,7 @@ class WebView extends BaseComponent { | ||||
| 	customCSS: string; | ||||
| 	$webviewsContainer: DOMTokenList; | ||||
| 	$el: Electron.WebviewTag; | ||||
| 	domReady?: Promise<void>; | ||||
|  | ||||
| 	// This is required because in main.js we access WebView.method as | ||||
| 	// webview[method]. | ||||
| @@ -34,7 +34,7 @@ class WebView extends BaseComponent { | ||||
| 		super(); | ||||
|  | ||||
| 		this.props = props; | ||||
| 		this.zoomFactor = 1.0; | ||||
| 		this.zoomFactor = 1; | ||||
| 		this.loading = true; | ||||
| 		this.badgeCount = 0; | ||||
| 		this.customCSS = ConfigUtil.getConfigItem('customCSS'); | ||||
| @@ -47,16 +47,18 @@ class WebView extends BaseComponent { | ||||
| 					data-tab-id="${this.props.tabIndex}" | ||||
| 					src="${this.props.url}" | ||||
| 					${this.props.nodeIntegration ? 'nodeIntegration' : ''} | ||||
| 					disablewebsecurity | ||||
| 					${this.props.preload ? 'preload="js/preload.js"' : ''} | ||||
| 					partition="persist:webviewsession" | ||||
| 					name="${this.props.name}" | ||||
| 					webpreferences="allowRunningInsecureContent, javascript=yes"> | ||||
| 					webpreferences="${this.props.nodeIntegration ? '' : 'contextIsolation, '}javascript=yes"> | ||||
| 				</webview>`; | ||||
| 	} | ||||
|  | ||||
| 	init(): void { | ||||
| 		this.$el = this.generateNodeFromTemplate(this.template()) as Electron.WebviewTag; | ||||
| 		this.domReady = new Promise(resolve => { | ||||
| 			this.$el.addEventListener('dom-ready', () => resolve(), true); | ||||
| 		}); | ||||
| 		this.props.$root.append(this.$el); | ||||
|  | ||||
| 		this.registerListeners(); | ||||
| @@ -125,7 +127,9 @@ class WebView extends BaseComponent { | ||||
| 			const hasConnectivityErr = SystemUtil.connectivityERR.includes(errorDescription); | ||||
| 			if (hasConnectivityErr) { | ||||
| 				console.error('error', errorDescription); | ||||
| 				this.props.onNetworkError(); | ||||
| 				if (!this.props.url.includes('network.html')) { | ||||
| 					this.props.onNetworkError(this.props.index); | ||||
| 				} | ||||
| 			} | ||||
| 		}); | ||||
|  | ||||
| @@ -152,6 +156,10 @@ class WebView extends BaseComponent { | ||||
| 		return messageCountInTitle ? Number(messageCountInTitle[1]) : 0; | ||||
| 	} | ||||
|  | ||||
| 	showNotificationSettings(): void { | ||||
| 		ipcRenderer.sendTo(this.$el.getWebContentsId(), 'show-notification-settings'); | ||||
| 	} | ||||
|  | ||||
| 	show(): void { | ||||
| 		// Do not show WebView if another tab was selected and this tab should be in background. | ||||
| 		if (!this.props.isActive()) { | ||||
| @@ -184,8 +192,8 @@ class WebView extends BaseComponent { | ||||
| 				this.customCSS = null; | ||||
| 				ConfigUtil.setConfigItem('customCSS', null); | ||||
|  | ||||
| 				const errMsg = 'The custom css previously set is deleted!'; | ||||
| 				dialog.showErrorBox('custom css file deleted!', errMsg); | ||||
| 				const errorMessage = 'The custom css previously set is deleted!'; | ||||
| 				dialog.showErrorBox('custom css file deleted!', errorMessage); | ||||
| 				return; | ||||
| 			} | ||||
|  | ||||
| @@ -232,16 +240,16 @@ class WebView extends BaseComponent { | ||||
| 	} | ||||
|  | ||||
| 	zoomActualSize(): void { | ||||
| 		this.zoomFactor = 1.0; | ||||
| 		this.zoomFactor = 1; | ||||
| 		this.$el.setZoomFactor(this.zoomFactor); | ||||
| 	} | ||||
|  | ||||
| 	logOut(): void { | ||||
| 		this.$el.executeJavaScript('logout()'); | ||||
| 		ipcRenderer.sendTo(this.$el.getWebContentsId(), 'logout'); | ||||
| 	} | ||||
|  | ||||
| 	showShortcut(): void { | ||||
| 		this.$el.executeJavaScript('shortcut()'); | ||||
| 		ipcRenderer.sendTo(this.$el.getWebContentsId(), 'shortcut'); | ||||
| 	} | ||||
|  | ||||
| 	openDevTools(): void { | ||||
| @@ -279,9 +287,12 @@ class WebView extends BaseComponent { | ||||
| 		this.$el.reload(); | ||||
| 	} | ||||
|  | ||||
| 	send(channel: string, ...param: any[]): void { | ||||
| 		this.$el.send(channel, ...param); | ||||
| 	forceLoad(): void { | ||||
| 		this.init(); | ||||
| 	} | ||||
|  | ||||
| 	async send(channel: string, ...parameters: any[]): Promise<void> { | ||||
| 		await this.domReady; | ||||
| 		this.$el.send(channel, ...parameters); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = WebView; | ||||
|   | ||||
| @@ -1,22 +1,51 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import events = require('events'); | ||||
| import { EventEmitter } from 'events'; | ||||
|  | ||||
| import { NotificationData, newNotification } from './notification'; | ||||
|  | ||||
| type ListenerType = ((...args: any[]) => void); | ||||
|  | ||||
| // we have and will have some non camelcase stuff | ||||
| // while working with zulip so just turning the rule off | ||||
| // for the whole file. | ||||
| /* eslint-disable @typescript-eslint/camelcase */ | ||||
| class ElectronBridge extends events { | ||||
| 	send_notification_reply_message_supported = false; | ||||
| 	send_event(eventName: string | symbol, ...args: any[]): void { | ||||
| 		this.emit(eventName, ...args); | ||||
| class ElectronBridge extends EventEmitter { | ||||
| 	send_notification_reply_message_supported: boolean; | ||||
| 	idle_on_system: boolean; | ||||
| 	last_active_on_system: number; | ||||
|  | ||||
| 	constructor() { | ||||
| 		super(); | ||||
| 		this.send_notification_reply_message_supported = false; | ||||
| 		// Indicates if the user is idle or not | ||||
| 		this.idle_on_system = false; | ||||
|  | ||||
| 		// Indicates the time at which user was last active | ||||
| 		this.last_active_on_system = Date.now(); | ||||
| 	} | ||||
|  | ||||
| 	on_event(eventName: string, listener: ListenerType): void { | ||||
| 	send_event = (eventName: string | symbol, ...args: any[]): void => { | ||||
| 		this.emit(eventName, ...args); | ||||
| 	}; | ||||
|  | ||||
| 	on_event = (eventName: string, listener: ListenerType): void => { | ||||
| 		this.on(eventName, listener); | ||||
| 	} | ||||
| 	}; | ||||
|  | ||||
| 	new_notification = ( | ||||
| 		title: string, | ||||
| 		options: NotificationOptions | undefined, | ||||
| 		dispatch: (type: string, eventInit: EventInit) => boolean | ||||
| 	): NotificationData => | ||||
| 		newNotification(title, options, dispatch); | ||||
|  | ||||
| 	get_idle_on_system = (): boolean => this.idle_on_system; | ||||
|  | ||||
| 	get_last_active_on_system = (): number => this.last_active_on_system; | ||||
|  | ||||
| 	get_send_notification_reply_message_supported = (): boolean => | ||||
| 		this.send_notification_reply_message_supported; | ||||
|  | ||||
| 	set_send_notification_reply_message_supported = (value: boolean): void => { | ||||
| 		this.send_notification_reply_message_supported = value; | ||||
| 	}; | ||||
| } | ||||
|  | ||||
| const electron_bridge = new ElectronBridge(); | ||||
| @@ -41,6 +70,4 @@ electron_bridge.on('realm_icon_url', iconURL => { | ||||
| // functions zulip side will emit event using ElectronBrigde.send_event | ||||
| // which is alias of .emit and on this side we can handle the data by adding | ||||
| // a listener for the event. | ||||
| export = electron_bridge; | ||||
|  | ||||
| /* eslint-enable @typescript-eslint/camelcase */ | ||||
| export default electron_bridge; | ||||
|   | ||||
| @@ -1,8 +1,8 @@ | ||||
| import { remote } from 'electron'; | ||||
| import SendFeedback from '@electron-elements/send-feedback'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import fs = require('fs'); | ||||
| import path from 'path'; | ||||
| import fs from 'fs'; | ||||
|  | ||||
| const { app } = remote; | ||||
|  | ||||
| @@ -34,12 +34,26 @@ customElements.define('send-feedback', SendFeedback); | ||||
| export const sendFeedback: SendFeedbackType = document.querySelector('send-feedback'); | ||||
| export const feedbackHolder = sendFeedback.parentElement; | ||||
|  | ||||
| /* eslint-disable no-multi-str */ | ||||
|  | ||||
| // customize the fields of custom elements | ||||
| sendFeedback.title = 'Report Issue'; | ||||
| sendFeedback.titleLabel = 'Issue title:'; | ||||
| sendFeedback.titlePlaceholder = 'Enter issue title'; | ||||
| sendFeedback.textareaLabel = 'Describe the issue:'; | ||||
| sendFeedback.textareaPlaceholder = 'Succinctly describe your issue and steps to reproduce it...'; | ||||
| sendFeedback.textareaPlaceholder = 'Succinctly describe your issue and steps to reproduce it...\n\n\ | ||||
| ---\n\ | ||||
| <!-- Please Include: -->\n\ | ||||
| - **Operating System**:\n\ | ||||
|   - [ ] Windows\n\ | ||||
|   - [ ] Linux/Ubuntu\n\ | ||||
|   - [ ] macOS\n\ | ||||
| - **Clear steps to reproduce the issue**:\n\ | ||||
| - **Relevant error messages and/or screenshots**:\n\ | ||||
| '; | ||||
|  | ||||
| /* eslint-enable no-multi-str */ | ||||
|  | ||||
| sendFeedback.buttonLabel = 'Report Issue'; | ||||
| sendFeedback.loaderSuccessText = ''; | ||||
|  | ||||
| @@ -47,10 +61,10 @@ sendFeedback.useReporter('emailReporter', { | ||||
| 	email: 'akash@zulipchat.com' | ||||
| }); | ||||
|  | ||||
| feedbackHolder.addEventListener('click', (e: Event) => { | ||||
| feedbackHolder.addEventListener('click', (event: Event) => { | ||||
| 	// only remove the class if the grey out faded | ||||
| 	// part is clicked and not the feedback element itself | ||||
| 	if (e.target === e.currentTarget) { | ||||
| 	if (event.target === event.currentTarget) { | ||||
| 		feedbackHolder.classList.remove('show'); | ||||
| 	} | ||||
| }); | ||||
|   | ||||
							
								
								
									
										122
									
								
								app/renderer/js/injected.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,122 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| (() => { | ||||
| 	const zulipWindow = window as typeof window & { | ||||
| 		electron_bridge: any; | ||||
| 		narrow: any; | ||||
| 		page_params: any; | ||||
| 		raw_electron_bridge: any; | ||||
| 	}; | ||||
|  | ||||
| 	const electron_bridge = { | ||||
| 		...zulipWindow.raw_electron_bridge, | ||||
|  | ||||
| 		get idle_on_system() { | ||||
| 			return this.get_idle_on_system(); | ||||
| 		}, | ||||
|  | ||||
| 		get last_active_on_system() { | ||||
| 			return this.get_last_active_on_system(); | ||||
| 		}, | ||||
|  | ||||
| 		get send_notification_reply_message_supported() { | ||||
| 			return this.get_send_notification_reply_message_supported(); | ||||
| 		}, | ||||
|  | ||||
| 		set send_notification_reply_message_supported(value: boolean) { | ||||
| 			this.set_send_notification_reply_message_supported(value); | ||||
| 		} | ||||
| 	}; | ||||
|  | ||||
| 	zulipWindow.electron_bridge = electron_bridge; | ||||
|  | ||||
| 	(async () => { | ||||
| 		if (document.readyState === 'loading') { | ||||
| 			await new Promise(resolve => { | ||||
| 				document.addEventListener('DOMContentLoaded', () => { | ||||
| 					resolve(); | ||||
| 				}); | ||||
| 			}); | ||||
| 		} | ||||
|  | ||||
| 		const { page_params } = zulipWindow; | ||||
| 		if (page_params) { | ||||
| 			electron_bridge.send_event('zulip-loaded', { | ||||
| 				serverLanguage: page_params.default_language | ||||
| 			}); | ||||
| 		} | ||||
| 	})(); | ||||
|  | ||||
| 	electron_bridge.on_event('narrow-by-topic', (id: string) => { | ||||
| 		const { narrow } = zulipWindow; | ||||
| 		const narrowByTopic = narrow.by_topic || narrow.by_subject; | ||||
| 		narrowByTopic(id, { trigger: 'notification' }); | ||||
| 	}); | ||||
|  | ||||
| 	function attributeListener<T extends EventTarget>(type: string): PropertyDescriptor { | ||||
| 		const symbol = Symbol('on' + type); | ||||
|  | ||||
| 		function listener(this: T, ev: Event): void { | ||||
| 			if ((this as any)[symbol].call(this, ev) === false) { | ||||
| 				ev.preventDefault(); | ||||
| 			} | ||||
| 		} | ||||
|  | ||||
| 		return { | ||||
| 			configurable: true, | ||||
| 			enumerable: true, | ||||
| 			get(this: T) { | ||||
| 				return (this as any)[symbol]; | ||||
| 			}, | ||||
| 			set(this: T, value: unknown) { | ||||
| 				if (typeof value === 'function') { | ||||
| 					if (!(symbol in this)) { | ||||
| 						this.addEventListener(type, listener); | ||||
| 					} | ||||
| 					(this as any)[symbol] = value; | ||||
| 				} else if (symbol in this) { | ||||
| 					this.removeEventListener(type, listener); | ||||
| 					delete (this as any)[symbol]; | ||||
| 				} | ||||
| 			} | ||||
| 		}; | ||||
| 	} | ||||
|  | ||||
| 	const NativeNotification = Notification; | ||||
|  | ||||
| 	class InjectedNotification extends EventTarget { | ||||
| 		constructor(title: string, options?: NotificationOptions) { | ||||
| 			super(); | ||||
| 			Object.assign( | ||||
| 				this, | ||||
| 				electron_bridge.new_notification(title, options, (type: string, eventInit: EventInit) => | ||||
| 					this.dispatchEvent(new Event(type, eventInit)) | ||||
| 				) | ||||
| 			); | ||||
| 		} | ||||
|  | ||||
| 		static get maxActions(): number { | ||||
| 			return NativeNotification.maxActions; | ||||
| 		} | ||||
|  | ||||
| 		static get permission(): NotificationPermission { | ||||
| 			return NativeNotification.permission; | ||||
| 		} | ||||
|  | ||||
| 		static async requestPermission(callback?: NotificationPermissionCallback): Promise<NotificationPermission> { | ||||
| 			if (callback) { | ||||
| 				callback(await Promise.resolve(NativeNotification.permission)); | ||||
| 			} | ||||
| 			return NativeNotification.permission; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	Object.defineProperties(InjectedNotification.prototype, { | ||||
| 		onclick: attributeListener('click'), | ||||
| 		onclose: attributeListener('close'), | ||||
| 		onerror: attributeListener('error'), | ||||
| 		onshow: attributeListener('show') | ||||
| 	}); | ||||
|  | ||||
| 	window.Notification = InjectedNotification as any; | ||||
| })(); | ||||
| @@ -1,32 +1,26 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer, remote, clipboard, shell } from 'electron'; | ||||
| import { ipcRenderer, remote, clipboard } from 'electron'; | ||||
| import { feedbackHolder } from './feedback'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import escape = require('escape-html'); | ||||
| import isDev = require('electron-is-dev'); | ||||
| import path from 'path'; | ||||
| import escape from 'escape-html'; | ||||
| import isDev from 'electron-is-dev'; | ||||
| const { session, app, Menu, dialog } = remote; | ||||
|  | ||||
| // eslint-disable-next-line import/no-unassigned-import | ||||
| require('./tray'); | ||||
| import './tray'; | ||||
|  | ||||
| import DomainUtil = require('./utils/domain-util'); | ||||
| import WebView = require('./components/webview'); | ||||
| import ServerTab = require('./components/server-tab'); | ||||
| import FunctionalTab = require('./components/functional-tab'); | ||||
| import ConfigUtil = require('./utils/config-util'); | ||||
| import DNDUtil = require('./utils/dnd-util'); | ||||
| import ReconnectUtil = require('./utils/reconnect-util'); | ||||
| import Logger = require('./utils/logger-util'); | ||||
| import CommonUtil = require('./utils/common-util'); | ||||
| import EnterpriseUtil = require('./utils/enterprise-util'); | ||||
| import Messages = require('./../../resources/messages'); | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'errors.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
| import * as DomainUtil from './utils/domain-util'; | ||||
| import WebView from './components/webview'; | ||||
| import ServerTab from './components/server-tab'; | ||||
| import FunctionalTab from './components/functional-tab'; | ||||
| import * as ConfigUtil from './utils/config-util'; | ||||
| import * as DNDUtil from './utils/dnd-util'; | ||||
| import ReconnectUtil from './utils/reconnect-util'; | ||||
| import Logger from './utils/logger-util'; | ||||
| import * as CommonUtil from './utils/common-util'; | ||||
| import * as EnterpriseUtil from './utils/enterprise-util'; | ||||
| import * as LinkUtil from './utils/link-util'; | ||||
| import * as Messages from '../../resources/messages'; | ||||
|  | ||||
| interface FunctionalTabProps { | ||||
| 	name: string; | ||||
| @@ -62,12 +56,18 @@ interface SettingsOptions { | ||||
| 		flashTaskbarOnMessage?: boolean; | ||||
| 	}; | ||||
| 	downloadsPath: string; | ||||
| 	showDownloadFolder: boolean; | ||||
| 	quitOnClose: boolean; | ||||
| 	promptDownload: boolean; | ||||
| 	flashTaskbarOnMessage?: boolean; | ||||
| 	dockBouncing?: boolean; | ||||
| 	loading?: AnyObject; | ||||
| } | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'errors.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| const rendererDirectory = path.resolve(__dirname, '..'); | ||||
| type ServerOrFunctionalTab = ServerTab | FunctionalTab; | ||||
|  | ||||
| @@ -136,46 +136,43 @@ class ServerManagerView { | ||||
| 		this.tabIndex = 0; | ||||
| 	} | ||||
|  | ||||
| 	init(): void { | ||||
| 		this.loadProxy().then(() => { | ||||
| 			this.initDefaultSettings(); | ||||
| 			this.initSidebar(); | ||||
| 			if (EnterpriseUtil.configFile) { | ||||
| 				this.initPresetOrgs(); | ||||
| 			} | ||||
| 			this.initTabs(); | ||||
| 			this.initActions(); | ||||
| 			this.registerIpcs(); | ||||
| 		}); | ||||
| 	async init(): Promise<void> { | ||||
| 		await this.loadProxy(); | ||||
| 		this.initDefaultSettings(); | ||||
| 		this.initSidebar(); | ||||
| 		if (EnterpriseUtil.configFile) { | ||||
| 			this.initPresetOrgs(); | ||||
| 		} | ||||
| 		this.initTabs(); | ||||
| 		this.initActions(); | ||||
| 		this.registerIpcs(); | ||||
| 	} | ||||
|  | ||||
| 	loadProxy(): Promise<boolean> { | ||||
| 		return new Promise(resolve => { | ||||
| 			// To change proxyEnable to useManualProxy in older versions | ||||
| 			const proxyEnabledOld = ConfigUtil.isConfigItemExists('useProxy'); | ||||
| 			if (proxyEnabledOld) { | ||||
| 				const proxyEnableOldState = ConfigUtil.getConfigItem('useProxy'); | ||||
| 				if (proxyEnableOldState) { | ||||
| 					ConfigUtil.setConfigItem('useManualProxy', true); | ||||
| 				} | ||||
| 				ConfigUtil.removeConfigItem('useProxy'); | ||||
| 	async loadProxy(): Promise<void> { | ||||
| 		// To change proxyEnable to useManualProxy in older versions | ||||
| 		const proxyEnabledOld = ConfigUtil.isConfigItemExists('useProxy'); | ||||
| 		if (proxyEnabledOld) { | ||||
| 			const proxyEnableOldState = ConfigUtil.getConfigItem('useProxy'); | ||||
| 			if (proxyEnableOldState) { | ||||
| 				ConfigUtil.setConfigItem('useManualProxy', true); | ||||
| 			} | ||||
| 			ConfigUtil.removeConfigItem('useProxy'); | ||||
| 		} | ||||
|  | ||||
| 			const proxyEnabled = ConfigUtil.getConfigItem('useManualProxy') || ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 			if (proxyEnabled) { | ||||
| 				session.fromPartition('persist:webviewsession').setProxy({ | ||||
| 					pacScript: ConfigUtil.getConfigItem('proxyPAC', ''), | ||||
| 					proxyRules: ConfigUtil.getConfigItem('proxyRules', ''), | ||||
| 					proxyBypassRules: ConfigUtil.getConfigItem('proxyBypass', '') | ||||
| 				}, resolve); | ||||
| 			} else { | ||||
| 				session.fromPartition('persist:webviewsession').setProxy({ | ||||
| 					pacScript: '', | ||||
| 					proxyRules: '', | ||||
| 					proxyBypassRules: '' | ||||
| 				}, resolve); | ||||
| 			} | ||||
| 		}); | ||||
| 		const proxyEnabled = ConfigUtil.getConfigItem('useManualProxy') || ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 		if (proxyEnabled) { | ||||
| 			await session.fromPartition('persist:webviewsession').setProxy({ | ||||
| 				pacScript: ConfigUtil.getConfigItem('proxyPAC', ''), | ||||
| 				proxyRules: ConfigUtil.getConfigItem('proxyRules', ''), | ||||
| 				proxyBypassRules: ConfigUtil.getConfigItem('proxyBypass', '') | ||||
| 			}); | ||||
| 		} else { | ||||
| 			await session.fromPartition('persist:webviewsession').setProxy({ | ||||
| 				pacScript: '', | ||||
| 				proxyRules: '', | ||||
| 				proxyBypassRules: '' | ||||
| 			}); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// Settings are initialized only when user clicks on General/Server/Network section settings | ||||
| @@ -206,7 +203,8 @@ class ServerManagerView { | ||||
| 				silent: false | ||||
| 			}, | ||||
| 			downloadsPath: `${app.getPath('downloads')}`, | ||||
| 			showDownloadFolder: false | ||||
| 			quitOnClose: false, | ||||
| 			promptDownload: false | ||||
| 		}; | ||||
|  | ||||
| 		// Platform specific settings | ||||
| @@ -226,13 +224,12 @@ class ServerManagerView { | ||||
| 			settingOptions.autoHideMenubar = false; | ||||
| 		} | ||||
|  | ||||
| 		for (const i in settingOptions) { | ||||
| 			const setting = i as keyof SettingsOptions; | ||||
| 		for (const [setting, value] of Object.entries(settingOptions)) { | ||||
| 			// give preference to defaults defined in global_config.json | ||||
| 			if (EnterpriseUtil.configItemExists(setting)) { | ||||
| 				ConfigUtil.setConfigItem(setting, EnterpriseUtil.getConfigItem(setting), true); | ||||
| 			} else if (ConfigUtil.getConfigItem(setting) === null) { | ||||
| 				ConfigUtil.setConfigItem(setting, settingOptions[setting]); | ||||
| 				ConfigUtil.setConfigItem(setting, value); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| @@ -276,16 +273,15 @@ class ServerManagerView { | ||||
| 			if (preAddedDomains.length > 0) { | ||||
| 				// user already has servers added | ||||
| 				// ask them before reloading the app | ||||
| 				dialog.showMessageBox({ | ||||
| 				const { response } = await dialog.showMessageBox({ | ||||
| 					type: 'question', | ||||
| 					buttons: ['Yes', 'Later'], | ||||
| 					defaultId: 0, | ||||
| 					message: 'New server' + (domainsAdded.length > 1 ? 's' : '') + ' added. Reload app now?' | ||||
| 				}, response => { | ||||
| 					if (response === 0) { | ||||
| 						ipcRenderer.send('reload-full-app'); | ||||
| 					} | ||||
| 				}); | ||||
| 				if (response === 0) { | ||||
| 					ipcRenderer.send('reload-full-app'); | ||||
| 				} | ||||
| 			} else { | ||||
| 				ipcRenderer.send('reload-full-app'); | ||||
| 			} | ||||
| @@ -302,7 +298,7 @@ class ServerManagerView { | ||||
| 			dialog.showErrorBox(title, content); | ||||
| 			if (DomainUtil.getDomains().length === 0) { | ||||
| 				// no orgs present, stop showing loading gif | ||||
| 				this.openSettings('AddServer'); | ||||
| 				await this.openSettings('AddServer'); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| @@ -310,13 +306,26 @@ class ServerManagerView { | ||||
| 	initTabs(): void { | ||||
| 		const servers = DomainUtil.getDomains(); | ||||
| 		if (servers.length > 0) { | ||||
| 			for (let i = 0; i < servers.length; i++) { | ||||
| 				this.initServer(servers[i], i); | ||||
| 				DomainUtil.updateSavedServer(servers[i].url, i); | ||||
| 				this.activateTab(i); | ||||
| 			for (const [i, server] of servers.entries()) { | ||||
| 				this.initServer(server, i); | ||||
| 			} | ||||
| 			// Open last active tab | ||||
| 			this.activateTab(ConfigUtil.getConfigItem('lastActiveTab')); | ||||
| 			let lastActiveTab = ConfigUtil.getConfigItem('lastActiveTab'); | ||||
| 			if (lastActiveTab >= servers.length) { | ||||
| 				lastActiveTab = 0; | ||||
| 			} | ||||
| 			// checkDomain() and webview.load() for lastActiveTab before the others | ||||
| 			DomainUtil.updateSavedServer(servers[lastActiveTab].url, lastActiveTab); | ||||
| 			this.activateTab(lastActiveTab); | ||||
| 			for (const [i, server] of servers.entries()) { | ||||
| 				// after the lastActiveTab is activated, we load the others in the background | ||||
| 				// without activating them, to prevent flashing of server icons | ||||
| 				if (i === lastActiveTab) { | ||||
| 					continue; | ||||
| 				} | ||||
| 				DomainUtil.updateSavedServer(server.url, i); | ||||
| 				this.tabs[i].webview.load(); | ||||
| 			} | ||||
| 			// Remove focus from the settings icon at sidebar bottom | ||||
| 			this.$settingsButton.classList.remove('active'); | ||||
| 		} else if (this.presetOrgs.length === 0) { | ||||
| @@ -332,7 +341,7 @@ class ServerManagerView { | ||||
| 		this.tabs.push(new ServerTab({ | ||||
| 			role: 'server', | ||||
| 			icon: server.icon, | ||||
| 			name: server.alias, | ||||
| 			name: CommonUtil.decodeString(server.alias), | ||||
| 			$root: this.$tabsContainer, | ||||
| 			onClick: this.activateLastTab.bind(this, index), | ||||
| 			index, | ||||
| @@ -346,6 +355,8 @@ class ServerManagerView { | ||||
| 				url: server.url, | ||||
| 				role: 'server', | ||||
| 				name: CommonUtil.decodeString(server.alias), | ||||
| 				hasPermission: (origin: string, permission: string) => | ||||
| 					origin === server.url && permission === 'notifications', | ||||
| 				isActive: () => { | ||||
| 					return index === this.activeTabIndex; | ||||
| 				}, | ||||
| @@ -357,7 +368,7 @@ class ServerManagerView { | ||||
| 					} | ||||
| 					this.showLoading(this.loading[this.tabs[this.activeTabIndex].webview.props.url]); | ||||
| 				}, | ||||
| 				onNetworkError: this.openNetworkTroubleshooting.bind(this), | ||||
| 				onNetworkError: (index: number) => this.openNetworkTroubleshooting(index), | ||||
| 				onTitleChange: this.updateBadge.bind(this), | ||||
| 				nodeIntegration: false, | ||||
| 				preload: true | ||||
| @@ -448,7 +459,7 @@ class ServerManagerView { | ||||
| 		$altIcon.classList.add('server-icon'); | ||||
| 		$altIcon.classList.add('alt-icon'); | ||||
|  | ||||
| 		$parent.removeChild($img); | ||||
| 		$img.remove(); | ||||
| 		$parent.append($altIcon); | ||||
|  | ||||
| 		this.addContextMenu($altIcon as HTMLImageElement, index); | ||||
| @@ -523,7 +534,7 @@ class ServerManagerView { | ||||
| 					} | ||||
| 					this.showLoading(this.loading[this.tabs[this.activeTabIndex].webview.props.url]); | ||||
| 				}, | ||||
| 				onNetworkError: this.openNetworkTroubleshooting.bind(this), | ||||
| 				onNetworkError: (index: number) => this.openNetworkTroubleshooting(index), | ||||
| 				onTitleChange: this.updateBadge.bind(this), | ||||
| 				nodeIntegration: true, | ||||
| 				preload: false | ||||
| @@ -537,14 +548,14 @@ class ServerManagerView { | ||||
| 		this.activateTab(this.functionalTabs[tabProps.name]); | ||||
| 	} | ||||
|  | ||||
| 	openSettings(nav = 'General'): void { | ||||
| 	async openSettings(nav = 'General'): Promise<void> { | ||||
| 		this.openFunctionalTab({ | ||||
| 			name: 'Settings', | ||||
| 			materialIcon: 'settings', | ||||
| 			url: `file://${rendererDirectory}/preference.html#${nav}` | ||||
| 		}); | ||||
| 		this.$settingsButton.classList.add('active'); | ||||
| 		this.tabs[this.functionalTabs.Settings].webview.send('switch-settings-nav', nav); | ||||
| 		await this.tabs[this.functionalTabs.Settings].webview.send('switch-settings-nav', nav); | ||||
| 	} | ||||
|  | ||||
| 	openAbout(): void { | ||||
| @@ -555,12 +566,11 @@ class ServerManagerView { | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	openNetworkTroubleshooting(): void { | ||||
| 		this.openFunctionalTab({ | ||||
| 			name: 'Network Troubleshooting', | ||||
| 			materialIcon: 'network_check', | ||||
| 			url: `file://${rendererDirectory}/network.html` | ||||
| 		}); | ||||
| 	openNetworkTroubleshooting(index: number): void { | ||||
| 		const reconnectUtil = new ReconnectUtil(this.tabs[index].webview); | ||||
| 		reconnectUtil.pollInternetAndReload(); | ||||
| 		this.tabs[index].webview.props.url = `file://${rendererDirectory}/network.html`; | ||||
| 		this.tabs[index].showNetworkError(); | ||||
| 	} | ||||
|  | ||||
| 	activateLastTab(index: number): void { | ||||
| @@ -697,10 +707,8 @@ class ServerManagerView { | ||||
| 	} | ||||
|  | ||||
| 	updateGeneralSettings(setting: string, value: any): void { | ||||
| 		const selector = 'webview:not([class*=disabled])'; | ||||
| 		const webview: Electron.WebviewTag = document.querySelector(selector); | ||||
| 		if (webview) { | ||||
| 			const webContents = webview.getWebContents(); | ||||
| 		if (this.getActiveWebview()) { | ||||
| 			const webContents = this.getActiveWebview().getWebContents(); | ||||
| 			webContents.send(setting, value); | ||||
| 		} | ||||
| 	} | ||||
| @@ -719,28 +727,47 @@ class ServerManagerView { | ||||
| 		this.$dndButton.querySelector('i').textContent = alert ? 'notifications_off' : 'notifications'; | ||||
| 	} | ||||
|  | ||||
| 	isLoggedIn(tabIndex: number): boolean { | ||||
| 		const url = this.tabs[tabIndex].webview.$el.src; | ||||
| 		return !(url.endsWith('/login/') || this.tabs[tabIndex].webview.loading); | ||||
| 	} | ||||
|  | ||||
| 	getActiveWebview(): Electron.WebviewTag { | ||||
| 		const selector = 'webview:not(.disabled)'; | ||||
| 		const webview: Electron.WebviewTag = document.querySelector(selector); | ||||
| 		return webview; | ||||
| 	} | ||||
|  | ||||
| 	addContextMenu($serverImg: HTMLImageElement, index: number): void { | ||||
| 		$serverImg.addEventListener('contextmenu', e => { | ||||
| 			e.preventDefault(); | ||||
| 		$serverImg.addEventListener('contextmenu', event => { | ||||
| 			event.preventDefault(); | ||||
| 			const template = [ | ||||
| 				{ | ||||
| 					label: 'Disconnect organization', | ||||
| 					click: () => { | ||||
| 						dialog.showMessageBox({ | ||||
| 					click: async () => { | ||||
| 						const { response } = await dialog.showMessageBox({ | ||||
| 							type: 'warning', | ||||
| 							buttons: ['YES', 'NO'], | ||||
| 							defaultId: 0, | ||||
| 							message: 'Are you sure you want to disconnect this organization?' | ||||
| 						}, response => { | ||||
| 							if (response === 0) { | ||||
| 								if (DomainUtil.removeDomain(index)) { | ||||
| 									ipcRenderer.send('reload-full-app'); | ||||
| 								} else { | ||||
| 									const { title, content } = Messages.orgRemovalError(DomainUtil.getDomain(index).url); | ||||
| 									dialog.showErrorBox(title, content); | ||||
| 								} | ||||
| 							} | ||||
| 						}); | ||||
| 						if (response === 0) { | ||||
| 							if (DomainUtil.removeDomain(index)) { | ||||
| 								ipcRenderer.send('reload-full-app'); | ||||
| 							} else { | ||||
| 								const { title, content } = Messages.orgRemovalError(DomainUtil.getDomain(index).url); | ||||
| 								dialog.showErrorBox(title, content); | ||||
| 							} | ||||
| 						} | ||||
| 					} | ||||
| 				}, | ||||
| 				{ | ||||
| 					label: 'Notification settings', | ||||
| 					enabled: this.isLoggedIn(index), | ||||
| 					click: () => { | ||||
| 						// switch to tab whose icon was right-clicked | ||||
| 						this.activateTab(index); | ||||
| 						this.tabs[index].webview.showNotificationSettings(); | ||||
| 					} | ||||
| 				}, | ||||
| 				{ | ||||
| @@ -769,15 +796,42 @@ class ServerManagerView { | ||||
| 			'tab-devtools': 'openDevTools' | ||||
| 		}; | ||||
|  | ||||
| 		for (const key in webviewListeners) { | ||||
| 		for (const [key, method] of Object.entries(webviewListeners)) { | ||||
| 			ipcRenderer.on(key, () => { | ||||
| 				const activeWebview = this.tabs[this.activeTabIndex].webview; | ||||
| 				if (activeWebview) { | ||||
| 					activeWebview[webviewListeners[key] as string](); | ||||
| 					activeWebview[method](); | ||||
| 				} | ||||
| 			}); | ||||
| 		} | ||||
|  | ||||
| 		ipcRenderer.on('permission-request', ( | ||||
| 			event: Event, | ||||
| 			permissionId: number, | ||||
| 			{webContentsId, origin, permission}: { | ||||
| 				webContentsId: number | null; | ||||
| 				origin: string; | ||||
| 				permission: string; | ||||
| 			} | ||||
| 		) => { | ||||
| 			const grant = webContentsId === null ? | ||||
| 				origin === 'null' && permission === 'notifications' : | ||||
| 				this.tabs.some( | ||||
| 					({webview}) => | ||||
| 						webview.$el.getWebContentsId() === webContentsId && | ||||
| 					webview.props.hasPermission?.(origin, permission) | ||||
| 				); | ||||
| 			console.log( | ||||
| 				grant ? 'Granted' : 'Denied', 'permissions request for', | ||||
| 				permission, 'from', origin | ||||
| 			); | ||||
| 			ipcRenderer.send('permission-response', permissionId, grant); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('show-network-error', (event: Event, index: number) => { | ||||
| 			this.openNetworkTroubleshooting(index); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('open-settings', (event: Event, settingNav: string) => { | ||||
| 			this.openSettings(settingNav); | ||||
| 		}); | ||||
| @@ -786,8 +840,7 @@ class ServerManagerView { | ||||
|  | ||||
| 		ipcRenderer.on('open-help', () => { | ||||
| 			// Open help page of current active server | ||||
| 			const helpPage = this.getCurrentActiveServer() + '/help'; | ||||
| 			shell.openExternal(helpPage); | ||||
| 			LinkUtil.openBrowser(new URL('/help', this.getCurrentActiveServer())); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('reload-viewer', this.reloadView.bind(this, this.tabs[this.activeTabIndex].props.index)); | ||||
| @@ -810,13 +863,12 @@ class ServerManagerView { | ||||
| 			this.openSettings('AddServer'); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('reload-proxy', (event: Event, showAlert: boolean) => { | ||||
| 			this.loadProxy().then(() => { | ||||
| 				if (showAlert) { | ||||
| 					alert('Proxy settings saved!'); | ||||
| 					ipcRenderer.send('reload-full-app'); | ||||
| 				} | ||||
| 			}); | ||||
| 		ipcRenderer.on('reload-proxy', async (event: Event, showAlert: boolean) => { | ||||
| 			await this.loadProxy(); | ||||
| 			if (showAlert) { | ||||
| 				alert('Proxy settings saved!'); | ||||
| 				ipcRenderer.send('reload-full-app'); | ||||
| 			} | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('toggle-sidebar', (event: Event, show: boolean) => { | ||||
| @@ -855,9 +907,7 @@ class ServerManagerView { | ||||
| 		ipcRenderer.on('toggle-dnd', (event: Event, state: boolean, newSettings: SettingsOptions) => { | ||||
| 			this.toggleDNDButton(state); | ||||
| 			ipcRenderer.send('forward-message', 'toggle-silent', newSettings.silent); | ||||
| 			const selector = 'webview:not([class*=disabled])'; | ||||
| 			const webview: Electron.WebviewTag = document.querySelector(selector); | ||||
| 			const webContents = webview.getWebContents(); | ||||
| 			const webContents = this.getActiveWebview().getWebContents(); | ||||
| 			webContents.send('toggle-dnd', state, newSettings); | ||||
| 		}); | ||||
|  | ||||
| @@ -865,7 +915,7 @@ class ServerManagerView { | ||||
| 			// TODO: TypeScript - Type annotate getDomains() or this domain paramter. | ||||
| 			DomainUtil.getDomains().forEach((domain: any, index: number) => { | ||||
| 				if (domain.url.includes(serverURL)) { | ||||
| 					const serverTooltipSelector = `.tab .server-tooltip`; | ||||
| 					const serverTooltipSelector = '.tab .server-tooltip'; | ||||
| 					const serverTooltips = document.querySelectorAll(serverTooltipSelector); | ||||
| 					serverTooltips[index].innerHTML = escape(realmName); | ||||
| 					this.tabs[index].props.name = escape(realmName); | ||||
| @@ -884,18 +934,18 @@ class ServerManagerView { | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('update-realm-icon', (event: Event, serverURL: string, iconURL: string) => { | ||||
| 			// TODO: TypeScript - Type annotate getDomains() or this domain paramter. | ||||
| 			DomainUtil.getDomains().forEach((domain: any, index: number) => { | ||||
| 			DomainUtil.getDomains().forEach(async (domain, index) => { | ||||
| 				if (domain.url.includes(serverURL)) { | ||||
| 					DomainUtil.saveServerIcon(iconURL).then((localIconUrl: string) => { | ||||
| 						const serverImgsSelector = `.tab .server-icons`; | ||||
| 						const serverImgs: NodeListOf<HTMLImageElement> = document.querySelectorAll(serverImgsSelector); | ||||
| 						serverImgs[index].src = localIconUrl; | ||||
|  | ||||
| 						domain.icon = localIconUrl; | ||||
| 						DomainUtil.db.push(`/domains[${index}]`, domain, true); | ||||
| 						DomainUtil.reloadDB(); | ||||
| 					const localIconUrl: string = await DomainUtil.saveServerIcon({ | ||||
| 						url: serverURL, | ||||
| 						icon: iconURL | ||||
| 					}); | ||||
| 					const serverImgsSelector = '.tab .server-icons'; | ||||
| 					const serverImgs: NodeListOf<HTMLImageElement> = document.querySelectorAll(serverImgsSelector); | ||||
| 					serverImgs[index].src = localIconUrl; | ||||
| 					domain.icon = localIconUrl; | ||||
| 					DomainUtil.db.push(`/domains[${index}]`, domain, true); | ||||
| 					DomainUtil.reloadDB(); | ||||
| 				} | ||||
| 			}); | ||||
| 		}); | ||||
| @@ -961,22 +1011,39 @@ class ServerManagerView { | ||||
| 		ipcRenderer.on('new-server', () => { | ||||
| 			this.openSettings('AddServer'); | ||||
| 		}); | ||||
|  | ||||
| 		// Redo and undo functionality since the default API doesn't work on macOS | ||||
| 		ipcRenderer.on('undo', () => { | ||||
| 			return this.getActiveWebview().undo(); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('redo', () => { | ||||
| 			return this.getActiveWebview().redo(); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('set-active', () => { | ||||
| 			const webviews: NodeListOf<Electron.WebviewTag> = document.querySelectorAll('webview'); | ||||
| 			webviews.forEach(webview => { | ||||
| 				webview.send('set-active'); | ||||
| 			}); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('set-idle', () => { | ||||
| 			const webviews: NodeListOf<Electron.WebviewTag> = document.querySelectorAll('webview'); | ||||
| 			webviews.forEach(webview => { | ||||
| 				webview.send('set-idle'); | ||||
| 			}); | ||||
| 		}); | ||||
|  | ||||
| 		ipcRenderer.on('open-network-settings', () => { | ||||
| 			this.openSettings('Network'); | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| window.addEventListener('load', () => { | ||||
| 	const serverManagerView = new ServerManagerView(); | ||||
| 	const reconnectUtil = new ReconnectUtil(serverManagerView); | ||||
| 	serverManagerView.init(); | ||||
| 	window.addEventListener('online', () => { | ||||
| 		reconnectUtil.pollInternetAndReload(); | ||||
| 	}); | ||||
|  | ||||
| 	window.addEventListener('offline', () => { | ||||
| 		reconnectUtil.clearState(); | ||||
| 		logger.log('No internet connection, you are offline.'); | ||||
| 	}); | ||||
|  | ||||
| 	// only start electron-connect (auto reload on change) when its ran | ||||
| 	// from `npm run dev` or `gulp dev` and not from `npm start` when | ||||
| 	// app is started `npm start` main process's proces.argv will have | ||||
| @@ -987,4 +1054,4 @@ window.addEventListener('load', () => { | ||||
| 	} | ||||
| }); | ||||
|  | ||||
| export = new ServerManagerView(); | ||||
| export {}; | ||||
|   | ||||
| @@ -1,19 +1,17 @@ | ||||
| 'use strict'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { | ||||
| 	appId, customReply, focusCurrentServer, parseReply, setupReply | ||||
| 	appId, customReply, focusCurrentServer, parseReply | ||||
| } from './helpers'; | ||||
|  | ||||
| import url = require('url'); | ||||
| import MacNotifier = require('node-mac-notifier'); | ||||
| import ConfigUtil = require('../utils/config-util'); | ||||
| import MacNotifier from 'node-mac-notifier'; | ||||
| import * as ConfigUtil from '../utils/config-util'; | ||||
| import electron_bridge from '../electron-bridge'; | ||||
|  | ||||
| type ReplyHandler = (response: string) => void; | ||||
| type ClickHandler = () => void; | ||||
| let replyHandler: ReplyHandler; | ||||
| let clickHandler: ClickHandler; | ||||
|  | ||||
| declare const window: ZulipWebWindow; | ||||
| interface NotificationHandlerArgs { | ||||
| 	response: string; | ||||
| } | ||||
| @@ -21,14 +19,13 @@ interface NotificationHandlerArgs { | ||||
| class DarwinNotification { | ||||
| 	tag: string; | ||||
|  | ||||
| 	constructor(title: string, opts: NotificationOptions) { | ||||
| 	constructor(title: string, options: NotificationOptions) { | ||||
| 		const silent: boolean = ConfigUtil.getConfigItem('silent') || false; | ||||
| 		const { host, protocol } = location; | ||||
| 		const { icon } = opts; | ||||
| 		const profilePic = url.resolve(`${protocol}//${host}`, icon); | ||||
| 		const { icon } = options; | ||||
| 		const profilePic = new URL(icon, location.href).href; | ||||
|  | ||||
| 		this.tag = opts.tag; | ||||
| 		const notification = new MacNotifier(title, Object.assign(opts, { | ||||
| 		this.tag = options.tag; | ||||
| 		const notification = new MacNotifier(title, Object.assign(options, { | ||||
| 			bundleId: appId, | ||||
| 			canReply: true, | ||||
| 			silent, | ||||
| @@ -58,22 +55,22 @@ class DarwinNotification { | ||||
| 		return ConfigUtil.getConfigItem('showNotification') ? 'granted' : 'denied'; | ||||
| 	} | ||||
|  | ||||
| 	set onreply(handler: ReplyHandler) { | ||||
| 		replyHandler = handler; | ||||
| 	} | ||||
|  | ||||
| 	get onreply(): ReplyHandler { | ||||
| 		return replyHandler; | ||||
| 	} | ||||
|  | ||||
| 	set onclick(handler: ClickHandler) { | ||||
| 		clickHandler = handler; | ||||
| 	set onreply(handler: ReplyHandler) { | ||||
| 		replyHandler = handler; | ||||
| 	} | ||||
|  | ||||
| 	get onclick(): ClickHandler { | ||||
| 		return clickHandler; | ||||
| 	} | ||||
|  | ||||
| 	set onclick(handler: ClickHandler) { | ||||
| 		clickHandler = handler; | ||||
| 	} | ||||
|  | ||||
| 	// not something that is common or | ||||
| 	// used by zulip server but added to be | ||||
| 	// future proff. | ||||
| @@ -87,15 +84,15 @@ class DarwinNotification { | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	notificationHandler({ response }: NotificationHandlerArgs): void { | ||||
| 		response = parseReply(response); | ||||
| 	async notificationHandler({ response }: NotificationHandlerArgs): Promise<void> { | ||||
| 		response = await parseReply(response); | ||||
| 		focusCurrentServer(); | ||||
| 		if (window.electron_bridge.send_notification_reply_message_supported) { | ||||
| 			window.electron_bridge.send_event('send_notification_reply_message', this.tag, response); | ||||
| 		if (electron_bridge.send_notification_reply_message_supported) { | ||||
| 			electron_bridge.send_event('send_notification_reply_message', this.tag, response); | ||||
| 			return; | ||||
| 		} | ||||
|  | ||||
| 		setupReply(this.tag); | ||||
| 		electron_bridge.emit('narrow-by-topic', this.tag); | ||||
| 		if (replyHandler) { | ||||
| 			replyHandler(response); | ||||
| 			return; | ||||
|   | ||||
| @@ -1,15 +1,13 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { focusCurrentServer } from './helpers'; | ||||
|  | ||||
| import ConfigUtil = require('../utils/config-util'); | ||||
| import * as ConfigUtil from '../utils/config-util'; | ||||
|  | ||||
| const NativeNotification = window.Notification; | ||||
| class BaseNotification extends NativeNotification { | ||||
| 	constructor(title: string, opts: NotificationOptions) { | ||||
| 		opts.silent = true; | ||||
| 		super(title, opts); | ||||
| export default class BaseNotification extends NativeNotification { | ||||
| 	constructor(title: string, options: NotificationOptions) { | ||||
| 		options.silent = true; | ||||
| 		super(title, options); | ||||
|  | ||||
| 		this.addEventListener('click', () => { | ||||
| 			// focus to the server who sent the | ||||
| @@ -19,8 +17,8 @@ class BaseNotification extends NativeNotification { | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	static requestPermission(): void { | ||||
| 		return; // eslint-disable-line no-useless-return | ||||
| 	static async requestPermission(): Promise<NotificationPermission> { | ||||
| 		return this.permission; | ||||
| 	} | ||||
|  | ||||
| 	// Override default Notification permission | ||||
| @@ -28,5 +26,3 @@ class BaseNotification extends NativeNotification { | ||||
| 		return ConfigUtil.getConfigItem('showNotification') ? 'granted' : 'denied'; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = BaseNotification; | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| import { remote } from 'electron'; | ||||
|  | ||||
| import Logger = require('../utils/logger-util'); | ||||
| import Logger from '../utils/logger-util'; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'errors.log', | ||||
| @@ -15,32 +15,23 @@ const botsList: BotListItem[] = []; | ||||
| let botsListLoaded = false; | ||||
|  | ||||
| // this function load list of bots from the server | ||||
| // sync=True for a synchronous getJSON request | ||||
| // in case botsList isn't already completely loaded when required in parseRely | ||||
| export function loadBots(sync = false): void { | ||||
| 	const { $ } = window; | ||||
| export async function loadBots(): Promise<void> { | ||||
| 	botsList.length = 0; | ||||
| 	if (sync) { | ||||
| 		$.ajaxSetup({async: false}); | ||||
| 	} | ||||
| 	$.getJSON('/json/users') | ||||
| 		.done((data: any) => { | ||||
| 			const { members } = data; | ||||
| 			members.forEach((membersRow: any) => { | ||||
| 				if (membersRow.is_bot) { | ||||
| 					const bot = `@${membersRow.full_name}`; | ||||
| 					const mention = `@**${bot.replace(/^@/, '')}**`; | ||||
| 					botsList.push([bot, mention]); | ||||
| 				} | ||||
| 			}); | ||||
| 			botsListLoaded = true; | ||||
| 		}) | ||||
| 		.fail((error: any) => { | ||||
| 			logger.log('Load bots request failed: ', error.responseText); | ||||
| 			logger.log('Load bots request status: ', error.statusText); | ||||
| 	const response = await fetch('/json/users'); | ||||
| 	if (response.ok) { | ||||
| 		const { members } = await response.json(); | ||||
| 		members.forEach((membersRow: any) => { | ||||
| 			if (membersRow.is_bot) { | ||||
| 				const bot = `@${membersRow.full_name}`; | ||||
| 				const mention = `@**${bot.replace(/^@/, '')}**`; | ||||
| 				botsList.push([bot, mention]); | ||||
| 			} | ||||
| 		}); | ||||
| 	if (sync) { | ||||
| 		$.ajaxSetup({async: true}); | ||||
| 		botsListLoaded = true; | ||||
| 	} else { | ||||
| 		logger.log('Load bots request failed: ', await response.text()); | ||||
| 		logger.log('Load bots request status: ', response.status); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -80,16 +71,14 @@ const webContentsId = webContents.id; | ||||
| // this function will focus the server that sent | ||||
| // the notification. Main function implemented in main.js | ||||
| export function focusCurrentServer(): void { | ||||
| 	// TODO: TypeScript: currentWindow of type BrowserWindow doesn't | ||||
| 	// have a .send() property per typescript. | ||||
| 	(currentWindow as any).send('focus-webview-with-id', webContentsId); | ||||
| 	currentWindow.webContents.send('focus-webview-with-id', webContentsId); | ||||
| } | ||||
| // this function parses the reply from to notification | ||||
| // making it easier to reply from notification eg | ||||
| // @username in reply will be converted to @**username** | ||||
| // #stream in reply will be converted to #**stream** | ||||
| // bot mentions are not yet supported | ||||
| export function parseReply(reply: string): string { | ||||
| export async function parseReply(reply: string): Promise<string> { | ||||
| 	const usersDiv = document.querySelectorAll('#user_presences li'); | ||||
| 	const streamHolder = document.querySelectorAll('#stream_filters li'); | ||||
|  | ||||
| @@ -128,9 +117,9 @@ export function parseReply(reply: string): string { | ||||
| 		reply = reply.replace(regex, streamMention); | ||||
| 	}); | ||||
|  | ||||
| 	// If botsList isn't completely loaded yet, make a synchronous getJSON request for list | ||||
| 	if (botsListLoaded === false) { | ||||
| 		loadBots(true); | ||||
| 	// If botsList isn't completely loaded yet, make a request for list | ||||
| 	if (!botsListLoaded) { | ||||
| 		await loadBots(); | ||||
| 	} | ||||
|  | ||||
| 	// Iterate for every bot name and replace in reply | ||||
| @@ -145,9 +134,3 @@ export function parseReply(reply: string): string { | ||||
| 	reply = reply.replace(/\\n/, '\n'); | ||||
| 	return reply; | ||||
| } | ||||
|  | ||||
| export function setupReply(id: string): void { | ||||
| 	const { narrow } = window; | ||||
| 	const narrowByTopic = narrow.by_topic || narrow.by_subject; | ||||
| 	narrowByTopic(id, { trigger: 'notification' }); | ||||
| } | ||||
|   | ||||
| @@ -1,25 +1,72 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { remote } from 'electron'; | ||||
| import * as params from '../utils/params-util'; | ||||
| import electron_bridge from '../electron-bridge'; | ||||
| import { appId, loadBots } from './helpers'; | ||||
|  | ||||
| import DefaultNotification = require('./default-notification'); | ||||
| import DefaultNotification from './default-notification'; | ||||
| const { app } = remote; | ||||
|  | ||||
| // From https://github.com/felixrieseberg/electron-windows-notifications#appusermodelid | ||||
| // On windows 8 we have to explicitly set the appUserModelId otherwise notification won't work. | ||||
| app.setAppUserModelId(appId); | ||||
|  | ||||
| window.Notification = DefaultNotification; | ||||
| let Notification = DefaultNotification; | ||||
|  | ||||
| if (process.platform === 'darwin') { | ||||
| 	window.Notification = require('./darwin-notifications'); | ||||
| 	Notification = require('./darwin-notifications'); | ||||
| } | ||||
|  | ||||
| window.addEventListener('load', () => { | ||||
| 	// eslint-disable-next-line no-undef, @typescript-eslint/camelcase | ||||
| 	if (params.isPageParams() && page_params.realm_uri) { | ||||
| 		loadBots(); | ||||
| export interface NotificationData { | ||||
| 	close(): void; | ||||
| 	title: string; | ||||
| 	dir: NotificationDirection; | ||||
| 	lang: string; | ||||
| 	body: string; | ||||
| 	tag: string; | ||||
| 	image: string; | ||||
| 	icon: string; | ||||
| 	badge: string; | ||||
| 	vibrate: readonly number[]; | ||||
| 	timestamp: number; | ||||
| 	renotify: boolean; | ||||
| 	silent: boolean; | ||||
| 	requireInteraction: boolean; | ||||
| 	data: unknown; | ||||
| 	actions: readonly NotificationAction[]; | ||||
| } | ||||
|  | ||||
| export function newNotification( | ||||
| 	title: string, | ||||
| 	options: NotificationOptions | undefined, | ||||
| 	dispatch: (type: string, eventInit: EventInit) => boolean | ||||
| ): NotificationData { | ||||
| 	const notification = new Notification(title, options); | ||||
| 	for (const type of ['click', 'close', 'error', 'show']) { | ||||
| 		notification.addEventListener(type, (ev: Event) => { | ||||
| 			if (!dispatch(type, ev)) { | ||||
| 				ev.preventDefault(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
| 	return { | ||||
| 		close: () => notification.close(), | ||||
| 		title: notification.title, | ||||
| 		dir: notification.dir, | ||||
| 		lang: notification.lang, | ||||
| 		body: notification.body, | ||||
| 		tag: notification.tag, | ||||
| 		image: notification.image, | ||||
| 		icon: notification.icon, | ||||
| 		badge: notification.badge, | ||||
| 		vibrate: notification.vibrate, | ||||
| 		timestamp: notification.timestamp, | ||||
| 		renotify: notification.renotify, | ||||
| 		silent: notification.silent, | ||||
| 		requireInteraction: notification.requireInteraction, | ||||
| 		data: notification.data, | ||||
| 		actions: notification.actions | ||||
| 	}; | ||||
| } | ||||
|  | ||||
| electron_bridge.once('zulip-loaded', () => { | ||||
| 	loadBots(); | ||||
| }); | ||||
|   | ||||
| @@ -1,21 +1,10 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| class NetworkTroubleshootingView { | ||||
| 	$reconnectButton: Element; | ||||
| 	constructor() { | ||||
| 		this.$reconnectButton = document.querySelector('#reconnect'); | ||||
| 	} | ||||
|  | ||||
| 	init(): void { | ||||
| 		this.$reconnectButton.addEventListener('click', () => { | ||||
| 			ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 		}); | ||||
| 	} | ||||
| export function init($reconnectButton: Element, $settingsButton: Element): void { | ||||
| 	$reconnectButton.addEventListener('click', () => { | ||||
| 		ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 	}); | ||||
| 	$settingsButton.addEventListener('click', () => { | ||||
| 		ipcRenderer.send('forward-message', 'open-settings'); | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| window.addEventListener('load', () => { | ||||
| 	const networkTroubleshootingView = new NetworkTroubleshootingView(); | ||||
| 	networkTroubleshootingView.init(); | ||||
| }); | ||||
|   | ||||
| @@ -2,15 +2,15 @@ | ||||
|  | ||||
| import { remote, OpenDialogOptions } from 'electron'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import CertificateUtil = require('../../utils/certificate-util'); | ||||
| import DomainUtil = require('../../utils/domain-util'); | ||||
| import t = require('../../utils/translation-util'); | ||||
| import path from 'path'; | ||||
| import BaseComponent from '../../components/base'; | ||||
| import * as CertificateUtil from '../../utils/certificate-util'; | ||||
| import * as DomainUtil from '../../utils/domain-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| const { dialog } = remote; | ||||
|  | ||||
| class AddCertificate extends BaseComponent { | ||||
| export default class AddCertificate extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	_certFile: string; | ||||
| @@ -59,7 +59,7 @@ class AddCertificate extends BaseComponent { | ||||
| 			CertificateUtil.setCertificate(server, fileName); | ||||
| 			dialog.showMessageBox({ | ||||
| 				title: 'Success', | ||||
| 				message: `Certificate saved!` | ||||
| 				message: 'Certificate saved!' | ||||
| 			}); | ||||
| 			this.serverUrl.value = ''; | ||||
| 		} else { | ||||
| @@ -68,18 +68,17 @@ class AddCertificate extends BaseComponent { | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	addHandler(): void { | ||||
| 	async addHandler(): Promise<void> { | ||||
| 		const showDialogOptions: OpenDialogOptions = { | ||||
| 			title: 'Select file', | ||||
| 			properties: ['openFile'], | ||||
| 			filters: [{ name: 'crt, pem', extensions: ['crt', 'pem'] }] | ||||
| 		}; | ||||
| 		dialog.showOpenDialog(showDialogOptions, selectedFile => { | ||||
| 			if (selectedFile) { | ||||
| 				this._certFile = selectedFile[0] || ''; | ||||
| 				this.validateAndAdd(); | ||||
| 			} | ||||
| 		}); | ||||
| 		const { filePaths, canceled } = await dialog.showOpenDialog(showDialogOptions); | ||||
| 		if (!canceled) { | ||||
| 			this._certFile = filePaths[0] || ''; | ||||
| 			this.validateAndAdd(); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	initListeners(): void { | ||||
| @@ -88,13 +87,9 @@ class AddCertificate extends BaseComponent { | ||||
| 		}); | ||||
|  | ||||
| 		this.serverUrl.addEventListener('keypress', event => { | ||||
| 			const EnterkeyCode = event.keyCode; | ||||
|  | ||||
| 			if (EnterkeyCode === 13) { | ||||
| 			if (event.key === 'Enter') { | ||||
| 				this.addHandler(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = AddCertificate; | ||||
|   | ||||
| @@ -1,63 +1,43 @@ | ||||
| 'use strict'; | ||||
| import { app } from 'electron'; | ||||
| import electron, { app } from 'electron'; | ||||
|  | ||||
| import electron = require('electron'); | ||||
| import ConfigUtil = require('../../utils/config-util'); | ||||
| import * as ConfigUtil from '../../utils/config-util'; | ||||
|  | ||||
| let instance: BadgeSettings | any = null; | ||||
|  | ||||
| class BadgeSettings { | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
|  | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	showBadgeCount(messageCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 		if (process.platform === 'darwin') { | ||||
| 			app.setBadgeCount(messageCount); | ||||
| 		} | ||||
| 		if (process.platform === 'win32') { | ||||
| 			this.updateOverlayIcon(messageCount, mainWindow); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	hideBadgeCount(mainWindow: electron.BrowserWindow): void { | ||||
| 		if (process.platform === 'darwin') { | ||||
| 			app.setBadgeCount(0); | ||||
| 		} | ||||
| 		if (process.platform === 'win32') { | ||||
| 			mainWindow.setOverlayIcon(null, ''); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	updateBadge(badgeCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 		if (ConfigUtil.getConfigItem('badgeOption', true)) { | ||||
| 			this.showBadgeCount(badgeCount, mainWindow); | ||||
| 		} else { | ||||
| 			this.hideBadgeCount(mainWindow); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	updateOverlayIcon(messageCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 		if (!mainWindow.isFocused()) { | ||||
| 			mainWindow.flashFrame(ConfigUtil.getConfigItem('flashTaskbarOnMessage')); | ||||
| 		} | ||||
| 		if (messageCount === 0) { | ||||
| 			mainWindow.setOverlayIcon(null, ''); | ||||
| 		} else { | ||||
| 			mainWindow.webContents.send('render-taskbar-icon', messageCount); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	updateTaskbarIcon(data: string, text: string, mainWindow: electron.BrowserWindow): void { | ||||
| 		const img = electron.nativeImage.createFromDataURL(data); | ||||
| 		mainWindow.setOverlayIcon(img, text); | ||||
| function showBadgeCount(messageCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 	if (process.platform === 'win32') { | ||||
| 		updateOverlayIcon(messageCount, mainWindow); | ||||
| 	} else { | ||||
| 		app.badgeCount = messageCount; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new BadgeSettings(); | ||||
| function hideBadgeCount(mainWindow: electron.BrowserWindow): void { | ||||
| 	if (process.platform === 'win32') { | ||||
| 		mainWindow.setOverlayIcon(null, ''); | ||||
| 	} else { | ||||
| 		app.badgeCount = 0; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export function updateBadge(badgeCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 	if (ConfigUtil.getConfigItem('badgeOption', true)) { | ||||
| 		showBadgeCount(badgeCount, mainWindow); | ||||
| 	} else { | ||||
| 		hideBadgeCount(mainWindow); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| function updateOverlayIcon(messageCount: number, mainWindow: electron.BrowserWindow): void { | ||||
| 	if (!mainWindow.isFocused()) { | ||||
| 		mainWindow.flashFrame(ConfigUtil.getConfigItem('flashTaskbarOnMessage')); | ||||
| 	} | ||||
| 	if (messageCount === 0) { | ||||
| 		mainWindow.setOverlayIcon(null, ''); | ||||
| 	} else { | ||||
| 		mainWindow.webContents.send('render-taskbar-icon', messageCount); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export function updateTaskbarIcon(data: string, text: string, mainWindow: electron.BrowserWindow): void { | ||||
| 	const img = electron.nativeImage.createFromDataURL(data); | ||||
| 	mainWindow.setOverlayIcon(img, text); | ||||
| } | ||||
|   | ||||
| @@ -1,10 +1,8 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import BaseComponent from '../../components/base'; | ||||
|  | ||||
| class BaseSection extends BaseComponent { | ||||
| export default class BaseSection extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	generateSettingOption(props: any): void { | ||||
| 		const {$element, disabled, value, clickHandler} = props; | ||||
| @@ -20,7 +18,7 @@ class BaseSection extends BaseComponent { | ||||
| 	} | ||||
|  | ||||
| 	generateOptionTemplate(settingOption: boolean, disabled: boolean): string { | ||||
| 		const label = disabled ? `<label class="disallowed" title="Setting locked by system administrator."/>` : `<label/>`; | ||||
| 		const label = disabled ? '<label class="disallowed" title="Setting locked by system administrator."/>' : '<label/>'; | ||||
| 		if (settingOption) { | ||||
| 			return ` | ||||
| 				<div class="action"> | ||||
| @@ -46,5 +44,3 @@ class BaseSection extends BaseComponent { | ||||
| 		ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = BaseSection; | ||||
|   | ||||
| @@ -1,15 +1,13 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import BaseSection = require('./base-section'); | ||||
| import DomainUtil = require('../../utils/domain-util'); | ||||
| import ServerInfoForm = require('./server-info-form'); | ||||
| import AddCertificate = require('./add-certificate'); | ||||
| import FindAccounts = require('./find-accounts'); | ||||
| import t = require('../../utils/translation-util'); | ||||
| import BaseSection from './base-section'; | ||||
| import * as DomainUtil from '../../utils/domain-util'; | ||||
| import ServerInfoForm from './server-info-form'; | ||||
| import AddCertificate from './add-certificate'; | ||||
| import FindAccounts from './find-accounts'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| class ConnectedOrgSection extends BaseSection { | ||||
| export default class ConnectedOrgSection extends BaseSection { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$serverInfoContainer: Element | null; | ||||
| @@ -57,10 +55,10 @@ class ConnectedOrgSection extends BaseSection { | ||||
| 		// Show noServerText if no servers are there otherwise hide it | ||||
| 		this.$existingServers.innerHTML = servers.length === 0 ? noServerText : ''; | ||||
|  | ||||
| 		for (let i = 0; i < servers.length; i++) { | ||||
| 		for (const [i, server] of servers.entries()) { | ||||
| 			new ServerInfoForm({ | ||||
| 				$root: this.$serverInfoContainer, | ||||
| 				server: servers[i], | ||||
| 				server, | ||||
| 				index: i, | ||||
| 				onChange: this.reloadApp | ||||
| 			}).init(); | ||||
| @@ -86,5 +84,3 @@ class ConnectedOrgSection extends BaseSection { | ||||
| 		}).init(); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ConnectedOrgSection; | ||||
|   | ||||
| @@ -1,11 +1,10 @@ | ||||
| 'use-strict'; | ||||
|  | ||||
| import { shell } from 'electron'; | ||||
| import BaseComponent from '../../components/base'; | ||||
| import * as LinkUtil from '../../utils/link-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import t = require('../../utils/translation-util'); | ||||
|  | ||||
| class FindAccounts extends BaseComponent { | ||||
| export default class FindAccounts extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$findAccounts: Element | null; | ||||
| @@ -45,7 +44,7 @@ class FindAccounts extends BaseComponent { | ||||
| 		if (!url.startsWith('http')) { | ||||
| 			url = 'https://' + url; | ||||
| 		} | ||||
| 		shell.openExternal(url + '/accounts/find'); | ||||
| 		LinkUtil.openBrowser(new URL('/accounts/find', url)); | ||||
| 	} | ||||
|  | ||||
| 	initListeners(): void { | ||||
| @@ -60,7 +59,7 @@ class FindAccounts extends BaseComponent { | ||||
| 		}); | ||||
|  | ||||
| 		this.$serverUrlField.addEventListener('keypress', event => { | ||||
| 			if (event.keyCode === 13) { | ||||
| 			if (event.key === 'Enter') { | ||||
| 				this.findAccounts(this.$serverUrlField.value); | ||||
| 			} | ||||
| 		}); | ||||
| @@ -74,5 +73,3 @@ class FindAccounts extends BaseComponent { | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = FindAccounts; | ||||
|   | ||||
| @@ -1,18 +1,17 @@ | ||||
| 'use strict'; | ||||
| import { ipcRenderer, remote, OpenDialogOptions } from 'electron'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import fs = require('fs-extra'); | ||||
| import path from 'path'; | ||||
| import fs from 'fs-extra'; | ||||
|  | ||||
| const { app, dialog } = remote; | ||||
| const currentBrowserWindow = remote.getCurrentWindow(); | ||||
|  | ||||
| import BaseSection = require('./base-section'); | ||||
| import ConfigUtil = require('../../utils/config-util'); | ||||
| import EnterpriseUtil = require('./../../utils/enterprise-util'); | ||||
| import t = require('../../utils/translation-util'); | ||||
| import BaseSection from './base-section'; | ||||
| import * as ConfigUtil from '../../utils/config-util'; | ||||
| import * as EnterpriseUtil from '../../utils/enterprise-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| class GeneralSection extends BaseSection { | ||||
| export default class GeneralSection extends BaseSection { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	constructor(props: any) { | ||||
| @@ -42,7 +41,7 @@ class GeneralSection extends BaseSection { | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="dock-bounce-option" style= "display:${process.platform === 'darwin' ? '' : 'none'}"> | ||||
| 						<div class="setting-description">${t.__('Bounce dock on new private message')})}</div> | ||||
| 						<div class="setting-description">${t.__('Bounce dock on new private message')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="flash-taskbar-option" style= "display:${process.platform === 'win32' ? '' : 'none'}"> | ||||
| @@ -82,6 +81,10 @@ class GeneralSection extends BaseSection { | ||||
| 						<div class="setting-description">${t.__('Always start minimized')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="quitOnClose-option"> | ||||
| 						<div class="setting-description">${t.__('Quit when the window is closed')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="enable-spellchecker-option"> | ||||
| 						<div class="setting-description">${t.__('Enable spellchecker (requires restart)')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| @@ -89,29 +92,25 @@ class GeneralSection extends BaseSection { | ||||
| 				</div> | ||||
| 				<div class="title">${t.__('Advanced')}</div> | ||||
| 				<div class="settings-card"> | ||||
| 				<div class="setting-row" id="enable-error-reporting"> | ||||
| 					<div class="setting-description">${t.__('Enable error reporting (requires restart)')}</div> | ||||
| 					<div class="setting-control"></div> | ||||
| 				</div> | ||||
| 				<div class="setting-row" id="show-download-folder"> | ||||
| 					<div class="setting-description">${t.__('Show downloaded files in file manager')}</div> | ||||
| 					<div class="setting-control"></div> | ||||
| 				</div> | ||||
| 				<div class="setting-row" id="add-custom-css"> | ||||
| 				<div class="setting-description"> | ||||
| 					${t.__('Add custom CSS')} | ||||
| 				</div> | ||||
| 				<button class="custom-css-button green">${t.__('Upload')}</button> | ||||
| 			</div> | ||||
| 			<div class="setting-row" id="remove-custom-css"> | ||||
| 				<div class="setting-description"> | ||||
| 					<div class="selected-css-path" id="custom-css-path">${ConfigUtil.getConfigItem('customCSS')}</div> | ||||
| 				</div> | ||||
| 				<div class="action red" id="css-delete-action"> | ||||
| 					<i class="material-icons">indeterminate_check_box</i> | ||||
| 					<span>${t.__('Delete')}</span> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 					<div class="setting-row" id="enable-error-reporting"> | ||||
| 						<div class="setting-description">${t.__('Enable error reporting (requires restart)')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="add-custom-css"> | ||||
| 						<div class="setting-description"> | ||||
| 							${t.__('Add custom CSS')} | ||||
| 						</div> | ||||
| 						<button class="custom-css-button green">${t.__('Upload')}</button> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="remove-custom-css"> | ||||
| 						<div class="setting-description"> | ||||
| 							<div class="selected-css-path" id="custom-css-path">${ConfigUtil.getConfigItem('customCSS')}</div> | ||||
| 						</div> | ||||
| 						<div class="action red" id="css-delete-action"> | ||||
| 							<i class="material-icons">indeterminate_check_box</i> | ||||
| 							<span>${t.__('Delete')}</span> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 					<div class="setting-row" id="download-folder"> | ||||
| 						<div class="setting-description"> | ||||
| 							${t.__('Default download location')} | ||||
| @@ -123,7 +122,10 @@ class GeneralSection extends BaseSection { | ||||
| 							<div class="download-folder-path">${ConfigUtil.getConfigItem('downloadsPath', `${app.getPath('downloads')}`)}</div> | ||||
| 						</div> | ||||
| 					</div> | ||||
|  | ||||
| 					<div class="setting-row" id="prompt-download"> | ||||
| 						<div class="setting-description">${t.__('Ask where to save files before downloading')}</div> | ||||
| 						<div class="setting-control"></div> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 				<div class="title">${t.__('Reset Application Data')}</div> | ||||
|                 <div class="settings-card"> | ||||
| @@ -154,7 +156,8 @@ class GeneralSection extends BaseSection { | ||||
| 		this.showCustomCSSPath(); | ||||
| 		this.removeCustomCSS(); | ||||
| 		this.downloadFolder(); | ||||
| 		this.showDownloadFolder(); | ||||
| 		this.updateQuitOnCloseOption(); | ||||
| 		this.updatePromptDownloadOption(); | ||||
| 		this.enableErrorReporting(); | ||||
|  | ||||
| 		// Platform specific settings | ||||
| @@ -276,9 +279,7 @@ class GeneralSection extends BaseSection { | ||||
| 				const newValue = !ConfigUtil.getConfigItem('silent', true); | ||||
| 				ConfigUtil.setConfigItem('silent', newValue); | ||||
| 				this.updateSilentOption(); | ||||
| 				// TODO: TypeScript: currentWindow of type BrowserWindow doesn't | ||||
| 				// have a .send() property per typescript. | ||||
| 				(currentBrowserWindow as any).send('toggle-silent', newValue); | ||||
| 				currentBrowserWindow.webContents.send('toggle-silent', newValue); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
| @@ -321,6 +322,18 @@ class GeneralSection extends BaseSection { | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	updateQuitOnCloseOption(): void { | ||||
| 		this.generateSettingOption({ | ||||
| 			$element: document.querySelector('#quitOnClose-option .setting-control'), | ||||
| 			value: ConfigUtil.getConfigItem('quitOnClose', false), | ||||
| 			clickHandler: () => { | ||||
| 				const newValue = !ConfigUtil.getConfigItem('quitOnClose'); | ||||
| 				ConfigUtil.setConfigItem('quitOnClose', newValue); | ||||
| 				this.updateQuitOnCloseOption(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	enableSpellchecker(): void { | ||||
| 		this.generateSettingOption({ | ||||
| 			$element: document.querySelector('#enable-spellchecker-option .setting-control'), | ||||
| @@ -345,37 +358,35 @@ class GeneralSection extends BaseSection { | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	clearAppDataDialog(): void { | ||||
| 	async clearAppDataDialog(): Promise<void> { | ||||
| 		const clearAppDataMessage = 'By clicking proceed you will be removing all added accounts and preferences from Zulip. When the application restarts, it will be as if you are starting Zulip for the first time.'; | ||||
| 		const getAppPath = path.join(app.getPath('appData'), app.getName()); | ||||
| 		const getAppPath = path.join(app.getPath('appData'), app.name); | ||||
|  | ||||
| 		dialog.showMessageBox({ | ||||
| 		const { response } = await dialog.showMessageBox({ | ||||
| 			type: 'warning', | ||||
| 			buttons: ['YES', 'NO'], | ||||
| 			defaultId: 0, | ||||
| 			message: 'Are you sure', | ||||
| 			detail: clearAppDataMessage | ||||
| 		}, response => { | ||||
| 			if (response === 0) { | ||||
| 				fs.remove(getAppPath); | ||||
| 				setTimeout(() => ipcRenderer.send('forward-message', 'hard-reload'), 1000); | ||||
| 			} | ||||
| 		}); | ||||
| 		if (response === 0) { | ||||
| 			fs.remove(getAppPath); | ||||
| 			setTimeout(() => ipcRenderer.send('forward-message', 'hard-reload'), 1000); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	customCssDialog(): void { | ||||
| 	async customCssDialog(): Promise<void> { | ||||
| 		const showDialogOptions: OpenDialogOptions = { | ||||
| 			title: 'Select file', | ||||
| 			properties: ['openFile'], | ||||
| 			filters: [{ name: 'CSS file', extensions: ['css'] }] | ||||
| 		}; | ||||
|  | ||||
| 		dialog.showOpenDialog(showDialogOptions, selectedFile => { | ||||
| 			if (selectedFile) { | ||||
| 				ConfigUtil.setConfigItem('customCSS', selectedFile[0]); | ||||
| 				ipcRenderer.send('forward-message', 'hard-reload'); | ||||
| 			} | ||||
| 		}); | ||||
| 		const { filePaths, canceled } = await dialog.showOpenDialog(showDialogOptions); | ||||
| 		if (!canceled) { | ||||
| 			ConfigUtil.setConfigItem('customCSS', filePaths[0]); | ||||
| 			ipcRenderer.send('forward-message', 'hard-reload'); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	updateResetDataOption(): void { | ||||
| @@ -414,25 +425,25 @@ class GeneralSection extends BaseSection { | ||||
| 	removeCustomCSS(): void { | ||||
| 		const removeCSSButton = document.querySelector('#css-delete-action'); | ||||
| 		removeCSSButton.addEventListener('click', () => { | ||||
| 			ConfigUtil.setConfigItem('customCSS', ""); | ||||
| 			ConfigUtil.setConfigItem('customCSS', ''); | ||||
| 			ipcRenderer.send('forward-message', 'hard-reload'); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	downloadFolderDialog(): void { | ||||
| 	async downloadFolderDialog(): Promise<void> { | ||||
| 		const showDialogOptions: OpenDialogOptions = { | ||||
| 			title: 'Select Download Location', | ||||
| 			properties: ['openDirectory'] | ||||
| 		}; | ||||
|  | ||||
| 		dialog.showOpenDialog(showDialogOptions, selectedFolder => { | ||||
| 			if (selectedFolder) { | ||||
| 				ConfigUtil.setConfigItem('downloadsPath', selectedFolder[0]); | ||||
| 				const downloadFolderPath: HTMLElement = document.querySelector('.download-folder-path'); | ||||
| 				downloadFolderPath.innerText = selectedFolder[0]; | ||||
| 			} | ||||
| 		}); | ||||
| 		const { filePaths, canceled } = await dialog.showOpenDialog(showDialogOptions); | ||||
| 		if (!canceled) { | ||||
| 			ConfigUtil.setConfigItem('downloadsPath', filePaths[0]); | ||||
| 			const downloadFolderPath: HTMLElement = document.querySelector('.download-folder-path'); | ||||
| 			downloadFolderPath.textContent = filePaths[0]; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	downloadFolder(): void { | ||||
| 		const downloadFolder = document.querySelector('#download-folder .download-folder-button'); | ||||
| 		downloadFolder.addEventListener('click', () => { | ||||
| @@ -440,17 +451,15 @@ class GeneralSection extends BaseSection { | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	showDownloadFolder(): void { | ||||
| 	updatePromptDownloadOption(): void { | ||||
| 		this.generateSettingOption({ | ||||
| 			$element: document.querySelector('#show-download-folder .setting-control'), | ||||
| 			value: ConfigUtil.getConfigItem('showDownloadFolder', false), | ||||
| 			$element: document.querySelector('#prompt-download .setting-control'), | ||||
| 			value: ConfigUtil.getConfigItem('promptDownload', false), | ||||
| 			clickHandler: () => { | ||||
| 				const newValue = !ConfigUtil.getConfigItem('showDownloadFolder'); | ||||
| 				ConfigUtil.setConfigItem('showDownloadFolder', newValue); | ||||
| 				this.showDownloadFolder(); | ||||
| 				const newValue = !ConfigUtil.getConfigItem('promptDownload'); | ||||
| 				ConfigUtil.setConfigItem('promptDownload', newValue); | ||||
| 				this.updatePromptDownloadOption(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = GeneralSection; | ||||
|   | ||||
| @@ -1,9 +1,7 @@ | ||||
| 'use strict'; | ||||
| import BaseComponent from '../../components/base'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import t = require('../../utils/translation-util'); | ||||
|  | ||||
| class PreferenceNav extends BaseComponent { | ||||
| export default class PreferenceNav extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	navItems: string[]; | ||||
| @@ -64,5 +62,3 @@ class PreferenceNav extends BaseComponent { | ||||
| 		$item.classList.remove('active'); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = PreferenceNav; | ||||
|   | ||||
| @@ -1,12 +1,10 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import BaseSection = require('./base-section'); | ||||
| import ConfigUtil = require('../../utils/config-util'); | ||||
| import t = require('../../utils/translation-util'); | ||||
| import BaseSection from './base-section'; | ||||
| import * as ConfigUtil from '../../utils/config-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| class NetworkSection extends BaseSection { | ||||
| export default class NetworkSection extends BaseSection { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$proxyPAC: HTMLInputElement; | ||||
| @@ -104,7 +102,7 @@ class NetworkSection extends BaseSection { | ||||
| 					ConfigUtil.setConfigItem('useManualProxy', !manualProxyValue); | ||||
| 					this.toggleManualProxySettings(!manualProxyValue); | ||||
| 				} | ||||
| 				if (newValue === false) { | ||||
| 				if (!newValue) { | ||||
| 					// Remove proxy system proxy settings | ||||
| 					ConfigUtil.setConfigItem('proxyRules', ''); | ||||
| 					ipcRenderer.send('forward-message', 'reload-proxy', false); | ||||
| @@ -132,5 +130,3 @@ class NetworkSection extends BaseSection { | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = NetworkSection; | ||||
|   | ||||
| @@ -1,12 +1,11 @@ | ||||
| 'use strict'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { shell } from 'electron'; | ||||
| import BaseComponent from '../../components/base'; | ||||
| import * as DomainUtil from '../../utils/domain-util'; | ||||
| import * as LinkUtil from '../../utils/link-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import DomainUtil = require('../../utils/domain-util'); | ||||
| import t = require('../../utils/translation-util'); | ||||
|  | ||||
| class NewServerForm extends BaseComponent { | ||||
| export default class NewServerForm extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$newServerForm: Element; | ||||
| @@ -25,20 +24,22 @@ class NewServerForm extends BaseComponent { | ||||
| 					<input class="setting-input-value" autofocus placeholder="your-organization.zulipchat.com or zulip.your-organization.com"/> | ||||
| 				</div> | ||||
| 				<div class="server-center"> | ||||
| 					<div class="server-save-action"> | ||||
| 						<button id="connect">${t.__('Connect')}</button> | ||||
| 					<button id="connect">${t.__('Connect')}</button> | ||||
| 				</div> | ||||
| 				<div class="server-center"> | ||||
| 					<div class="divider"> | ||||
| 						<hr class="left"/>${t.__('OR')}<hr class="right" /> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 				<div class="server-center"> | ||||
| 				<div class="divider"> | ||||
| 					<hr class="left"/>${t.__('OR')}<hr class="right" /> | ||||
| 				</div> | ||||
| 				</div> | ||||
| 				<div class="server-center"> | ||||
| 				<div class="server-save-action"> | ||||
| 					<button id="open-create-org-link">${t.__('Create a new organization')}</button> | ||||
| 			</div> | ||||
| 				</div> | ||||
| 				<div class="server-center"> | ||||
| 					<div class="server-network-option"> | ||||
| 						<span id="open-network-settings">${t.__('Network and Proxy Settings')}</span> | ||||
| 						<i class="material-icons open-network-button">open_in_new</i> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 		`; | ||||
| 	} | ||||
| @@ -50,46 +51,50 @@ class NewServerForm extends BaseComponent { | ||||
|  | ||||
| 	initForm(): void { | ||||
| 		this.$newServerForm = this.generateNodeFromTemplate(this.template()); | ||||
| 		this.$saveServerButton = this.$newServerForm.querySelectorAll('.server-save-action')[0] as HTMLButtonElement; | ||||
| 		this.$saveServerButton = this.$newServerForm.querySelector('#connect'); | ||||
| 		this.props.$root.innerHTML = ''; | ||||
| 		this.props.$root.append(this.$newServerForm); | ||||
| 		this.$newServerUrl = this.$newServerForm.querySelectorAll('input.setting-input-value')[0] as HTMLInputElement; | ||||
| 	} | ||||
|  | ||||
| 	submitFormHandler(): void { | ||||
| 		this.$saveServerButton.children[0].innerHTML = 'Connecting...'; | ||||
| 		DomainUtil.checkDomain(this.$newServerUrl.value).then(serverConf => { | ||||
| 			DomainUtil.addDomain(serverConf).then(() => { | ||||
| 				this.props.onChange(this.props.index); | ||||
| 			}); | ||||
| 		}, errorMessage => { | ||||
| 			this.$saveServerButton.children[0].innerHTML = 'Connect'; | ||||
| 	async submitFormHandler(): Promise<void> { | ||||
| 		this.$saveServerButton.innerHTML = 'Connecting...'; | ||||
| 		let serverConf; | ||||
| 		try { | ||||
| 			serverConf = await DomainUtil.checkDomain(this.$newServerUrl.value); | ||||
| 		} catch (errorMessage) { | ||||
| 			this.$saveServerButton.innerHTML = 'Connect'; | ||||
| 			alert(errorMessage); | ||||
| 		}); | ||||
| 			return; | ||||
| 		} | ||||
| 		await DomainUtil.addDomain(serverConf); | ||||
| 		this.props.onChange(this.props.index); | ||||
| 	} | ||||
|  | ||||
| 	openCreateNewOrgExternalLink(): void { | ||||
| 		const link = 'https://zulipchat.com/new/'; | ||||
| 		const externalCreateNewOrgEl = document.querySelector('#open-create-org-link'); | ||||
| 		externalCreateNewOrgEl.addEventListener('click', () => { | ||||
| 			shell.openExternal(link); | ||||
| 		const externalCreateNewOrgElement = document.querySelector('#open-create-org-link'); | ||||
| 		externalCreateNewOrgElement.addEventListener('click', () => { | ||||
| 			LinkUtil.openBrowser(new URL(link)); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	networkSettingsLink(): void { | ||||
| 		const networkSettingsId = document.querySelectorAll('.server-network-option')[0]; | ||||
| 		networkSettingsId.addEventListener('click', () => ipcRenderer.send('forward-message', 'open-network-settings')); | ||||
| 	} | ||||
|  | ||||
| 	initActions(): void { | ||||
| 		this.$saveServerButton.addEventListener('click', () => { | ||||
| 			this.submitFormHandler(); | ||||
| 		}); | ||||
| 		this.$newServerUrl.addEventListener('keypress', event => { | ||||
| 			const EnterkeyCode = event.keyCode; | ||||
| 			// Submit form when Enter key is pressed | ||||
| 			if (EnterkeyCode === 13) { | ||||
| 			if (event.key === 'Enter') { | ||||
| 				this.submitFormHandler(); | ||||
| 			} | ||||
| 		}); | ||||
| 		// open create new org link in default browser | ||||
| 		this.openCreateNewOrgExternalLink(); | ||||
| 		this.networkSettingsLink(); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = NewServerForm; | ||||
|   | ||||
| @@ -1,18 +1,16 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import Nav = require('./nav'); | ||||
| import ServersSection = require('./servers-section'); | ||||
| import GeneralSection = require('./general-section'); | ||||
| import NetworkSection = require('./network-section'); | ||||
| import ConnectedOrgSection = require('./connected-org-section'); | ||||
| import ShortcutsSection = require('./shortcuts-section'); | ||||
| import BaseComponent from '../../components/base'; | ||||
| import Nav from './nav'; | ||||
| import ServersSection from './servers-section'; | ||||
| import GeneralSection from './general-section'; | ||||
| import NetworkSection from './network-section'; | ||||
| import ConnectedOrgSection from './connected-org-section'; | ||||
| import ShortcutsSection from './shortcuts-section'; | ||||
|  | ||||
| type Section = ServersSection | GeneralSection | NetworkSection | ConnectedOrgSection | ShortcutsSection; | ||||
|  | ||||
| class PreferenceView extends BaseComponent { | ||||
| export default class PreferenceView extends BaseComponent { | ||||
| 	$sidebarContainer: Element; | ||||
| 	$settingsContainer: Element; | ||||
| 	nav: Nav; | ||||
| @@ -37,7 +35,7 @@ class PreferenceView extends BaseComponent { | ||||
| 		let nav = 'General'; | ||||
| 		const hasTag = window.location.hash; | ||||
| 		if (hasTag) { | ||||
| 			nav = hasTag.substring(1); | ||||
| 			nav = hasTag.slice(1); | ||||
| 		} | ||||
| 		this.handleNavigation(nav); | ||||
| 	} | ||||
| @@ -122,5 +120,3 @@ window.addEventListener('load', () => { | ||||
| 	const preferenceView = new PreferenceView(); | ||||
| 	preferenceView.init(); | ||||
| }); | ||||
|  | ||||
| export = PreferenceView; | ||||
|   | ||||
| @@ -1,15 +1,13 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { remote, ipcRenderer } from 'electron'; | ||||
|  | ||||
| import BaseComponent = require('../../components/base'); | ||||
| import DomainUtil = require('../../utils/domain-util'); | ||||
| import Messages = require('./../../../../resources/messages'); | ||||
| import t = require('../../utils/translation-util'); | ||||
| import BaseComponent from '../../components/base'; | ||||
| import * as DomainUtil from '../../utils/domain-util'; | ||||
| import * as Messages from '../../../../resources/messages'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| const { dialog } = remote; | ||||
|  | ||||
| class ServerInfoForm extends BaseComponent { | ||||
| export default class ServerInfoForm extends BaseComponent { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$serverInfoForm: Element; | ||||
| @@ -61,22 +59,21 @@ class ServerInfoForm extends BaseComponent { | ||||
| 	} | ||||
|  | ||||
| 	initActions(): void { | ||||
| 		this.$deleteServerButton.addEventListener('click', () => { | ||||
| 			dialog.showMessageBox({ | ||||
| 		this.$deleteServerButton.addEventListener('click', async () => { | ||||
| 			const { response } = await dialog.showMessageBox({ | ||||
| 				type: 'warning', | ||||
| 				buttons: [t.__('YES'), t.__('NO')], | ||||
| 				defaultId: 0, | ||||
| 				message: t.__('Are you sure you want to disconnect this organization?') | ||||
| 			}, response => { | ||||
| 				if (response === 0) { | ||||
| 					if (DomainUtil.removeDomain(this.props.index)) { | ||||
| 						ipcRenderer.send('reload-full-app'); | ||||
| 					} else { | ||||
| 						const { title, content } = Messages.orgRemovalError(DomainUtil.getDomain(this.props.index).url); | ||||
| 						dialog.showErrorBox(title, content); | ||||
| 					} | ||||
| 				} | ||||
| 			}); | ||||
| 			if (response === 0) { | ||||
| 				if (DomainUtil.removeDomain(this.props.index)) { | ||||
| 					ipcRenderer.send('reload-full-app'); | ||||
| 				} else { | ||||
| 					const { title, content } = Messages.orgRemovalError(DomainUtil.getDomain(this.props.index).url); | ||||
| 					dialog.showErrorBox(title, content); | ||||
| 				} | ||||
| 			} | ||||
| 		}); | ||||
|  | ||||
| 		this.$openServerButton.addEventListener('click', () => { | ||||
| @@ -92,5 +89,3 @@ class ServerInfoForm extends BaseComponent { | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ServerInfoForm; | ||||
|   | ||||
| @@ -1,10 +1,8 @@ | ||||
| 'use strict'; | ||||
| import BaseSection from './base-section'; | ||||
| import NewServerForm from './new-server-form'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| import BaseSection = require('./base-section'); | ||||
| import NewServerForm = require('./new-server-form'); | ||||
| import t = require('../../utils/translation-util'); | ||||
|  | ||||
| class ServersSection extends BaseSection { | ||||
| export default class ServersSection extends BaseSection { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	$newServerContainer: Element; | ||||
| @@ -46,5 +44,3 @@ class ServersSection extends BaseSection { | ||||
| 		}).init(); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ServersSection; | ||||
|   | ||||
| @@ -1,17 +1,15 @@ | ||||
| 'use strict'; | ||||
| import BaseSection from './base-section'; | ||||
| import * as LinkUtil from '../../utils/link-util'; | ||||
| import * as t from '../../utils/translation-util'; | ||||
|  | ||||
| import { shell } from 'electron'; | ||||
|  | ||||
| import BaseSection = require('./base-section'); | ||||
| import t = require('../../utils/translation-util'); | ||||
|  | ||||
| class ShortcutsSection extends BaseSection { | ||||
| export default class ShortcutsSection extends BaseSection { | ||||
| 	// TODO: TypeScript - Here props should be object type | ||||
| 	props: any; | ||||
| 	constructor(props: any) { | ||||
| 		super(); | ||||
| 		this.props = props; | ||||
| 	} | ||||
|  | ||||
| 	// TODO - Deduplicate templateMac and templateWinLin functions. In theory | ||||
| 	// they both should be the same the only thing different should be the userOSKey | ||||
| 	// variable but there seems to be inconsistences between both function, one has more | ||||
| @@ -330,16 +328,15 @@ class ShortcutsSection extends BaseSection { | ||||
|  | ||||
| 	openHotkeysExternalLink(): void { | ||||
| 		const link = 'https://zulipchat.com/help/keyboard-shortcuts'; | ||||
| 		const externalCreateNewOrgEl = document.querySelector('#open-hotkeys-link'); | ||||
| 		externalCreateNewOrgEl.addEventListener('click', () => { | ||||
| 			shell.openExternal(link); | ||||
| 		const externalCreateNewOrgElement = document.querySelector('#open-hotkeys-link'); | ||||
| 		externalCreateNewOrgElement.addEventListener('click', () => { | ||||
| 			LinkUtil.openBrowser(new URL(link)); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	init(): void { | ||||
| 		this.props.$root.innerHTML = (process.platform === 'darwin') ? | ||||
| 			this.templateMac() : this.templateWinLin(); | ||||
| 		this.openHotkeysExternalLink(); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ShortcutsSection; | ||||
|   | ||||
| @@ -1,39 +1,31 @@ | ||||
| 'use strict'; | ||||
| import { contextBridge, ipcRenderer, webFrame } from 'electron'; | ||||
| import fs from 'fs'; | ||||
| import * as SetupSpellChecker from './spellchecker'; | ||||
|  | ||||
| import { ipcRenderer, shell } from 'electron'; | ||||
| import SetupSpellChecker from './spellchecker'; | ||||
| import isDev from 'electron-is-dev'; | ||||
|  | ||||
| import LinkUtil = require('./utils/link-util'); | ||||
| import params = require('./utils/params-util'); | ||||
|  | ||||
| interface PatchedGlobal extends NodeJS.Global { | ||||
| 	logout: () => void; | ||||
| 	shortcut: () => void; | ||||
| } | ||||
|  | ||||
| const globalPatched = global as PatchedGlobal; | ||||
| import * as NetworkError from './pages/network'; | ||||
|  | ||||
| // eslint-disable-next-line import/no-unassigned-import | ||||
| require('./notification'); | ||||
| import './notification'; | ||||
|  | ||||
| // Prevent drag and drop event in main process which prevents remote code executaion | ||||
| require(__dirname + '/shared/preventdrag.js'); | ||||
| // eslint-disable-next-line import/no-unassigned-import | ||||
| import './shared/preventdrag'; | ||||
|  | ||||
| declare let window: ZulipWebWindow; | ||||
| import electron_bridge from './electron-bridge'; | ||||
| contextBridge.exposeInMainWorld('raw_electron_bridge', electron_bridge); | ||||
|  | ||||
| // eslint-disable-next-line @typescript-eslint/camelcase | ||||
| window.electron_bridge = require('./electron-bridge'); | ||||
|  | ||||
| const logout = (): void => { | ||||
| ipcRenderer.on('logout', () => { | ||||
| 	// Create the menu for the below | ||||
| 	const dropdown: HTMLElement = document.querySelector('.dropdown-toggle'); | ||||
| 	dropdown.click(); | ||||
|  | ||||
| 	const nodes: NodeListOf<HTMLElement> = document.querySelectorAll('.dropdown-menu li:last-child a'); | ||||
| 	nodes[nodes.length - 1].click(); | ||||
| }; | ||||
| }); | ||||
|  | ||||
| const shortcut = (): void => { | ||||
| ipcRenderer.on('shortcut', () => { | ||||
| 	// Create the menu for the below | ||||
| 	const node: HTMLElement = document.querySelector('a[data-overlay-trigger=keyboard-shortcuts]'); | ||||
| 	// Additional check | ||||
| @@ -44,49 +36,35 @@ const shortcut = (): void => { | ||||
| 		const dropdown: HTMLElement = document.querySelector('.dropdown-toggle'); | ||||
| 		dropdown.click(); | ||||
| 	} | ||||
| }; | ||||
|  | ||||
| process.once('loaded', (): void => { | ||||
| 	globalPatched.logout = logout; | ||||
| 	globalPatched.shortcut = shortcut; | ||||
| }); | ||||
|  | ||||
| // To prevent failing this script on linux we need to load it after the document loaded | ||||
| document.addEventListener('DOMContentLoaded', (): void => { | ||||
| 	if (params.isPageParams()) { | ||||
| ipcRenderer.on('show-notification-settings', () => { | ||||
| 	// Create the menu for the below | ||||
| 	const dropdown: HTMLElement = document.querySelector('.dropdown-toggle'); | ||||
| 	dropdown.click(); | ||||
|  | ||||
| 	const nodes: NodeListOf<HTMLElement> = document.querySelectorAll('.dropdown-menu li a'); | ||||
| 	nodes[2].click(); | ||||
|  | ||||
| 	const notificationItem: NodeListOf<HTMLElement> = document.querySelectorAll('.normal-settings-list li div'); | ||||
|  | ||||
| 	// wait until the notification dom element shows up | ||||
| 	setTimeout(() => { | ||||
| 		notificationItem[2].click(); | ||||
| 	}, 100); | ||||
| }); | ||||
|  | ||||
| electron_bridge.once('zulip-loaded', ({ serverLanguage }) => { | ||||
| 	// Get the default language of the server | ||||
| 		const serverLanguage = page_params.default_language; // eslint-disable-line no-undef, @typescript-eslint/camelcase | ||||
| 		if (serverLanguage) { | ||||
| 			// Init spellchecker | ||||
| 			SetupSpellChecker.init(serverLanguage); | ||||
| 		} | ||||
| 		// redirect users to network troubleshooting page | ||||
| 		const getRestartButton = document.querySelector('.restart_get_events_button'); | ||||
| 		if (getRestartButton) { | ||||
| 			getRestartButton.addEventListener('click', () => { | ||||
| 				ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 			}); | ||||
| 		} | ||||
| 		// Open image attachment link in the lightbox instead of opening in the default browser | ||||
| 		const { $, lightbox } = window; | ||||
| 		$('#main_div').on('click', '.message_content p a', function (this: HTMLElement, e: Event) { | ||||
| 			const url = $(this).attr('href'); | ||||
|  | ||||
| 			if (LinkUtil.isImage(url)) { | ||||
| 				const $img = $(this).parent().siblings('.message_inline_image').find('img'); | ||||
|  | ||||
| 				// prevent the image link from opening in a new page. | ||||
| 				e.preventDefault(); | ||||
| 				// prevent the message compose dialog from happening. | ||||
| 				e.stopPropagation(); | ||||
|  | ||||
| 				// Open image in the default browser if image preview is unavailable | ||||
| 				if (!$img[0]) { | ||||
| 					shell.openExternal(window.location.origin + url); | ||||
| 				} | ||||
| 				// Open image in lightbox | ||||
| 				lightbox.open($img); | ||||
| 			} | ||||
| 	if (serverLanguage) { | ||||
| 		// Init spellchecker | ||||
| 		SetupSpellChecker.init(serverLanguage); | ||||
| 	} | ||||
| 	// redirect users to network troubleshooting page | ||||
| 	const getRestartButton = document.querySelector('.restart_get_events_button'); | ||||
| 	if (getRestartButton) { | ||||
| 		getRestartButton.addEventListener('click', () => { | ||||
| 			ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 		}); | ||||
| 	} | ||||
| }); | ||||
| @@ -97,6 +75,15 @@ window.addEventListener('beforeunload', (): void => { | ||||
| 	SetupSpellChecker.unsubscribeSpellChecker(); | ||||
| }); | ||||
|  | ||||
| window.addEventListener('load', (event: any): void => { | ||||
| 	if (!event.target.URL.includes('app/renderer/network.html')) { | ||||
| 		return; | ||||
| 	} | ||||
| 	const $reconnectButton = document.querySelector('#reconnect'); | ||||
| 	const $settingsButton = document.querySelector('#settings'); | ||||
| 	NetworkError.init($reconnectButton, $settingsButton); | ||||
| }); | ||||
|  | ||||
| // electron's globalShortcut can cause unexpected results | ||||
| // so adding the reload shortcut in the old-school way | ||||
| // Zoom from numpad keys is not supported by electron, so adding it through listeners. | ||||
| @@ -112,3 +99,24 @@ document.addEventListener('keydown', event => { | ||||
| 		ipcRenderer.send('forward-message', 'zoomActualSize'); | ||||
| 	} | ||||
| }); | ||||
|  | ||||
| // Set user as active and update the time of last activity | ||||
| ipcRenderer.on('set-active', () => { | ||||
| 	if (isDev) { | ||||
| 		console.log('active'); | ||||
| 	} | ||||
| 	electron_bridge.idle_on_system = false; | ||||
| 	electron_bridge.last_active_on_system = Date.now(); | ||||
| }); | ||||
|  | ||||
| // Set user as idle and time of last activity is left unchanged | ||||
| ipcRenderer.on('set-idle', () => { | ||||
| 	if (isDev) { | ||||
| 		console.log('idle'); | ||||
| 	} | ||||
| 	electron_bridge.idle_on_system = true; | ||||
| }); | ||||
|  | ||||
| webFrame.executeJavaScript( | ||||
| 	fs.readFileSync(require.resolve('./injected'), 'utf8') | ||||
| ); | ||||
|   | ||||
| @@ -1,5 +1,3 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| // This is a security fix. Following function prevents drag and drop event in the app | ||||
| // so that attackers can't execute any remote code within the app | ||||
| // It doesn't affect the compose box so that users can still | ||||
| @@ -15,3 +13,5 @@ const preventDragAndDrop = (): void => { | ||||
| }; | ||||
|  | ||||
| preventDragAndDrop(); | ||||
|  | ||||
| export {}; | ||||
|   | ||||
| @@ -1,56 +1,59 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import type { Subject } from 'rxjs'; | ||||
| import { SpellCheckHandler, ContextMenuListener, ContextMenuBuilder } from 'electron-spellchecker'; | ||||
|  | ||||
| import ConfigUtil = require('./utils/config-util'); | ||||
| import Logger = require('./utils/logger-util'); | ||||
| import * as ConfigUtil from './utils/config-util'; | ||||
| import Logger from './utils/logger-util'; | ||||
|  | ||||
| declare module 'electron-spellchecker' { | ||||
| 	interface SpellCheckHandler { | ||||
| 		currentSpellcheckerChanged: Subject<true>; | ||||
| 		currentSpellcheckerLanguage: string; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'errors.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| class SetupSpellChecker { | ||||
| 	SpellCheckHandler: typeof SpellCheckHandler; | ||||
| 	contextMenuListener: typeof ContextMenuListener; | ||||
| 	init(serverLanguage: string): void { | ||||
| 		if (ConfigUtil.getConfigItem('enableSpellchecker')) { | ||||
| 			this.enableSpellChecker(); | ||||
| 		} | ||||
| 		this.enableContextMenu(serverLanguage); | ||||
| let spellCheckHandler: SpellCheckHandler; | ||||
| let contextMenuListener: ContextMenuListener; | ||||
|  | ||||
| export function init(serverLanguage: string): void { | ||||
| 	if (ConfigUtil.getConfigItem('enableSpellchecker')) { | ||||
| 		enableSpellChecker(); | ||||
| 	} | ||||
| 	enableContextMenu(serverLanguage); | ||||
| } | ||||
|  | ||||
| 	enableSpellChecker(): void { | ||||
| 		try { | ||||
| 			this.SpellCheckHandler = new SpellCheckHandler(); | ||||
| 		} catch (err) { | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	enableContextMenu(serverLanguage: string): void { | ||||
| 		if (this.SpellCheckHandler) { | ||||
| 			this.SpellCheckHandler.attachToInput(); | ||||
| 			this.SpellCheckHandler.switchLanguage(serverLanguage); | ||||
| 			this.SpellCheckHandler.currentSpellcheckerChanged.subscribe(() => { | ||||
| 				this.SpellCheckHandler.switchLanguage(this.SpellCheckHandler.currentSpellcheckerLanguage); | ||||
| 			}); | ||||
| 		} | ||||
|  | ||||
| 		const contextMenuBuilder = new ContextMenuBuilder(this.SpellCheckHandler); | ||||
| 		this.contextMenuListener = new ContextMenuListener((info: object) => { | ||||
| 			contextMenuBuilder.showPopupMenu(info); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	unsubscribeSpellChecker(): void { | ||||
| 		if (this.SpellCheckHandler) { | ||||
| 			this.SpellCheckHandler.unsubscribe(); | ||||
| 		} | ||||
| 		if (this.contextMenuListener) { | ||||
| 			this.contextMenuListener.unsubscribe(); | ||||
| 		} | ||||
| function enableSpellChecker(): void { | ||||
| 	try { | ||||
| 		spellCheckHandler = new SpellCheckHandler(); | ||||
| 	} catch (err) { | ||||
| 		logger.error(err); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new SetupSpellChecker(); | ||||
| function enableContextMenu(serverLanguage: string): void { | ||||
| 	if (spellCheckHandler) { | ||||
| 		spellCheckHandler.attachToInput(); | ||||
| 		spellCheckHandler.switchLanguage(serverLanguage); | ||||
| 		spellCheckHandler.currentSpellcheckerChanged.subscribe(() => { | ||||
| 			spellCheckHandler.switchLanguage(spellCheckHandler.currentSpellcheckerLanguage); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	const contextMenuBuilder = new ContextMenuBuilder(spellCheckHandler); | ||||
| 	contextMenuListener = new ContextMenuListener(info => { | ||||
| 		contextMenuBuilder.showPopupMenu(info); | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| export function unsubscribeSpellChecker(): void { | ||||
| 	if (spellCheckHandler) { | ||||
| 		spellCheckHandler.unsubscribe(); | ||||
| 	} | ||||
| 	if (contextMenuListener) { | ||||
| 		contextMenuListener.unsubscribe(); | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -1,13 +1,20 @@ | ||||
| 'use strict'; | ||||
| import { ipcRenderer, remote, WebviewTag, NativeImage } from 'electron'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import ConfigUtil = require('./utils/config-util.js'); | ||||
| const { Tray, Menu, nativeImage, BrowserWindow } = remote; | ||||
| import path from 'path'; | ||||
| import * as ConfigUtil from './utils/config-util'; | ||||
|  | ||||
| const APP_ICON = path.join(__dirname, '../../resources/tray', 'tray'); | ||||
| const { Tray, Menu, nativeImage, BrowserWindow, nativeTheme } = remote; | ||||
|  | ||||
| declare let window: ZulipWebWindow; | ||||
| let tray: Electron.Tray; | ||||
|  | ||||
| // get the theme on macOS | ||||
| const theme = nativeTheme.shouldUseDarkColors ? 'dark' : 'light'; | ||||
|  | ||||
| const ICON_DIR = process.platform === 'darwin' ? `../../resources/tray/${theme}` : '../../resources/tray'; | ||||
|  | ||||
| const TRAY_SUFFIX = 'tray'; | ||||
|  | ||||
| const APP_ICON = path.join(__dirname, ICON_DIR, TRAY_SUFFIX); | ||||
|  | ||||
| const iconPath = (): string => { | ||||
| 	if (process.platform === 'linux') { | ||||
| @@ -43,69 +50,59 @@ const config = { | ||||
| 	thick: process.platform === 'win32' | ||||
| }; | ||||
|  | ||||
| const renderCanvas = function (arg: number): Promise<HTMLCanvasElement> { | ||||
| const renderCanvas = function (arg: number): HTMLCanvasElement { | ||||
| 	config.unreadCount = arg; | ||||
|  | ||||
| 	return new Promise(resolve => { | ||||
| 		const SIZE = config.size * config.pixelRatio; | ||||
| 		const PADDING = SIZE * 0.05; | ||||
| 		const CENTER = SIZE / 2; | ||||
| 		const HAS_COUNT = config.showUnreadCount && config.unreadCount; | ||||
| 		const color = config.unreadCount ? config.unreadColor : config.readColor; | ||||
| 		const backgroundColor = config.unreadCount ? config.unreadBackgroundColor : config.readBackgroundColor; | ||||
| 	const SIZE = config.size * config.pixelRatio; | ||||
| 	const PADDING = SIZE * 0.05; | ||||
| 	const CENTER = SIZE / 2; | ||||
| 	const HAS_COUNT = config.showUnreadCount && config.unreadCount; | ||||
| 	const color = config.unreadCount ? config.unreadColor : config.readColor; | ||||
| 	const backgroundColor = config.unreadCount ? config.unreadBackgroundColor : config.readBackgroundColor; | ||||
|  | ||||
| 		const canvas = document.createElement('canvas'); | ||||
| 		canvas.width = SIZE; | ||||
| 		canvas.height = SIZE; | ||||
| 		const ctx = canvas.getContext('2d'); | ||||
| 	const canvas = document.createElement('canvas'); | ||||
| 	canvas.width = SIZE; | ||||
| 	canvas.height = SIZE; | ||||
| 	const ctx = canvas.getContext('2d'); | ||||
|  | ||||
| 		// Circle | ||||
| 		// If (!config.thick || config.thick && HAS_COUNT) { | ||||
| 		ctx.beginPath(); | ||||
| 		ctx.arc(CENTER, CENTER, (SIZE / 2) - PADDING, 0, 2 * Math.PI, false); | ||||
| 		ctx.fillStyle = backgroundColor; | ||||
| 		ctx.fill(); | ||||
| 		ctx.lineWidth = SIZE / (config.thick ? 10 : 20); | ||||
| 		ctx.strokeStyle = backgroundColor; | ||||
| 		ctx.stroke(); | ||||
| 		// Count or Icon | ||||
| 		if (HAS_COUNT) { | ||||
| 			ctx.fillStyle = color; | ||||
| 			ctx.textAlign = 'center'; | ||||
| 			if (config.unreadCount > 99) { | ||||
| 				ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.4}px Helvetica`; | ||||
| 				ctx.fillText('99+', CENTER, CENTER + (SIZE * 0.15)); | ||||
| 			} else if (config.unreadCount < 10) { | ||||
| 				ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.5}px Helvetica`; | ||||
| 				ctx.fillText(String(config.unreadCount), CENTER, CENTER + (SIZE * 0.20)); | ||||
| 			} else { | ||||
| 				ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.5}px Helvetica`; | ||||
| 				ctx.fillText(String(config.unreadCount), CENTER, CENTER + (SIZE * 0.15)); | ||||
| 			} | ||||
|  | ||||
| 			resolve(canvas); | ||||
| 	// Circle | ||||
| 	// If (!config.thick || config.thick && HAS_COUNT) { | ||||
| 	ctx.beginPath(); | ||||
| 	ctx.arc(CENTER, CENTER, (SIZE / 2) - PADDING, 0, 2 * Math.PI, false); | ||||
| 	ctx.fillStyle = backgroundColor; | ||||
| 	ctx.fill(); | ||||
| 	ctx.lineWidth = SIZE / (config.thick ? 10 : 20); | ||||
| 	ctx.strokeStyle = backgroundColor; | ||||
| 	ctx.stroke(); | ||||
| 	// Count or Icon | ||||
| 	if (HAS_COUNT) { | ||||
| 		ctx.fillStyle = color; | ||||
| 		ctx.textAlign = 'center'; | ||||
| 		if (config.unreadCount > 99) { | ||||
| 			ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.4}px Helvetica`; | ||||
| 			ctx.fillText('99+', CENTER, CENTER + (SIZE * 0.15)); | ||||
| 		} else if (config.unreadCount < 10) { | ||||
| 			ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.5}px Helvetica`; | ||||
| 			ctx.fillText(String(config.unreadCount), CENTER, CENTER + (SIZE * 0.2)); | ||||
| 		} else { | ||||
| 			ctx.font = `${config.thick ? 'bold ' : ''}${SIZE * 0.5}px Helvetica`; | ||||
| 			ctx.fillText(String(config.unreadCount), CENTER, CENTER + (SIZE * 0.15)); | ||||
| 		} | ||||
| 	}); | ||||
| 	} | ||||
|  | ||||
| 	return canvas; | ||||
| }; | ||||
| /** | ||||
|  * Renders the tray icon as a native image | ||||
|  * @param arg: Unread count | ||||
|  * @return the native image | ||||
|  */ | ||||
| const renderNativeImage = function (arg: number): Promise<NativeImage> { | ||||
| 	return Promise.resolve() | ||||
| 		.then(() => renderCanvas(arg)) | ||||
| 		.then(canvas => { | ||||
| 			const pngData = nativeImage.createFromDataURL(canvas.toDataURL('image/png')).toPNG(); | ||||
|  | ||||
| 			// TODO: Fix the function to correctly use Promise correctly. | ||||
| 			// the Promise.resolve().then(...) above is useless we should | ||||
| 			// start with renderCanvas(arg).then | ||||
| 			// eslint-disable-next-line promise/no-return-wrap | ||||
| 			return Promise.resolve(nativeImage.createFromBuffer(pngData, { | ||||
| 				scaleFactor: config.pixelRatio | ||||
| 			})); | ||||
| 		}); | ||||
| const renderNativeImage = function (arg: number): NativeImage { | ||||
| 	const canvas = renderCanvas(arg); | ||||
| 	const pngData = nativeImage.createFromDataURL(canvas.toDataURL('image/png')).toPNG(); | ||||
| 	return nativeImage.createFromBuffer(pngData, { | ||||
| 		scaleFactor: config.pixelRatio | ||||
| 	}); | ||||
| }; | ||||
|  | ||||
| function sendAction(action: string): void { | ||||
| @@ -119,7 +116,6 @@ function sendAction(action: string): void { | ||||
| } | ||||
|  | ||||
| const createTray = function (): void { | ||||
| 	window.tray = new Tray(iconPath()); | ||||
| 	const contextMenu = Menu.buildFromTemplate([ | ||||
| 		{ | ||||
| 			label: 'Zulip', | ||||
| @@ -144,22 +140,23 @@ const createTray = function (): void { | ||||
| 			} | ||||
| 		} | ||||
| 	]); | ||||
| 	window.tray.setContextMenu(contextMenu); | ||||
| 	tray = new Tray(iconPath()); | ||||
| 	tray.setContextMenu(contextMenu); | ||||
| 	if (process.platform === 'linux' || process.platform === 'win32') { | ||||
| 		window.tray.on('click', () => { | ||||
| 		tray.on('click', () => { | ||||
| 			ipcRenderer.send('toggle-app'); | ||||
| 		}); | ||||
| 	} | ||||
| }; | ||||
|  | ||||
| ipcRenderer.on('destroytray', (event: Event): Event => { | ||||
| 	if (!window.tray) { | ||||
| 	if (!tray) { | ||||
| 		return undefined; | ||||
| 	} | ||||
|  | ||||
| 	window.tray.destroy(); | ||||
| 	if (window.tray.isDestroyed()) { | ||||
| 		window.tray = null; | ||||
| 	tray.destroy(); | ||||
| 	if (tray.isDestroyed()) { | ||||
| 		tray = null; | ||||
| 	} else { | ||||
| 		throw new Error('Tray icon not properly destroyed.'); | ||||
| 	} | ||||
| @@ -168,42 +165,40 @@ ipcRenderer.on('destroytray', (event: Event): Event => { | ||||
| }); | ||||
|  | ||||
| ipcRenderer.on('tray', (_event: Event, arg: number): void => { | ||||
| 	if (!window.tray) { | ||||
| 	if (!tray) { | ||||
| 		return; | ||||
| 	} | ||||
| 	// We don't want to create tray from unread messages on macOS since it already has dock badges. | ||||
| 	if (process.platform === 'linux' || process.platform === 'win32') { | ||||
| 		if (arg === 0) { | ||||
| 			unread = arg; | ||||
| 			window.tray.setImage(iconPath()); | ||||
| 			window.tray.setToolTip('No unread messages'); | ||||
| 			tray.setImage(iconPath()); | ||||
| 			tray.setToolTip('No unread messages'); | ||||
| 		} else { | ||||
| 			unread = arg; | ||||
| 			renderNativeImage(arg).then(image => { | ||||
| 				window.tray.setImage(image); | ||||
| 				window.tray.setToolTip(arg + ' unread messages'); | ||||
| 			}); | ||||
| 			const image = renderNativeImage(arg); | ||||
| 			tray.setImage(image); | ||||
| 			tray.setToolTip(arg + ' unread messages'); | ||||
| 		} | ||||
| 	} | ||||
| }); | ||||
|  | ||||
| function toggleTray(): void { | ||||
| 	let state; | ||||
| 	if (window.tray) { | ||||
| 	if (tray) { | ||||
| 		state = false; | ||||
| 		window.tray.destroy(); | ||||
| 		if (window.tray.isDestroyed()) { | ||||
| 			window.tray = null; | ||||
| 		tray.destroy(); | ||||
| 		if (tray.isDestroyed()) { | ||||
| 			tray = null; | ||||
| 		} | ||||
| 		ConfigUtil.setConfigItem('trayIcon', false); | ||||
| 	} else { | ||||
| 		state = true; | ||||
| 		createTray(); | ||||
| 		if (process.platform === 'linux' || process.platform === 'win32') { | ||||
| 			renderNativeImage(unread).then(image => { | ||||
| 				window.tray.setImage(image); | ||||
| 				window.tray.setToolTip(unread + ' unread messages'); | ||||
| 			}); | ||||
| 			const image = renderNativeImage(unread); | ||||
| 			tray.setImage(image); | ||||
| 			tray.setToolTip(unread + ' unread messages'); | ||||
| 		} | ||||
| 		ConfigUtil.setConfigItem('trayIcon', true); | ||||
| 	} | ||||
| @@ -218,3 +213,5 @@ ipcRenderer.on('toggletray', toggleTray); | ||||
| if (ConfigUtil.getConfigItem('trayIcon', true)) { | ||||
| 	createTray(); | ||||
| } | ||||
|  | ||||
| export {}; | ||||
|   | ||||
| @@ -1,96 +1,80 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import { remote } from 'electron'; | ||||
| import JsonDB from 'node-json-db'; | ||||
| import { JsonDB } from 'node-json-db'; | ||||
| import { initSetUp } from './default-util'; | ||||
|  | ||||
| import fs = require('fs'); | ||||
| import path = require('path'); | ||||
| import Logger = require('./logger-util'); | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
| import Logger from './logger-util'; | ||||
|  | ||||
| const { app, dialog } = remote; | ||||
|  | ||||
| initSetUp(); | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: `certificate-util.log`, | ||||
| 	file: 'certificate-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| let instance: null | CertificateUtil = null; | ||||
| const certificatesDir = `${app.getPath('userData')}/certificates`; | ||||
|  | ||||
| class CertificateUtil { | ||||
| 	db: JsonDB; | ||||
| let db: JsonDB; | ||||
|  | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
| reloadDB(); | ||||
|  | ||||
| 		this.reloadDB(); | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	getCertificate(server: string, defaultValue: any = null): any { | ||||
| 		this.reloadDB(); | ||||
| 		const value = this.db.getData('/')[server]; | ||||
| 		if (value === undefined) { | ||||
| 			return defaultValue; | ||||
| 		} else { | ||||
| 			return value; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// Function to copy the certificate to userData folder | ||||
| 	copyCertificate(_server: string, location: string, fileName: string): boolean { | ||||
| 		let copied = false; | ||||
| 		const filePath = `${certificatesDir}/${fileName}`; | ||||
| 		try { | ||||
| 			fs.copyFileSync(location, filePath); | ||||
| 			copied = true; | ||||
| 		} catch (err) { | ||||
| 			dialog.showErrorBox( | ||||
| 				'Error saving certificate', | ||||
| 				'We encountered error while saving the certificate.' | ||||
| 			); | ||||
| 			logger.error('Error while copying the certificate to certificates folder.'); | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 		return copied; | ||||
| 	} | ||||
|  | ||||
| 	setCertificate(server: string, fileName: string): void { | ||||
| 		const filePath = `${certificatesDir}/${fileName}`; | ||||
| 		this.db.push(`/${server}`, filePath, true); | ||||
| 		this.reloadDB(); | ||||
| 	} | ||||
|  | ||||
| 	removeCertificate(server: string): void { | ||||
| 		this.db.delete(`/${server}`); | ||||
| 		this.reloadDB(); | ||||
| 	} | ||||
|  | ||||
| 	reloadDB(): void { | ||||
| 		const settingsJsonPath = path.join(app.getPath('userData'), '/config/certificates.json'); | ||||
| 		try { | ||||
| 			const file = fs.readFileSync(settingsJsonPath, 'utf8'); | ||||
| 			JSON.parse(file); | ||||
| 		} catch (err) { | ||||
| 			if (fs.existsSync(settingsJsonPath)) { | ||||
| 				fs.unlinkSync(settingsJsonPath); | ||||
| 				dialog.showErrorBox( | ||||
| 					'Error saving settings', | ||||
| 					'We encountered error while saving the certificate.' | ||||
| 				); | ||||
| 				logger.error('Error while JSON parsing certificates.json: '); | ||||
| 				logger.error(err); | ||||
| 			} | ||||
| 		} | ||||
| 		this.db = new JsonDB(settingsJsonPath, true, true); | ||||
| export function getCertificate(server: string, defaultValue: any = null): any { | ||||
| 	reloadDB(); | ||||
| 	const value = db.getData('/')[server]; | ||||
| 	if (value === undefined) { | ||||
| 		return defaultValue; | ||||
| 	} else { | ||||
| 		return value; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new CertificateUtil(); | ||||
| // Function to copy the certificate to userData folder | ||||
| export function copyCertificate(_server: string, location: string, fileName: string): boolean { | ||||
| 	let copied = false; | ||||
| 	const filePath = `${certificatesDir}/${fileName}`; | ||||
| 	try { | ||||
| 		fs.copyFileSync(location, filePath); | ||||
| 		copied = true; | ||||
| 	} catch (err) { | ||||
| 		dialog.showErrorBox( | ||||
| 			'Error saving certificate', | ||||
| 			'We encountered error while saving the certificate.' | ||||
| 		); | ||||
| 		logger.error('Error while copying the certificate to certificates folder.'); | ||||
| 		logger.error(err); | ||||
| 	} | ||||
| 	return copied; | ||||
| } | ||||
|  | ||||
| export function setCertificate(server: string, fileName: string): void { | ||||
| 	const filePath = `${fileName}`; | ||||
| 	db.push(`/${server}`, filePath, true); | ||||
| 	reloadDB(); | ||||
| } | ||||
|  | ||||
| export function removeCertificate(server: string): void { | ||||
| 	db.delete(`/${server}`); | ||||
| 	reloadDB(); | ||||
| } | ||||
|  | ||||
| function reloadDB(): void { | ||||
| 	const settingsJsonPath = path.join(app.getPath('userData'), '/config/certificates.json'); | ||||
| 	try { | ||||
| 		const file = fs.readFileSync(settingsJsonPath, 'utf8'); | ||||
| 		JSON.parse(file); | ||||
| 	} catch (err) { | ||||
| 		if (fs.existsSync(settingsJsonPath)) { | ||||
| 			fs.unlinkSync(settingsJsonPath); | ||||
| 			dialog.showErrorBox( | ||||
| 				'Error saving settings', | ||||
| 				'We encountered error while saving the certificate.' | ||||
| 			); | ||||
| 			logger.error('Error while JSON parsing certificates.json: '); | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 	} | ||||
| 	db = new JsonDB(settingsJsonPath, true, true); | ||||
| } | ||||
|   | ||||
| @@ -1,25 +1,8 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| let instance: null | CommonUtil = null; | ||||
|  | ||||
| class CommonUtil { | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	// unescape already encoded/escaped strings | ||||
| 	decodeString(stringInput: string): string { | ||||
| 		const parser = new DOMParser(); | ||||
| 		const dom = parser.parseFromString( | ||||
| 			'<!doctype html><body>' + stringInput, | ||||
| 			'text/html'); | ||||
| 		return dom.body.textContent; | ||||
| 	} | ||||
| // unescape already encoded/escaped strings | ||||
| export function decodeString(stringInput: string): string { | ||||
| 	const parser = new DOMParser(); | ||||
| 	const dom = parser.parseFromString( | ||||
| 		'<!doctype html><body>' + stringInput, | ||||
| 		'text/html'); | ||||
| 	return dom.body.textContent; | ||||
| } | ||||
|  | ||||
| export = new CommonUtil(); | ||||
|   | ||||
| @@ -1,18 +1,16 @@ | ||||
| 'use strict'; | ||||
| import JsonDB from 'node-json-db'; | ||||
| import { JsonDB } from 'node-json-db'; | ||||
|  | ||||
| import fs = require('fs'); | ||||
| import path = require('path'); | ||||
| import electron = require('electron'); | ||||
| import Logger = require('./logger-util'); | ||||
| import EnterpriseUtil = require('./enterprise-util'); | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
| import electron from 'electron'; | ||||
| import Logger from './logger-util'; | ||||
| import * as EnterpriseUtil from './enterprise-util'; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'config-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| let instance: null | ConfigUtil = null; | ||||
| let dialog: Electron.Dialog = null; | ||||
| let app: Electron.App = null; | ||||
|  | ||||
| @@ -26,81 +24,68 @@ if (process.type === 'renderer') { | ||||
| 	app = electron.app; | ||||
| } | ||||
|  | ||||
| class ConfigUtil { | ||||
| 	db: JsonDB; | ||||
| let db: JsonDB; | ||||
|  | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
| reloadDB(); | ||||
|  | ||||
| 		this.reloadDB(); | ||||
| 		return instance; | ||||
| export function getConfigItem(key: string, defaultValue: any = null): any { | ||||
| 	try { | ||||
| 		db.reload(); | ||||
| 	} catch (err) { | ||||
| 		logger.error('Error while reloading settings.json: '); | ||||
| 		logger.error(err); | ||||
| 	} | ||||
|  | ||||
| 	getConfigItem(key: string, defaultValue: any = null): any { | ||||
| 		try { | ||||
| 			this.db.reload(); | ||||
| 		} catch (err) { | ||||
| 			logger.error('Error while reloading settings.json: '); | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 		const value = this.db.getData('/')[key]; | ||||
| 		if (value === undefined) { | ||||
| 			this.setConfigItem(key, defaultValue); | ||||
| 			return defaultValue; | ||||
| 		} else { | ||||
| 			return value; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// This function returns whether a key exists in the configuration file (settings.json) | ||||
| 	isConfigItemExists(key: string): boolean { | ||||
| 		try { | ||||
| 			this.db.reload(); | ||||
| 		} catch (err) { | ||||
| 			logger.error('Error while reloading settings.json: '); | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 		const value = this.db.getData('/')[key]; | ||||
| 		return (value !== undefined); | ||||
| 	} | ||||
|  | ||||
| 	setConfigItem(key: string, value: any, override? : boolean): void { | ||||
| 		if (EnterpriseUtil.configItemExists(key) && !override) { | ||||
| 			// if item is in global config and we're not trying to override | ||||
| 			return; | ||||
| 		} | ||||
| 		this.db.push(`/${key}`, value, true); | ||||
| 		this.db.save(); | ||||
| 	} | ||||
|  | ||||
| 	removeConfigItem(key: string): void { | ||||
| 		this.db.delete(`/${key}`); | ||||
| 		this.db.save(); | ||||
| 	} | ||||
|  | ||||
| 	reloadDB(): void { | ||||
| 		const settingsJsonPath = path.join(app.getPath('userData'), '/config/settings.json'); | ||||
| 		try { | ||||
| 			const file = fs.readFileSync(settingsJsonPath, 'utf8'); | ||||
| 			JSON.parse(file); | ||||
| 		} catch (err) { | ||||
| 			if (fs.existsSync(settingsJsonPath)) { | ||||
| 				fs.unlinkSync(settingsJsonPath); | ||||
| 				dialog.showErrorBox( | ||||
| 					'Error saving settings', | ||||
| 					'We encountered an error while saving the settings.' | ||||
| 				); | ||||
| 				logger.error('Error while JSON parsing settings.json: '); | ||||
| 				logger.error(err); | ||||
| 				logger.reportSentry(err); | ||||
| 			} | ||||
| 		} | ||||
| 		this.db = new JsonDB(settingsJsonPath, true, true); | ||||
| 	const value = db.getData('/')[key]; | ||||
| 	if (value === undefined) { | ||||
| 		setConfigItem(key, defaultValue); | ||||
| 		return defaultValue; | ||||
| 	} else { | ||||
| 		return value; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new ConfigUtil(); | ||||
| // This function returns whether a key exists in the configuration file (settings.json) | ||||
| export function isConfigItemExists(key: string): boolean { | ||||
| 	try { | ||||
| 		db.reload(); | ||||
| 	} catch (err) { | ||||
| 		logger.error('Error while reloading settings.json: '); | ||||
| 		logger.error(err); | ||||
| 	} | ||||
| 	const value = db.getData('/')[key]; | ||||
| 	return (value !== undefined); | ||||
| } | ||||
|  | ||||
| export function setConfigItem(key: string, value: any, override? : boolean): void { | ||||
| 	if (EnterpriseUtil.configItemExists(key) && !override) { | ||||
| 		// if item is in global config and we're not trying to override | ||||
| 		return; | ||||
| 	} | ||||
| 	db.push(`/${key}`, value, true); | ||||
| 	db.save(); | ||||
| } | ||||
|  | ||||
| export function removeConfigItem(key: string): void { | ||||
| 	db.delete(`/${key}`); | ||||
| 	db.save(); | ||||
| } | ||||
|  | ||||
| function reloadDB(): void { | ||||
| 	const settingsJsonPath = path.join(app.getPath('userData'), '/config/settings.json'); | ||||
| 	try { | ||||
| 		const file = fs.readFileSync(settingsJsonPath, 'utf8'); | ||||
| 		JSON.parse(file); | ||||
| 	} catch (err) { | ||||
| 		if (fs.existsSync(settingsJsonPath)) { | ||||
| 			fs.unlinkSync(settingsJsonPath); | ||||
| 			dialog.showErrorBox( | ||||
| 				'Error saving settings', | ||||
| 				'We encountered an error while saving the settings.' | ||||
| 			); | ||||
| 			logger.error('Error while JSON parsing settings.json: '); | ||||
| 			logger.error(err); | ||||
| 			logger.reportSentry(err); | ||||
| 		} | ||||
| 	} | ||||
| 	db = new JsonDB(settingsJsonPath, true, true); | ||||
| } | ||||
|   | ||||
| @@ -1,11 +1,12 @@ | ||||
| import fs = require('fs'); | ||||
| import electron from 'electron'; | ||||
| import fs from 'fs'; | ||||
|  | ||||
| let app: Electron.App = null; | ||||
| let setupCompleted = false; | ||||
| if (process.type === 'renderer') { | ||||
| 	app = require('electron').remote.app; | ||||
| 	app = electron.remote.app; | ||||
| } else { | ||||
| 	app = require('electron').app; | ||||
| 	app = electron.app; | ||||
| } | ||||
|  | ||||
| const zulipDir = app.getPath('userData'); | ||||
| @@ -41,19 +42,19 @@ export const initSetUp = (): void => { | ||||
| 			const configData = [ | ||||
| 				{ | ||||
| 					path: domainJson, | ||||
| 					fileName: `domain.json` | ||||
| 					fileName: 'domain.json' | ||||
| 				}, | ||||
| 				{ | ||||
| 					path: certificatesJson, | ||||
| 					fileName: `certificates.json` | ||||
| 					fileName: 'certificates.json' | ||||
| 				}, | ||||
| 				{ | ||||
| 					path: settingsJson, | ||||
| 					fileName: `settings.json` | ||||
| 					fileName: 'settings.json' | ||||
| 				}, | ||||
| 				{ | ||||
| 					path: updatesJson, | ||||
| 					fileName: `updates.json` | ||||
| 					fileName: 'updates.json' | ||||
| 				} | ||||
| 			]; | ||||
| 			configData.forEach(data => { | ||||
|   | ||||
| @@ -1,6 +1,4 @@ | ||||
| 'use strict'; | ||||
|  | ||||
| import ConfigUtil = require('./config-util'); | ||||
| import * as ConfigUtil from './config-util'; | ||||
|  | ||||
| // TODO: TypeScript - add to Setting interface | ||||
| // the list of settings since we have fixed amount of them | ||||
|   | ||||
| @@ -1,318 +1,307 @@ | ||||
| 'use strict'; | ||||
| import JsonDB from 'node-json-db'; | ||||
| import { JsonDB } from 'node-json-db'; | ||||
|  | ||||
| import escape = require('escape-html'); | ||||
| import request = require('request'); | ||||
| import fs = require('fs'); | ||||
| import path = require('path'); | ||||
| import Logger = require('./logger-util'); | ||||
| import electron = require('electron'); | ||||
| import escape from 'escape-html'; | ||||
| import request from 'request'; | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
| import Logger from './logger-util'; | ||||
| import { ipcRenderer, remote } from 'electron'; | ||||
|  | ||||
| import RequestUtil = require('./request-util'); | ||||
| import EnterpriseUtil = require('./enterprise-util'); | ||||
| import Messages = require('../../../resources/messages'); | ||||
| import * as RequestUtil from './request-util'; | ||||
| import * as EnterpriseUtil from './enterprise-util'; | ||||
| import * as Messages from '../../../resources/messages'; | ||||
|  | ||||
| const { app, dialog } = electron.remote; | ||||
| const { app, dialog } = remote; | ||||
|  | ||||
| interface ServerConf { | ||||
| 	url: string; | ||||
| 	alias?: string; | ||||
| 	icon?: string; | ||||
| 	ignoreCerts?: boolean; | ||||
| } | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: `domain-util.log`, | ||||
| 	file: 'domain-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| let instance: null | DomainUtil = null; | ||||
|  | ||||
| const defaultIconUrl = '../renderer/img/icon.png'; | ||||
|  | ||||
| class DomainUtil { | ||||
| 	db: JsonDB; | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
| export let db: JsonDB; | ||||
|  | ||||
| 		this.reloadDB(); | ||||
| 		// Migrate from old schema | ||||
| 		if (this.db.getData('/').domain) { | ||||
| 			this.addDomain({ | ||||
| 				alias: 'Zulip', | ||||
| 				url: this.db.getData('/domain') | ||||
| 			}); | ||||
| 			this.db.delete('/domain'); | ||||
| 		} | ||||
| reloadDB(); | ||||
| // Migrate from old schema | ||||
| if (db.getData('/').domain) { | ||||
| 	addDomain({ | ||||
| 		alias: 'Zulip', | ||||
| 		url: db.getData('/domain') | ||||
| 	}); | ||||
| 	db.delete('/domain'); | ||||
| } | ||||
|  | ||||
| 		return instance; | ||||
| export function getDomains(): ServerConf[] { | ||||
| 	reloadDB(); | ||||
| 	if (db.getData('/').domains === undefined) { | ||||
| 		return []; | ||||
| 	} else { | ||||
| 		return db.getData('/domains'); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	getDomains(): any { | ||||
| 		this.reloadDB(); | ||||
| 		if (this.db.getData('/').domains === undefined) { | ||||
| 			return []; | ||||
| 		} else { | ||||
| 			return this.db.getData('/domains'); | ||||
| export function getDomain(index: number): ServerConf { | ||||
| 	reloadDB(); | ||||
| 	return db.getData(`/domains[${index}]`); | ||||
| } | ||||
|  | ||||
| export function shouldIgnoreCerts(url: string): boolean { | ||||
| 	const domains = getDomains(); | ||||
| 	for (const domain of domains) { | ||||
| 		if (domain.url === url) { | ||||
| 			return domain.ignoreCerts; | ||||
| 		} | ||||
| 	} | ||||
| 	return null; | ||||
| } | ||||
|  | ||||
| 	getDomain(index: number): any { | ||||
| 		this.reloadDB(); | ||||
| 		return this.db.getData(`/domains[${index}]`); | ||||
| function updateDomain(index: number, server: ServerConf): void { | ||||
| 	reloadDB(); | ||||
| 	db.push(`/domains[${index}]`, server, true); | ||||
| } | ||||
|  | ||||
| export async function addDomain(server: ServerConf): Promise<void> { | ||||
| 	const { ignoreCerts } = server; | ||||
| 	if (server.icon) { | ||||
| 		const localIconUrl = await saveServerIcon(server, ignoreCerts); | ||||
| 		server.icon = localIconUrl; | ||||
| 		db.push('/domains[]', server, true); | ||||
| 		reloadDB(); | ||||
| 	} else { | ||||
| 		server.icon = defaultIconUrl; | ||||
| 		db.push('/domains[]', server, true); | ||||
| 		reloadDB(); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	updateDomain(index: number, server: object): void { | ||||
| 		this.reloadDB(); | ||||
| 		this.db.push(`/domains[${index}]`, server, true); | ||||
| 	} | ||||
| export function removeDomains(): void { | ||||
| 	db.delete('/domains'); | ||||
| 	reloadDB(); | ||||
| } | ||||
|  | ||||
| 	addDomain(server: any): Promise<void> { | ||||
| 		const { ignoreCerts } = server; | ||||
| 		return new Promise(resolve => { | ||||
| 			if (server.icon) { | ||||
| 				this.saveServerIcon(server, ignoreCerts).then(localIconUrl => { | ||||
| 					server.icon = localIconUrl; | ||||
| 					this.db.push('/domains[]', server, true); | ||||
| 					this.reloadDB(); | ||||
| 					resolve(); | ||||
| 				}); | ||||
| 			} else { | ||||
| 				server.icon = defaultIconUrl; | ||||
| 				this.db.push('/domains[]', server, true); | ||||
| 				this.reloadDB(); | ||||
| 				resolve(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	removeDomains(): void { | ||||
| 		this.db.delete('/domains'); | ||||
| 		this.reloadDB(); | ||||
| 	} | ||||
|  | ||||
| 	removeDomain(index: number): boolean { | ||||
| 		if (EnterpriseUtil.isPresetOrg(this.getDomain(index).url)) { | ||||
| 			return false; | ||||
| 		} | ||||
| 		this.db.delete(`/domains[${index}]`); | ||||
| 		this.reloadDB(); | ||||
| 		return true; | ||||
| 	} | ||||
|  | ||||
| 	// Check if domain is already added | ||||
| 	duplicateDomain(domain: any): boolean { | ||||
| 		domain = this.formatUrl(domain); | ||||
| 		const servers = this.getDomains(); | ||||
| 		for (const i in servers) { | ||||
| 			if (servers[i].url === domain) { | ||||
| 				return true; | ||||
| 			} | ||||
| 		} | ||||
| export function removeDomain(index: number): boolean { | ||||
| 	if (EnterpriseUtil.isPresetOrg(getDomain(index).url)) { | ||||
| 		return false; | ||||
| 	} | ||||
| 	db.delete(`/domains[${index}]`); | ||||
| 	reloadDB(); | ||||
| 	return true; | ||||
| } | ||||
|  | ||||
| 	async checkCertError(domain: any, serverConf: any, error: string, silent: boolean): Promise<string | object> { | ||||
| 		if (silent) { | ||||
| 			// since getting server settings has already failed | ||||
| 			return serverConf; | ||||
| 		} else { | ||||
| 			// Report error to sentry to get idea of possible certificate errors | ||||
| 			// users get when adding the servers | ||||
| 			logger.reportSentry(new Error(error).toString()); | ||||
| 			const certErrorMessage = Messages.certErrorMessage(domain, error); | ||||
| 			const certErrorDetail = Messages.certErrorDetail(); | ||||
| // Check if domain is already added | ||||
| export function duplicateDomain(domain: string): boolean { | ||||
| 	domain = formatUrl(domain); | ||||
| 	return getDomains().some(server => server.url === domain); | ||||
| } | ||||
|  | ||||
| 			const response = await (dialog.showMessageBox({ | ||||
| 				type: 'warning', | ||||
| 				buttons: ['Yes', 'No'], | ||||
| 				defaultId: 1, | ||||
| 				message: certErrorMessage, | ||||
| 				detail: certErrorDetail | ||||
| 			}) as any); // TODO: TypeScript - Figure this out | ||||
| 			if (response === 0) { | ||||
| 				// set ignoreCerts parameter to true in case user responds with yes | ||||
| 				serverConf.ignoreCerts = true; | ||||
| 				try { | ||||
| 					return await this.getServerSettings(domain, serverConf.ignoreCerts); | ||||
| 				} catch (_) { | ||||
| 					if (error === Messages.noOrgsError(domain)) { | ||||
| 						throw new Error(error); | ||||
| 					} | ||||
| 					return serverConf; | ||||
| 				} | ||||
| 			} else { | ||||
| 				throw new Error('Untrusted certificate.'); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| async function checkCertError(domain: string, serverConf: ServerConf, error: string, silent: boolean): Promise<ServerConf> { | ||||
| 	if (silent) { | ||||
| 		// since getting server settings has already failed | ||||
| 		return serverConf; | ||||
| 	} else { | ||||
| 		// Report error to sentry to get idea of possible certificate errors | ||||
| 		// users get when adding the servers | ||||
| 		logger.reportSentry(new Error(error).toString()); | ||||
| 		const certErrorMessage = Messages.certErrorMessage(domain, error); | ||||
| 		const certErrorDetail = Messages.certErrorDetail(); | ||||
|  | ||||
| 	// ignoreCerts parameter helps in fetching server icon and | ||||
| 	// other server details when user chooses to ignore certificate warnings | ||||
| 	async checkDomain(domain: any, ignoreCerts = false, silent = false): Promise<any> { | ||||
| 		if (!silent && this.duplicateDomain(domain)) { | ||||
| 			// Do not check duplicate in silent mode | ||||
| 			throw new Error('This server has been added.'); | ||||
| 		} | ||||
|  | ||||
| 		domain = this.formatUrl(domain); | ||||
|  | ||||
| 		const serverConf = { | ||||
| 			icon: defaultIconUrl, | ||||
| 			url: domain, | ||||
| 			alias: domain, | ||||
| 			ignoreCerts | ||||
| 		}; | ||||
|  | ||||
| 		try { | ||||
| 			return await this.getServerSettings(domain, serverConf.ignoreCerts); | ||||
| 		} catch (err) { | ||||
| 			// If the domain contains following strings we just bypass the server | ||||
| 			const whitelistDomains = [ | ||||
| 				'zulipdev.org' | ||||
| 			]; | ||||
|  | ||||
| 			// make sure that error is an error or string not undefined | ||||
| 			// so validation does not throw error. | ||||
| 			const error = err || ''; | ||||
|  | ||||
| 			const certsError = error.toString().includes('certificate'); | ||||
| 			if (domain.indexOf(whitelistDomains) >= 0 || certsError) { | ||||
| 				return this.checkCertError(domain, serverConf, error, silent); | ||||
| 			} else { | ||||
| 				throw Messages.invalidZulipServerError(domain); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	getServerSettings(domain: any, ignoreCerts = false): Promise<object | string> { | ||||
| 		const serverSettingsOptions = { | ||||
| 			url: domain + '/api/v1/server_settings', | ||||
| 			...RequestUtil.requestOptions(domain, ignoreCerts) | ||||
| 		}; | ||||
|  | ||||
| 		return new Promise((resolve, reject) => { | ||||
| 			request(serverSettingsOptions, (error: string, response: any) => { | ||||
| 				if (!error && response.statusCode === 200) { | ||||
| 					const data = JSON.parse(response.body); | ||||
| 					if (data.hasOwnProperty('realm_icon') && data.realm_icon) { | ||||
| 						resolve({ | ||||
| 							// Some Zulip Servers use absolute URL for server icon whereas others use relative URL | ||||
| 							// Following check handles both the cases | ||||
| 							icon: data.realm_icon.startsWith('/') ? data.realm_uri + data.realm_icon : data.realm_icon, | ||||
| 							url: data.realm_uri, | ||||
| 							alias: escape(data.realm_name), | ||||
| 							ignoreCerts | ||||
| 						}); | ||||
| 					} else { | ||||
| 						reject(Messages.noOrgsError(domain)); | ||||
| 					} | ||||
| 				} else { | ||||
| 					reject(response); | ||||
| 				} | ||||
| 			}); | ||||
| 		const { response } = await dialog.showMessageBox({ | ||||
| 			type: 'warning', | ||||
| 			buttons: ['Yes', 'No'], | ||||
| 			defaultId: 1, | ||||
| 			message: certErrorMessage, | ||||
| 			detail: certErrorDetail | ||||
| 		}); | ||||
| 		if (response === 0) { | ||||
| 			// set ignoreCerts parameter to true in case user responds with yes | ||||
| 			serverConf.ignoreCerts = true; | ||||
| 			try { | ||||
| 				return await getServerSettings(domain, serverConf.ignoreCerts); | ||||
| 			} catch (_) { | ||||
| 				if (error === Messages.noOrgsError(domain)) { | ||||
| 					throw new Error(error); | ||||
| 				} | ||||
| 				return serverConf; | ||||
| 			} | ||||
| 		} else { | ||||
| 			throw new Error('Untrusted certificate.'); | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // ignoreCerts parameter helps in fetching server icon and | ||||
| // other server details when user chooses to ignore certificate warnings | ||||
| export async function checkDomain(domain: string, ignoreCerts = false, silent = false): Promise<ServerConf> { | ||||
| 	if (!silent && duplicateDomain(domain)) { | ||||
| 		// Do not check duplicate in silent mode | ||||
| 		throw new Error('This server has been added.'); | ||||
| 	} | ||||
|  | ||||
| 	saveServerIcon(server: any, ignoreCerts = false): Promise<string> { | ||||
| 		const url = server.icon; | ||||
| 		const domain = server.url; | ||||
| 	domain = formatUrl(domain); | ||||
|  | ||||
| 		const serverIconOptions = { | ||||
| 			url, | ||||
| 			...RequestUtil.requestOptions(domain, ignoreCerts) | ||||
| 		}; | ||||
| 	const serverConf = { | ||||
| 		icon: defaultIconUrl, | ||||
| 		url: domain, | ||||
| 		alias: domain, | ||||
| 		ignoreCerts | ||||
| 	}; | ||||
|  | ||||
| 		// The save will always succeed. If url is invalid, downgrade to default icon. | ||||
| 		return new Promise(resolve => { | ||||
| 			const filePath = this.generateFilePath(url); | ||||
| 			const file = fs.createWriteStream(filePath); | ||||
| 			try { | ||||
| 				request(serverIconOptions).on('response', (response: any) => { | ||||
| 					response.on('error', (err: string) => { | ||||
| 						logger.log('Could not get server icon.'); | ||||
| 						logger.log(err); | ||||
| 						logger.reportSentry(err); | ||||
| 						resolve(defaultIconUrl); | ||||
| 	try { | ||||
| 		return await getServerSettings(domain, serverConf.ignoreCerts); | ||||
| 	} catch (err) { | ||||
| 		// Make sure that error is an error or string not undefined | ||||
| 		// so validation does not throw error. | ||||
| 		const error = err || ''; | ||||
|  | ||||
| 		const certsError = error.toString().includes('certificate'); | ||||
| 		if (certsError) { | ||||
| 			const result = await checkCertError(domain, serverConf, error, silent); | ||||
| 			return result; | ||||
| 		} else { | ||||
| 			throw new Error(Messages.invalidZulipServerError(domain)); | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
|  | ||||
| async function getServerSettings(domain: string, ignoreCerts = false): Promise<ServerConf> { | ||||
| 	const serverSettingsOptions = { | ||||
| 		url: domain + '/api/v1/server_settings', | ||||
| 		...RequestUtil.requestOptions(domain, ignoreCerts) | ||||
| 	}; | ||||
|  | ||||
| 	return new Promise((resolve, reject) => { | ||||
| 		request(serverSettingsOptions, (error: string, response: any) => { | ||||
| 			if (!error && response.statusCode === 200) { | ||||
| 				const data = JSON.parse(response.body); | ||||
| 				if (Object.prototype.hasOwnProperty.call(data, 'realm_icon') && data.realm_icon) { | ||||
| 					resolve({ | ||||
| 						// Some Zulip Servers use absolute URL for server icon whereas others use relative URL | ||||
| 						// Following check handles both the cases | ||||
| 						icon: data.realm_icon.startsWith('/') ? data.realm_uri + data.realm_icon : data.realm_icon, | ||||
| 						url: data.realm_uri, | ||||
| 						alias: escape(data.realm_name), | ||||
| 						ignoreCerts | ||||
| 					}); | ||||
| 					response.pipe(file).on('finish', () => { | ||||
| 						resolve(filePath); | ||||
| 					}); | ||||
| 				}).on('error', (err: string) => { | ||||
| 				} else { | ||||
| 					reject(Messages.noOrgsError(domain)); | ||||
| 				} | ||||
| 			} else { | ||||
| 				reject(response); | ||||
| 			} | ||||
| 		}); | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| export async function saveServerIcon(server: ServerConf, ignoreCerts = false): Promise<string> { | ||||
| 	const url = server.icon; | ||||
| 	const domain = server.url; | ||||
|  | ||||
| 	const serverIconOptions = { | ||||
| 		url, | ||||
| 		...RequestUtil.requestOptions(domain, ignoreCerts) | ||||
| 	}; | ||||
|  | ||||
| 	// The save will always succeed. If url is invalid, downgrade to default icon. | ||||
| 	return new Promise(resolve => { | ||||
| 		const filePath = generateFilePath(url); | ||||
| 		const file = fs.createWriteStream(filePath); | ||||
| 		try { | ||||
| 			request(serverIconOptions).on('response', (response: any) => { | ||||
| 				response.on('error', (err: string) => { | ||||
| 					logger.log('Could not get server icon.'); | ||||
| 					logger.log(err); | ||||
| 					logger.reportSentry(err); | ||||
| 					resolve(defaultIconUrl); | ||||
| 				}); | ||||
| 			} catch (err) { | ||||
| 				response.pipe(file).on('finish', () => { | ||||
| 					resolve(filePath); | ||||
| 				}); | ||||
| 			}).on('error', (err: string) => { | ||||
| 				logger.log('Could not get server icon.'); | ||||
| 				logger.log(err); | ||||
| 				logger.reportSentry(err); | ||||
| 				resolve(defaultIconUrl); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	updateSavedServer(url: string, index: number): void { | ||||
| 		// Does not promise successful update | ||||
| 		const oldIcon = this.getDomain(index).icon; | ||||
| 		const { ignoreCerts } = this.getDomain(index); | ||||
| 		this.checkDomain(url, ignoreCerts, true).then(newServerConf => { | ||||
| 			this.saveServerIcon(newServerConf, ignoreCerts).then(localIconUrl => { | ||||
| 				if (!oldIcon || localIconUrl !== '../renderer/img/icon.png') { | ||||
| 					newServerConf.icon = localIconUrl; | ||||
| 					this.updateDomain(index, newServerConf); | ||||
| 					this.reloadDB(); | ||||
| 				} | ||||
| 			}); | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	reloadDB(): void { | ||||
| 		const domainJsonPath = path.join(app.getPath('userData'), 'config/domain.json'); | ||||
| 		try { | ||||
| 			const file = fs.readFileSync(domainJsonPath, 'utf8'); | ||||
| 			JSON.parse(file); | ||||
| 		} catch (err) { | ||||
| 			if (fs.existsSync(domainJsonPath)) { | ||||
| 				fs.unlinkSync(domainJsonPath); | ||||
| 				dialog.showErrorBox( | ||||
| 					'Error saving new organization', | ||||
| 					'There seems to be error while saving new organization, ' + | ||||
| 					'you may have to re-add your previous organizations back.' | ||||
| 				); | ||||
| 				logger.error('Error while JSON parsing domain.json: '); | ||||
| 				logger.error(err); | ||||
| 				logger.reportSentry(err); | ||||
| 			} | ||||
| 			logger.log('Could not get server icon.'); | ||||
| 			logger.log(err); | ||||
| 			logger.reportSentry(err); | ||||
| 			resolve(defaultIconUrl); | ||||
| 		} | ||||
| 		this.db = new JsonDB(domainJsonPath, true, true); | ||||
| 	} | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| 	generateFilePath(url: string): string { | ||||
| 		const dir = `${app.getPath('userData')}/server-icons`; | ||||
| 		const extension = path.extname(url).split('?')[0]; | ||||
|  | ||||
| 		let hash = 5381; | ||||
| 		let len = url.length; | ||||
|  | ||||
| 		while (len) { | ||||
| 			hash = (hash * 33) ^ url.charCodeAt(--len); | ||||
| 		} | ||||
|  | ||||
| 		// Create 'server-icons' directory if not existed | ||||
| 		if (!fs.existsSync(dir)) { | ||||
| 			fs.mkdirSync(dir); | ||||
| 		} | ||||
|  | ||||
| 		return `${dir}/${hash >>> 0}${extension}`; | ||||
| 	} | ||||
|  | ||||
| 	formatUrl(domain: any): string { | ||||
| 		const hasPrefix = (domain.indexOf('http') === 0); | ||||
| 		if (hasPrefix) { | ||||
| 			return domain; | ||||
| 		} else { | ||||
| 			return (domain.indexOf('localhost:') >= 0) ? `http://${domain}` : `https://${domain}`; | ||||
| export async function updateSavedServer(url: string, index: number): Promise<void> { | ||||
| 	// Does not promise successful update | ||||
| 	const oldIcon = getDomain(index).icon; | ||||
| 	const { ignoreCerts } = getDomain(index); | ||||
| 	try { | ||||
| 		const newServerConf = await checkDomain(url, ignoreCerts, true); | ||||
| 		const localIconUrl = await saveServerIcon(newServerConf, ignoreCerts); | ||||
| 		if (!oldIcon || localIconUrl !== '../renderer/img/icon.png') { | ||||
| 			newServerConf.icon = localIconUrl; | ||||
| 			updateDomain(index, newServerConf); | ||||
| 			reloadDB(); | ||||
| 		} | ||||
| 	} catch (err) { | ||||
| 		ipcRenderer.send('forward-message', 'show-network-error', index); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new DomainUtil(); | ||||
| export function reloadDB(): void { | ||||
| 	const domainJsonPath = path.join(app.getPath('userData'), 'config/domain.json'); | ||||
| 	try { | ||||
| 		const file = fs.readFileSync(domainJsonPath, 'utf8'); | ||||
| 		JSON.parse(file); | ||||
| 	} catch (err) { | ||||
| 		if (fs.existsSync(domainJsonPath)) { | ||||
| 			fs.unlinkSync(domainJsonPath); | ||||
| 			dialog.showErrorBox( | ||||
| 				'Error saving new organization', | ||||
| 				'There seems to be error while saving new organization, ' + | ||||
| 				'you may have to re-add your previous organizations back.' | ||||
| 			); | ||||
| 			logger.error('Error while JSON parsing domain.json: '); | ||||
| 			logger.error(err); | ||||
| 			logger.reportSentry(err); | ||||
| 		} | ||||
| 	} | ||||
| 	db = new JsonDB(domainJsonPath, true, true); | ||||
| } | ||||
|  | ||||
| function generateFilePath(url: string): string { | ||||
| 	const dir = `${app.getPath('userData')}/server-icons`; | ||||
| 	const extension = path.extname(url).split('?')[0]; | ||||
|  | ||||
| 	let hash = 5381; | ||||
| 	let { length } = url; | ||||
|  | ||||
| 	while (length) { | ||||
| 		hash = (hash * 33) ^ url.charCodeAt(--length); | ||||
| 	} | ||||
|  | ||||
| 	// Create 'server-icons' directory if not existed | ||||
| 	if (!fs.existsSync(dir)) { | ||||
| 		fs.mkdirSync(dir); | ||||
| 	} | ||||
|  | ||||
| 	return `${dir}/${hash >>> 0}${extension}`; | ||||
| } | ||||
|  | ||||
| export function formatUrl(domain: string): string { | ||||
| 	if (domain.startsWith('http://') || domain.startsWith('https://')) { | ||||
| 		return domain; | ||||
| 	} | ||||
| 	if (domain.startsWith('localhost:')) { | ||||
| 		return `http://${domain}`; | ||||
| 	} | ||||
| 	return `https://${domain}`; | ||||
| } | ||||
|   | ||||
| @@ -1,80 +1,68 @@ | ||||
| import fs = require('fs'); | ||||
| import path = require('path'); | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
|  | ||||
| import Logger = require('./logger-util'); | ||||
| import Logger from './logger-util'; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: 'enterprise-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| let instance: null | EnterpriseUtil = null; | ||||
| // todo: replace enterpriseSettings type with an interface once settings are final | ||||
| export let enterpriseSettings: any; | ||||
| export let configFile: boolean; | ||||
|  | ||||
| class EnterpriseUtil { | ||||
| 	// todo: replace enterpriseSettings type with an interface once settings are final | ||||
| 	enterpriseSettings: any; | ||||
| 	configFile: boolean; | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} | ||||
| 		instance = this; | ||||
| reloadDB(); | ||||
|  | ||||
| 		this.reloadDB(); | ||||
| function reloadDB(): void { | ||||
| 	let enterpriseFile = '/etc/zulip-desktop-config/global_config.json'; | ||||
| 	if (process.platform === 'win32') { | ||||
| 		enterpriseFile = 'C:\\Program Files\\Zulip-Desktop-Config\\global_config.json'; | ||||
| 	} | ||||
|  | ||||
| 	reloadDB(): void { | ||||
| 		let enterpriseFile = '/etc/zulip-desktop-config/global_config.json'; | ||||
| 		if (process.platform === 'win32') { | ||||
| 			enterpriseFile = 'C:\\Program Files\\Zulip-Desktop-Config\\global_config.json'; | ||||
| 	enterpriseFile = path.resolve(enterpriseFile); | ||||
| 	if (fs.existsSync(enterpriseFile)) { | ||||
| 		configFile = true; | ||||
| 		try { | ||||
| 			const file = fs.readFileSync(enterpriseFile, 'utf8'); | ||||
| 			enterpriseSettings = JSON.parse(file); | ||||
| 		} catch (err) { | ||||
| 			logger.log('Error while JSON parsing global_config.json: '); | ||||
| 			logger.log(err); | ||||
| 		} | ||||
|  | ||||
| 		enterpriseFile = path.resolve(enterpriseFile); | ||||
| 		if (fs.existsSync(enterpriseFile)) { | ||||
| 			this.configFile = true; | ||||
| 			try { | ||||
| 				const file = fs.readFileSync(enterpriseFile, 'utf8'); | ||||
| 				this.enterpriseSettings = JSON.parse(file); | ||||
| 			} catch (err) { | ||||
| 				logger.log('Error while JSON parsing global_config.json: '); | ||||
| 				logger.log(err); | ||||
| 			} | ||||
| 		} else { | ||||
| 			this.configFile = false; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	getConfigItem(key: string, defaultValue?: any): any { | ||||
| 		this.reloadDB(); | ||||
| 		if (!this.configFile) { | ||||
| 			return defaultValue; | ||||
| 		} | ||||
| 		if (defaultValue === undefined) { | ||||
| 			defaultValue = null; | ||||
| 		} | ||||
| 		return this.configItemExists(key) ? this.enterpriseSettings[key] : defaultValue; | ||||
| 	} | ||||
|  | ||||
| 	configItemExists(key: string): boolean { | ||||
| 		this.reloadDB(); | ||||
| 		if (!this.configFile) { | ||||
| 			return false; | ||||
| 		} | ||||
| 		return (this.enterpriseSettings[key] !== undefined); | ||||
| 	} | ||||
|  | ||||
| 	isPresetOrg(url: string): boolean { | ||||
| 		if (!this.configFile || !this.configItemExists('presetOrganizations')) { | ||||
| 			return false; | ||||
| 		} | ||||
| 		const presetOrgs = this.enterpriseSettings.presetOrganizations; | ||||
| 		for (const org of presetOrgs) { | ||||
| 			if (url.includes(org)) { | ||||
| 				return true; | ||||
| 			} | ||||
| 		} | ||||
| 		return false; | ||||
| 	} else { | ||||
| 		configFile = false; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new EnterpriseUtil(); | ||||
| export function getConfigItem(key: string, defaultValue?: any): any { | ||||
| 	reloadDB(); | ||||
| 	if (!configFile) { | ||||
| 		return defaultValue; | ||||
| 	} | ||||
| 	if (defaultValue === undefined) { | ||||
| 		defaultValue = null; | ||||
| 	} | ||||
| 	return configItemExists(key) ? enterpriseSettings[key] : defaultValue; | ||||
| } | ||||
|  | ||||
| export function configItemExists(key: string): boolean { | ||||
| 	reloadDB(); | ||||
| 	if (!configFile) { | ||||
| 		return false; | ||||
| 	} | ||||
| 	return (enterpriseSettings[key] !== undefined); | ||||
| } | ||||
|  | ||||
| export function isPresetOrg(url: string): boolean { | ||||
| 	if (!configFile || !configItemExists('presetOrganizations')) { | ||||
| 		return false; | ||||
| 	} | ||||
| 	const presetOrgs = enterpriseSettings.presetOrganizations; | ||||
| 	for (const org of presetOrgs) { | ||||
| 		if (url.includes(org)) { | ||||
| 			return true; | ||||
| 		} | ||||
| 	} | ||||
| 	return false; | ||||
| } | ||||
|   | ||||
| @@ -1,51 +1,45 @@ | ||||
| 'use strict'; | ||||
| import { shell } from 'electron'; | ||||
| import escape from 'escape-html'; | ||||
| import fs from 'fs'; | ||||
| import os from 'os'; | ||||
| import path from 'path'; | ||||
|  | ||||
| // TODO: TypeScript - Add @types/ | ||||
| import wurl = require('wurl'); | ||||
|  | ||||
| let instance: null | LinkUtil = null; | ||||
|  | ||||
| interface IsInternalResponse { | ||||
| 	isInternalUrl: boolean; | ||||
| 	isUploadsUrl: boolean; | ||||
| export function isUploadsUrl(server: string, url: URL): boolean { | ||||
| 	return url.origin === server && url.pathname.startsWith('/user_uploads/'); | ||||
| } | ||||
|  | ||||
| class LinkUtil { | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
|  | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	isInternal(currentUrl: string, newUrl: string): IsInternalResponse { | ||||
| 		const currentDomain = wurl('hostname', currentUrl); | ||||
| 		const newDomain = wurl('hostname', newUrl); | ||||
|  | ||||
| 		const sameDomainUrl = (currentDomain === newDomain || newUrl === currentUrl + '/'); | ||||
| 		const isUploadsUrl = newUrl.includes(currentUrl + '/user_uploads/'); | ||||
| 		const isInternalUrl = newUrl.includes('/#narrow') || isUploadsUrl; | ||||
|  | ||||
| 		return { | ||||
| 			isInternalUrl: sameDomainUrl && isInternalUrl, | ||||
| 			isUploadsUrl | ||||
| 		}; | ||||
| 	} | ||||
|  | ||||
| 	isImage(url: string): boolean { | ||||
| 		// test for images extension as well as urls like .png?s=100 | ||||
| 		const isImageUrl = /\.(bmp|gif|jpg|jpeg|png|webp)\?*.*$/i; | ||||
| 		return isImageUrl.test(url); | ||||
| 	} | ||||
|  | ||||
| 	isPDF(url: string): boolean { | ||||
| 		// test for pdf extension | ||||
| 		const isPDFUrl = /\.(pdf)\?*.*$/i; | ||||
| 		return isPDFUrl.test(url); | ||||
| export function openBrowser(url: URL): void { | ||||
| 	if (['http:', 'https:', 'mailto:'].includes(url.protocol)) { | ||||
| 		shell.openExternal(url.href); | ||||
| 	} else { | ||||
| 		// For security, indirect links to non-whitelisted protocols | ||||
| 		// through a real web browser via a local HTML file. | ||||
| 		const dir = fs.mkdtempSync( | ||||
| 			path.join(os.tmpdir(), 'zulip-redirect-') | ||||
| 		); | ||||
| 		const file = path.join(dir, 'redirect.html'); | ||||
| 		fs.writeFileSync(file, `\ | ||||
| <!DOCTYPE html> | ||||
| <html> | ||||
|     <head> | ||||
|         <meta charset="UTF-8" /> | ||||
|         <meta http-equiv="Refresh" content="0; url=${escape(url.href)}" /> | ||||
|         <title>Redirecting</title> | ||||
|         <style> | ||||
|             html { | ||||
|                 font-family: menu, "Helvetica Neue", sans-serif; | ||||
|             } | ||||
|         </style> | ||||
|     </head> | ||||
|     <body> | ||||
|         <p>Opening <a href="${escape(url.href)}">${escape(url.href)}</a>…</p> | ||||
|     </body> | ||||
| </html> | ||||
| `); | ||||
| 		shell.openItem(file); | ||||
| 		setTimeout(() => { | ||||
| 			fs.unlinkSync(file); | ||||
| 			fs.rmdirSync(dir); | ||||
| 		}, 15000); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new LinkUtil(); | ||||
|   | ||||
| @@ -1,10 +1,9 @@ | ||||
| 'use strict'; | ||||
| import JsonDB from 'node-json-db'; | ||||
| import { JsonDB } from 'node-json-db'; | ||||
|  | ||||
| import fs = require('fs'); | ||||
| import path = require('path'); | ||||
| import electron = require('electron'); | ||||
| import Logger = require('./logger-util'); | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
| import electron from 'electron'; | ||||
| import Logger from './logger-util'; | ||||
|  | ||||
| const remote = | ||||
| 	process.type === 'renderer' ? electron.remote : electron; | ||||
| @@ -16,61 +15,47 @@ const logger = new Logger({ | ||||
|  | ||||
| /* To make the util runnable in both main and renderer process */ | ||||
| const { dialog, app } = remote; | ||||
| let instance: null | LinuxUpdateUtil = null; | ||||
|  | ||||
| class LinuxUpdateUtil { | ||||
| 	db: JsonDB; | ||||
| let db: JsonDB; | ||||
|  | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
| reloadDB(); | ||||
|  | ||||
| 		this.reloadDB(); | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	getUpdateItem(key: string, defaultValue: any = null): any { | ||||
| 		this.reloadDB(); | ||||
| 		const value = this.db.getData('/')[key]; | ||||
| 		if (value === undefined) { | ||||
| 			this.setUpdateItem(key, defaultValue); | ||||
| 			return defaultValue; | ||||
| 		} else { | ||||
| 			return value; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	setUpdateItem(key: string, value: any): void { | ||||
| 		this.db.push(`/${key}`, value, true); | ||||
| 		this.reloadDB(); | ||||
| 	} | ||||
|  | ||||
| 	removeUpdateItem(key: string): void { | ||||
| 		this.db.delete(`/${key}`); | ||||
| 		this.reloadDB(); | ||||
| 	} | ||||
|  | ||||
| 	reloadDB(): void { | ||||
| 		const linuxUpdateJsonPath = path.join(app.getPath('userData'), '/config/updates.json'); | ||||
| 		try { | ||||
| 			const file = fs.readFileSync(linuxUpdateJsonPath, 'utf8'); | ||||
| 			JSON.parse(file); | ||||
| 		} catch (err) { | ||||
| 			if (fs.existsSync(linuxUpdateJsonPath)) { | ||||
| 				fs.unlinkSync(linuxUpdateJsonPath); | ||||
| 				dialog.showErrorBox( | ||||
| 					'Error saving update notifications.', | ||||
| 					'We encountered an error while saving the update notifications.' | ||||
| 				); | ||||
| 				logger.error('Error while JSON parsing updates.json: '); | ||||
| 				logger.error(err); | ||||
| 			} | ||||
| 		} | ||||
| 		this.db = new JsonDB(linuxUpdateJsonPath, true, true); | ||||
| export function getUpdateItem(key: string, defaultValue: any = null): any { | ||||
| 	reloadDB(); | ||||
| 	const value = db.getData('/')[key]; | ||||
| 	if (value === undefined) { | ||||
| 		setUpdateItem(key, defaultValue); | ||||
| 		return defaultValue; | ||||
| 	} else { | ||||
| 		return value; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new LinuxUpdateUtil(); | ||||
| export function setUpdateItem(key: string, value: any): void { | ||||
| 	db.push(`/${key}`, value, true); | ||||
| 	reloadDB(); | ||||
| } | ||||
|  | ||||
| export function removeUpdateItem(key: string): void { | ||||
| 	db.delete(`/${key}`); | ||||
| 	reloadDB(); | ||||
| } | ||||
|  | ||||
| function reloadDB(): void { | ||||
| 	const linuxUpdateJsonPath = path.join(app.getPath('userData'), '/config/updates.json'); | ||||
| 	try { | ||||
| 		const file = fs.readFileSync(linuxUpdateJsonPath, 'utf8'); | ||||
| 		JSON.parse(file); | ||||
| 	} catch (err) { | ||||
| 		if (fs.existsSync(linuxUpdateJsonPath)) { | ||||
| 			fs.unlinkSync(linuxUpdateJsonPath); | ||||
| 			dialog.showErrorBox( | ||||
| 				'Error saving update notifications.', | ||||
| 				'We encountered an error while saving the update notifications.' | ||||
| 			); | ||||
| 			logger.error('Error while JSON parsing updates.json: '); | ||||
| 			logger.error(err); | ||||
| 		} | ||||
| 	} | ||||
| 	db = new JsonDB(linuxUpdateJsonPath, true, true); | ||||
| } | ||||
|   | ||||
| @@ -2,10 +2,10 @@ import { Console as NodeConsole } from 'console'; // eslint-disable-line node/pr | ||||
| import { initSetUp } from './default-util'; | ||||
| import { sentryInit, captureException } from './sentry-util'; | ||||
|  | ||||
| import fs = require('fs'); | ||||
| import os = require('os'); | ||||
| import isDev = require('electron-is-dev'); | ||||
| import electron = require('electron'); | ||||
| import fs from 'fs'; | ||||
| import os from 'os'; | ||||
| import isDev from 'electron-is-dev'; | ||||
| import electron from 'electron'; | ||||
| // this interface adds [key: string]: any so | ||||
| // we can do console[type] later on in the code | ||||
| interface PatchedConsole extends Console { | ||||
| @@ -13,7 +13,7 @@ interface PatchedConsole extends Console { | ||||
| } | ||||
|  | ||||
| interface LoggerOptions { | ||||
| 	timestamp?: any; | ||||
| 	timestamp?: true | (() => string); | ||||
| 	file?: string; | ||||
| 	level?: boolean; | ||||
| 	logInDevMode?: boolean; | ||||
| @@ -44,20 +44,20 @@ if (process.type === 'renderer') { | ||||
| const browserConsole: PatchedConsole = console; | ||||
| const logDir = `${app.getPath('userData')}/Logs`; | ||||
|  | ||||
| class Logger { | ||||
| export default class Logger { | ||||
| 	nodeConsole: PatchedConsole; | ||||
| 	timestamp: any; // TODO: TypeScript - Figure out how to make this work with string | Function. | ||||
| 	timestamp?: () => string; | ||||
| 	level: boolean; | ||||
| 	logInDevMode: boolean; | ||||
| 	[key: string]: any; | ||||
|  | ||||
| 	constructor(opts: LoggerOptions = {}) { | ||||
| 	constructor(options: LoggerOptions = {}) { | ||||
| 		let { | ||||
| 			timestamp = true, | ||||
| 			file = 'console.log', | ||||
| 			level = true, | ||||
| 			logInDevMode = false | ||||
| 		} = opts; | ||||
| 		} = options; | ||||
|  | ||||
| 		file = `${logDir}/${file}`; | ||||
| 		if (timestamp === true) { | ||||
| @@ -92,7 +92,7 @@ class Logger { | ||||
| 			case typeof timestamp === 'function': | ||||
| 				args.unshift(timestamp() + ' |\t'); | ||||
|  | ||||
| 			case (level !== false): | ||||
| 			case (level): | ||||
| 				args.unshift(type.toUpperCase() + ' |'); | ||||
|  | ||||
| 			case isDev || logInDevMode: | ||||
| @@ -107,7 +107,7 @@ class Logger { | ||||
| 	} | ||||
|  | ||||
| 	setUpConsole(): void { | ||||
| 		for (const type in browserConsole) { | ||||
| 		for (const type of Object.keys(browserConsole)) { | ||||
| 			this.setupConsoleMethod(type); | ||||
| 		} | ||||
| 	} | ||||
| @@ -151,5 +151,3 @@ class Logger { | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = Logger; | ||||
|   | ||||
| @@ -1,11 +0,0 @@ | ||||
| // This util function returns the page params if they're present else returns null | ||||
| export function isPageParams(): null | object { | ||||
| 	let webpageParams = null; | ||||
| 	try { | ||||
| 		// eslint-disable-next-line no-undef, @typescript-eslint/camelcase | ||||
| 		webpageParams = page_params; | ||||
| 	} catch (_) { | ||||
| 		webpageParams = null; | ||||
| 	} | ||||
| 	return webpageParams; | ||||
| } | ||||
| @@ -1,142 +1,118 @@ | ||||
| 'use strict'; | ||||
| import * as ConfigUtil from './config-util'; | ||||
|  | ||||
| import url = require('url'); | ||||
|  | ||||
| import ConfigUtil = require('./config-util'); | ||||
|  | ||||
| let instance: null | ProxyUtil = null; | ||||
|  | ||||
| interface ProxyRule { | ||||
| export interface ProxyRule { | ||||
| 	hostname?: string; | ||||
| 	port?: number; | ||||
| } | ||||
|  | ||||
| class ProxyUtil { | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 		} | ||||
|  | ||||
| 		return instance; | ||||
| // Return proxy to be used for a particular uri, to be used for request | ||||
| export function getProxy(_uri: string): ProxyRule | void { | ||||
| 	let uri; | ||||
| 	try { | ||||
| 		uri = new URL(_uri); | ||||
| 	} catch (err) { | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	// Return proxy to be used for a particular uri, to be used for request | ||||
| 	getProxy(_uri: string): ProxyRule | void { | ||||
| 		const parsedUri = url.parse(_uri); | ||||
| 		if (parsedUri === null) { | ||||
| 			return; | ||||
| 		} | ||||
|  | ||||
| 		const uri = parsedUri; | ||||
| 		const proxyRules = ConfigUtil.getConfigItem('proxyRules', '').split(';'); | ||||
| 		// If SPS is on and system uses no proxy then request should not try to use proxy from | ||||
| 		// environment. NO_PROXY = '*' makes request ignore all environment proxy variables. | ||||
| 		if (proxyRules[0] === '') { | ||||
| 			process.env.NO_PROXY = '*'; | ||||
| 			return; | ||||
| 		} | ||||
|  | ||||
| 		const proxyRule: any = {}; | ||||
| 		if (uri.protocol === 'http:') { | ||||
| 			proxyRules.forEach((proxy: string) => { | ||||
| 				if (proxy.includes('http=')) { | ||||
| 					proxyRule.hostname = proxy.split('http=')[1].trim().split(':')[0]; | ||||
| 					proxyRule.port = proxy.split('http=')[1].trim().split(':')[1]; | ||||
| 				} | ||||
| 			}); | ||||
| 			return proxyRule; | ||||
| 		} | ||||
|  | ||||
| 		if (uri.protocol === 'https:') { | ||||
| 			proxyRules.forEach((proxy: string) => { | ||||
| 				if (proxy.includes('https=')) { | ||||
| 					proxyRule.hostname = proxy.split('https=')[1].trim().split(':')[0]; | ||||
| 					proxyRule.port = proxy.split('https=')[1].trim().split(':')[1]; | ||||
| 				} | ||||
| 			}); | ||||
| 			return proxyRule; | ||||
| 		} | ||||
| 	const proxyRules = ConfigUtil.getConfigItem('proxyRules', '').split(';'); | ||||
| 	// If SPS is on and system uses no proxy then request should not try to use proxy from | ||||
| 	// environment. NO_PROXY = '*' makes request ignore all environment proxy variables. | ||||
| 	if (proxyRules[0] === '') { | ||||
| 		process.env.NO_PROXY = '*'; | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	// TODO: Refactor to async function | ||||
| 	resolveSystemProxy(mainWindow: Electron.BrowserWindow): void { | ||||
| 		const page = mainWindow.webContents; | ||||
| 		const ses = page.session; | ||||
| 		const resolveProxyUrl = 'www.example.com'; | ||||
|  | ||||
| 		// Check HTTP Proxy | ||||
| 		const httpProxy = new Promise(resolve => { | ||||
| 			ses.resolveProxy('http://' + resolveProxyUrl, (proxy: string) => { | ||||
| 				let httpString = ''; | ||||
| 				if (proxy !== 'DIRECT') { | ||||
| 					// in case of proxy HTTPS url:port, windows gives first word as HTTPS while linux gives PROXY | ||||
| 					// for all other HTTP or direct url:port both uses PROXY | ||||
| 					if (proxy.includes('PROXY') || proxy.includes('HTTPS')) { | ||||
| 						httpString = 'http=' + proxy.split('PROXY')[1] + ';'; | ||||
| 					} | ||||
| 				} | ||||
| 				resolve(httpString); | ||||
| 			}); | ||||
| 		}); | ||||
| 		// Check HTTPS Proxy | ||||
| 		const httpsProxy = new Promise(resolve => { | ||||
| 			ses.resolveProxy('https://' + resolveProxyUrl, (proxy: string) => { | ||||
| 				let httpsString = ''; | ||||
| 				if (proxy !== 'DIRECT' || proxy.includes('HTTPS')) { | ||||
| 					// in case of proxy HTTPS url:port, windows gives first word as HTTPS while linux gives PROXY | ||||
| 					// for all other HTTP or direct url:port both uses PROXY | ||||
| 					if (proxy.includes('PROXY') || proxy.includes('HTTPS')) { | ||||
| 						httpsString += 'https=' + proxy.split('PROXY')[1] + ';'; | ||||
| 					} | ||||
| 				} | ||||
| 				resolve(httpsString); | ||||
| 			}); | ||||
| 		}); | ||||
|  | ||||
| 		// Check FTP Proxy | ||||
| 		const ftpProxy = new Promise(resolve => { | ||||
| 			ses.resolveProxy('ftp://' + resolveProxyUrl, (proxy: string) => { | ||||
| 				let ftpString = ''; | ||||
| 				if (proxy !== 'DIRECT') { | ||||
| 					if (proxy.includes('PROXY')) { | ||||
| 						ftpString += 'ftp=' + proxy.split('PROXY')[1] + ';'; | ||||
| 					} | ||||
| 				} | ||||
| 				resolve(ftpString); | ||||
| 			}); | ||||
| 		}); | ||||
|  | ||||
| 		// Check SOCKS Proxy | ||||
| 		const socksProxy = new Promise(resolve => { | ||||
| 			ses.resolveProxy('socks4://' + resolveProxyUrl, (proxy: string) => { | ||||
| 				let socksString = ''; | ||||
| 				if (proxy !== 'DIRECT') { | ||||
| 					if (proxy.includes('SOCKS5')) { | ||||
| 						socksString += 'socks=' + proxy.split('SOCKS5')[1] + ';'; | ||||
| 					} else if (proxy.includes('SOCKS4')) { | ||||
| 						socksString += 'socks=' + proxy.split('SOCKS4')[1] + ';'; | ||||
| 					} else if (proxy.includes('PROXY')) { | ||||
| 						socksString += 'socks=' + proxy.split('PROXY')[1] + ';'; | ||||
| 					} | ||||
| 				} | ||||
| 				resolve(socksString); | ||||
| 			}); | ||||
| 		}); | ||||
|  | ||||
| 		Promise.all([httpProxy, httpsProxy, ftpProxy, socksProxy]).then(values => { | ||||
| 			let proxyString = ''; | ||||
| 			values.forEach(proxy => { | ||||
| 				proxyString += proxy; | ||||
| 			}); | ||||
| 			ConfigUtil.setConfigItem('systemProxyRules', proxyString); | ||||
| 			const useSystemProxy = ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 			if (useSystemProxy) { | ||||
| 				ConfigUtil.setConfigItem('proxyRules', proxyString); | ||||
| 	const proxyRule: any = {}; | ||||
| 	if (uri.protocol === 'http:') { | ||||
| 		proxyRules.forEach((proxy: string) => { | ||||
| 			if (proxy.includes('http=')) { | ||||
| 				proxyRule.hostname = proxy.split('http=')[1].trim().split(':')[0]; | ||||
| 				proxyRule.port = proxy.split('http=')[1].trim().split(':')[1]; | ||||
| 			} | ||||
| 		}); | ||||
| 		return proxyRule; | ||||
| 	} | ||||
|  | ||||
| 	if (uri.protocol === 'https:') { | ||||
| 		proxyRules.forEach((proxy: string) => { | ||||
| 			if (proxy.includes('https=')) { | ||||
| 				proxyRule.hostname = proxy.split('https=')[1].trim().split(':')[0]; | ||||
| 				proxyRule.port = proxy.split('https=')[1].trim().split(':')[1]; | ||||
| 			} | ||||
| 		}); | ||||
| 		return proxyRule; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new ProxyUtil(); | ||||
| // TODO: Refactor to async function | ||||
| export async function resolveSystemProxy(mainWindow: Electron.BrowserWindow): Promise<void> { | ||||
| 	const page = mainWindow.webContents; | ||||
| 	const ses = page.session; | ||||
| 	const resolveProxyUrl = 'www.example.com'; | ||||
|  | ||||
| 	// Check HTTP Proxy | ||||
| 	const httpProxy = (async () => { | ||||
| 		const proxy = await ses.resolveProxy('http://' + resolveProxyUrl); | ||||
| 		let httpString = ''; | ||||
| 		if (proxy !== 'DIRECT') { | ||||
| 			// in case of proxy HTTPS url:port, windows gives first word as HTTPS while linux gives PROXY | ||||
| 			// for all other HTTP or direct url:port both uses PROXY | ||||
| 			if (proxy.includes('PROXY') || proxy.includes('HTTPS')) { | ||||
| 				httpString = 'http=' + proxy.split('PROXY')[1] + ';'; | ||||
| 			} | ||||
| 		} | ||||
| 		return httpString; | ||||
| 	})(); | ||||
| 	// Check HTTPS Proxy | ||||
| 	const httpsProxy = (async () => { | ||||
| 		const proxy = await ses.resolveProxy('https://' + resolveProxyUrl); | ||||
| 		let httpsString = ''; | ||||
| 		if (proxy !== 'DIRECT' || proxy.includes('HTTPS')) { | ||||
| 			// in case of proxy HTTPS url:port, windows gives first word as HTTPS while linux gives PROXY | ||||
| 			// for all other HTTP or direct url:port both uses PROXY | ||||
| 			if (proxy.includes('PROXY') || proxy.includes('HTTPS')) { | ||||
| 				httpsString += 'https=' + proxy.split('PROXY')[1] + ';'; | ||||
| 			} | ||||
| 		} | ||||
| 		return httpsString; | ||||
| 	})(); | ||||
|  | ||||
| 	// Check FTP Proxy | ||||
| 	const ftpProxy = (async () => { | ||||
| 		const proxy = await ses.resolveProxy('ftp://' + resolveProxyUrl); | ||||
| 		let ftpString = ''; | ||||
| 		if (proxy !== 'DIRECT') { | ||||
| 			if (proxy.includes('PROXY')) { | ||||
| 				ftpString += 'ftp=' + proxy.split('PROXY')[1] + ';'; | ||||
| 			} | ||||
| 		} | ||||
| 		return ftpString; | ||||
| 	})(); | ||||
|  | ||||
| 	// Check SOCKS Proxy | ||||
| 	const socksProxy = (async () => { | ||||
| 		const proxy = await ses.resolveProxy('socks4://' + resolveProxyUrl); | ||||
| 		let socksString = ''; | ||||
| 		if (proxy !== 'DIRECT') { | ||||
| 			if (proxy.includes('SOCKS5')) { | ||||
| 				socksString += 'socks=' + proxy.split('SOCKS5')[1] + ';'; | ||||
| 			} else if (proxy.includes('SOCKS4')) { | ||||
| 				socksString += 'socks=' + proxy.split('SOCKS4')[1] + ';'; | ||||
| 			} else if (proxy.includes('PROXY')) { | ||||
| 				socksString += 'socks=' + proxy.split('PROXY')[1] + ';'; | ||||
| 			} | ||||
| 		} | ||||
| 		return socksString; | ||||
| 	})(); | ||||
|  | ||||
| 	const values = await Promise.all([httpProxy, httpsProxy, ftpProxy, socksProxy]); | ||||
| 	let proxyString = ''; | ||||
| 	values.forEach(proxy => { | ||||
| 		proxyString += proxy; | ||||
| 	}); | ||||
| 	ConfigUtil.setConfigItem('systemProxyRules', proxyString); | ||||
| 	const useSystemProxy = ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 	if (useSystemProxy) { | ||||
| 		ConfigUtil.setConfigItem('proxyRules', proxyString); | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -1,67 +1,88 @@ | ||||
| import isOnline = require('is-online'); | ||||
| import Logger = require('./logger-util'); | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import type WebView from '../components/webview'; | ||||
| import backoff from 'backoff'; | ||||
| import request from 'request'; | ||||
| import Logger from './logger-util'; | ||||
| import * as RequestUtil from './request-util'; | ||||
| import * as DomainUtil from './domain-util'; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: `domain-util.log`, | ||||
| 	file: 'domain-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| class ReconnectUtil { | ||||
| 	// TODO: TypeScript - Figure out how to annotate serverManagerView | ||||
| 	// it should be ServerManagerView; maybe make it a generic so we can | ||||
| 	// pass the class from main.js | ||||
| 	serverManagerView: any; | ||||
| export default class ReconnectUtil { | ||||
| 	webview: WebView; | ||||
| 	url: string; | ||||
| 	alreadyReloaded: boolean; | ||||
| 	fibonacciBackoff: backoff.Backoff; | ||||
|  | ||||
| 	constructor(serverManagerView: any) { | ||||
| 		this.serverManagerView = serverManagerView; | ||||
| 	constructor(webview: WebView) { | ||||
| 		this.webview = webview; | ||||
| 		this.url = webview.props.url; | ||||
| 		this.alreadyReloaded = false; | ||||
| 		this.clearState(); | ||||
| 	} | ||||
|  | ||||
| 	clearState(): void { | ||||
| 		this.alreadyReloaded = false; | ||||
| 		this.fibonacciBackoff = backoff.fibonacci({ | ||||
| 			initialDelay: 5000, | ||||
| 			maxDelay: 300000 | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	pollInternetAndReload(): void { | ||||
| 		const pollInterval = setInterval(() => { | ||||
| 			this._checkAndReload() | ||||
| 				.then(status => { | ||||
| 					if (status) { | ||||
| 						this.alreadyReloaded = true; | ||||
| 						clearInterval(pollInterval); | ||||
| 					} | ||||
| 				}); | ||||
| 		}, 1500); | ||||
| 	} | ||||
|  | ||||
| 	// TODO: Make this a async function | ||||
| 	_checkAndReload(): Promise<boolean> { | ||||
| 	async isOnline(): Promise<boolean> { | ||||
| 		return new Promise(resolve => { | ||||
| 			if (!this.alreadyReloaded) { // eslint-disable-line no-negated-condition | ||||
| 				isOnline() | ||||
| 					.then((online: boolean) => { | ||||
| 						if (online) { | ||||
| 							if (!this.alreadyReloaded) { | ||||
| 								this.serverManagerView.reloadCurrentView(); | ||||
| 							} | ||||
| 							logger.log('You\'re back online.'); | ||||
| 							return resolve(true); | ||||
| 						} | ||||
|  | ||||
| 						logger.log('There is no internet connection, try checking network cables, modem and router.'); | ||||
| 						const errMsgHolder = document.querySelector('#description'); | ||||
| 						if (errMsgHolder) { | ||||
| 							errMsgHolder.innerHTML = ` | ||||
| 										<div>Your internet connection doesn't seem to work properly!</div> | ||||
| 										<div>Verify that it works and then click try again.</div>`; | ||||
| 						} | ||||
| 						return resolve(false); | ||||
| 					}); | ||||
| 			} else { | ||||
| 				return resolve(true); | ||||
| 			try { | ||||
| 				const ignoreCerts = DomainUtil.shouldIgnoreCerts(this.url); | ||||
| 				if (ignoreCerts === null) { | ||||
| 					return; | ||||
| 				} | ||||
| 				request( | ||||
| 					{ | ||||
| 						url: `${this.url}/static/favicon.ico`, | ||||
| 						...RequestUtil.requestOptions(this.url, ignoreCerts) | ||||
| 					}, | ||||
| 					(error: Error, response: any) => { | ||||
| 						const isValidResponse = | ||||
| 							!error && response.statusCode >= 200 && response.statusCode < 400; | ||||
| 						resolve(isValidResponse); | ||||
| 					} | ||||
| 				); | ||||
| 			} catch (err) { | ||||
| 				logger.log(err); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = ReconnectUtil; | ||||
| 	pollInternetAndReload(): void { | ||||
| 		this.fibonacciBackoff.backoff(); | ||||
| 		this.fibonacciBackoff.on('ready', async () => { | ||||
| 			if (await this._checkAndReload()) { | ||||
| 				this.fibonacciBackoff.reset(); | ||||
| 			} else { | ||||
| 				this.fibonacciBackoff.backoff(); | ||||
| 			} | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	async _checkAndReload(): Promise<boolean> { | ||||
| 		if (this.alreadyReloaded) { | ||||
| 			return true; | ||||
| 		} | ||||
| 		if (await this.isOnline()) { | ||||
| 			ipcRenderer.send('forward-message', 'reload-viewer'); | ||||
| 			logger.log('You\'re back online.'); | ||||
| 			return true; | ||||
| 		} | ||||
| 		logger.log('There is no internet connection, try checking network cables, modem and router.'); | ||||
| 		const errorMessageHolder = document.querySelector('#description'); | ||||
| 		if (errorMessageHolder) { | ||||
| 			errorMessageHolder.innerHTML = ` | ||||
| 						<div>Your internet connection doesn't seem to work properly!</div> | ||||
| 						<div>Verify that it works and then click try again.</div>`; | ||||
| 		} | ||||
| 		return false; | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -1,73 +1,70 @@ | ||||
| import fs = require('fs'); | ||||
| import ConfigUtil = require('./config-util'); | ||||
| import Logger = require('./logger-util'); | ||||
| import ProxyUtil = require('./proxy-util'); | ||||
| import CertificateUtil = require('./certificate-util'); | ||||
| import SystemUtil = require('./system-util'); | ||||
| import { remote } from 'electron'; | ||||
|  | ||||
| import fs from 'fs'; | ||||
| import path from 'path'; | ||||
| import * as ConfigUtil from './config-util'; | ||||
| import Logger from './logger-util'; | ||||
| import * as ProxyUtil from './proxy-util'; | ||||
| import * as CertificateUtil from './certificate-util'; | ||||
| import * as SystemUtil from './system-util'; | ||||
|  | ||||
| const { app } = remote; | ||||
|  | ||||
| const logger = new Logger({ | ||||
| 	file: `request-util.log`, | ||||
| 	file: 'request-util.log', | ||||
| 	timestamp: true | ||||
| }); | ||||
|  | ||||
| let instance: null | RequestUtil = null; | ||||
|  | ||||
| // TODO: TypeScript - Use ProxyRule for the proxy property | ||||
| // we can do this now since we use export = ProxyUtil syntax | ||||
| interface RequestUtilResponse { | ||||
| 	ca: string; | ||||
| 	proxy: string | void | object; | ||||
| 	proxy: string | void | ProxyUtil.ProxyRule; | ||||
| 	ecdhCurve: 'auto'; | ||||
| 	headers: { 'User-Agent': string }; | ||||
| 	rejectUnauthorized: boolean; | ||||
| } | ||||
|  | ||||
| class RequestUtil { | ||||
| 	constructor() { | ||||
| 		if (!instance) { | ||||
| 			instance = this; | ||||
| 		} | ||||
| // ignoreCerts parameter helps in fetching server icon and | ||||
| // other server details when user chooses to ignore certificate warnings | ||||
| export function requestOptions(domain: string, ignoreCerts: boolean): RequestUtilResponse { | ||||
| 	domain = formatUrl(domain); | ||||
| 	const certificate = CertificateUtil.getCertificate( | ||||
| 		encodeURIComponent(domain) | ||||
| 	); | ||||
|  | ||||
| 		return instance; | ||||
| 	let certificateFile = null; | ||||
| 	if (certificate?.includes('/')) { | ||||
| 		// certificate saved using old app version | ||||
| 		certificateFile = certificate; | ||||
| 	} else if (certificate) { | ||||
| 		certificateFile = path.join(`${app.getPath('userData')}/certificates`, certificate); | ||||
| 	} | ||||
|  | ||||
| 	// ignoreCerts parameter helps in fetching server icon and | ||||
| 	// other server details when user chooses to ignore certificate warnings | ||||
| 	requestOptions(domain: string, ignoreCerts: boolean): RequestUtilResponse { | ||||
| 		domain = this.formatUrl(domain); | ||||
| 		const certificate = CertificateUtil.getCertificate( | ||||
| 			encodeURIComponent(domain) | ||||
| 		); | ||||
| 		let certificateLocation = ''; | ||||
| 		if (certificate) { | ||||
| 			// To handle case where certificate has been moved from the location in certificates.json | ||||
| 			try { | ||||
| 				certificateLocation = fs.readFileSync(certificate, 'utf8'); | ||||
| 			} catch (err) { | ||||
| 				logger.warn(`Error while trying to get certificate: ${err}`); | ||||
| 			} | ||||
| 		} | ||||
| 		const proxyEnabled = ConfigUtil.getConfigItem('useManualProxy') || ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 		// If certificate for the domain exists add it as a ca key in the request's parameter else consider only domain as the parameter for request | ||||
| 		// Add proxy as a parameter if it is being used. | ||||
| 		return { | ||||
| 			ca: certificateLocation ? certificateLocation : '', | ||||
| 			proxy: proxyEnabled ? ProxyUtil.getProxy(domain) : '', | ||||
| 			ecdhCurve: 'auto', | ||||
| 			headers: { 'User-Agent': SystemUtil.getUserAgent() }, | ||||
| 			rejectUnauthorized: !ignoreCerts | ||||
| 		}; | ||||
| 	} | ||||
|  | ||||
| 	formatUrl(domain: string): string { | ||||
| 		const hasPrefix = domain.startsWith('http', 0); | ||||
| 		if (hasPrefix) { | ||||
| 			return domain; | ||||
| 		} else { | ||||
| 			return domain.includes('localhost:') ? `http://${domain}` : `https://${domain}`; | ||||
| 	let certificateLocation = ''; | ||||
| 	if (certificate) { | ||||
| 		// To handle case where certificate has been moved from the location in certificates.json | ||||
| 		try { | ||||
| 			certificateLocation = fs.readFileSync(certificateFile, 'utf8'); | ||||
| 		} catch (err) { | ||||
| 			logger.warn(`Error while trying to get certificate: ${err}`); | ||||
| 		} | ||||
| 	} | ||||
| 	const proxyEnabled = ConfigUtil.getConfigItem('useManualProxy') || ConfigUtil.getConfigItem('useSystemProxy'); | ||||
| 	// If certificate for the domain exists add it as a ca key in the request's parameter else consider only domain as the parameter for request | ||||
| 	// Add proxy as a parameter if it is being used. | ||||
| 	return { | ||||
| 		ca: certificateLocation ? certificateLocation : '', | ||||
| 		proxy: proxyEnabled ? ProxyUtil.getProxy(domain) : '', | ||||
| 		ecdhCurve: 'auto', | ||||
| 		headers: { 'User-Agent': SystemUtil.getUserAgent() }, | ||||
| 		rejectUnauthorized: !ignoreCerts | ||||
| 	}; | ||||
| } | ||||
|  | ||||
| const requestUtil = new RequestUtil(); | ||||
| export = requestUtil; | ||||
| function formatUrl(domain: string): string { | ||||
| 	const hasPrefix = domain.startsWith('http', 0); | ||||
| 	if (hasPrefix) { | ||||
| 		return domain; | ||||
| 	} else { | ||||
| 		return domain.includes('localhost:') ? `http://${domain}` : `https://${domain}`; | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -1,14 +1,11 @@ | ||||
| import { init } from '@sentry/electron'; | ||||
|  | ||||
| import isDev = require('electron-is-dev'); | ||||
| import path = require('path'); | ||||
| import dotenv = require('dotenv'); | ||||
| dotenv.config({ path: path.resolve(__dirname, '/../../../../.env') }); | ||||
| import isDev from 'electron-is-dev'; | ||||
|  | ||||
| export const sentryInit = (): void => { | ||||
| 	if (!isDev) { | ||||
| 		init({ | ||||
| 			dsn: process.env.SENTRY_DSN, | ||||
| 			dsn: 'https://628dc2f2864243a08ead72e63f94c7b1@sentry.io/204668', | ||||
| 			// We should ignore this error since it's harmless and we know the reason behind this | ||||
| 			// This error mainly comes from the console logs. | ||||
| 			// This is a temp solution until Sentry supports disabling the console logs | ||||
|   | ||||
| @@ -1,60 +1,45 @@ | ||||
| 'use strict'; | ||||
| import { remote } from 'electron'; | ||||
|  | ||||
| import os = require('os'); | ||||
| import os from 'os'; | ||||
| import * as ConfigUtil from './config-util'; | ||||
|  | ||||
| const { app } = remote; | ||||
| let instance: null | SystemUtil = null; | ||||
|  | ||||
| class SystemUtil { | ||||
| 	connectivityERR: string[]; | ||||
| export const connectivityERR: string[] = [ | ||||
| 	'ERR_INTERNET_DISCONNECTED', | ||||
| 	'ERR_PROXY_CONNECTION_FAILED', | ||||
| 	'ERR_CONNECTION_RESET', | ||||
| 	'ERR_NOT_CONNECTED', | ||||
| 	'ERR_NAME_NOT_RESOLVED', | ||||
| 	'ERR_NETWORK_CHANGED' | ||||
| ]; | ||||
|  | ||||
| 	userAgent: string | null; | ||||
| let userAgent: string | null = null; | ||||
|  | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return instance; | ||||
| export function getOS(): string { | ||||
| 	const platform = os.platform(); | ||||
| 	if (platform === 'darwin') { | ||||
| 		return 'Mac'; | ||||
| 	} else if (platform === 'linux') { | ||||
| 		return 'Linux'; | ||||
| 	} else if (platform === 'win32') { | ||||
| 		if (parseFloat(os.release()) < 6.2) { | ||||
| 			return 'Windows 7'; | ||||
| 		} else { | ||||
| 			instance = this; | ||||
| 			return 'Windows 10'; | ||||
| 		} | ||||
|  | ||||
| 		this.connectivityERR = [ | ||||
| 			'ERR_INTERNET_DISCONNECTED', | ||||
| 			'ERR_PROXY_CONNECTION_FAILED', | ||||
| 			'ERR_CONNECTION_RESET', | ||||
| 			'ERR_NOT_CONNECTED', | ||||
| 			'ERR_NAME_NOT_RESOLVED', | ||||
| 			'ERR_NETWORK_CHANGED' | ||||
| 		]; | ||||
| 		this.userAgent = null; | ||||
|  | ||||
| 		return instance; | ||||
| 	} | ||||
|  | ||||
| 	getOS(): string { | ||||
| 		const platform = os.platform(); | ||||
| 		if (platform === 'darwin') { | ||||
| 			return 'Mac'; | ||||
| 		} else if (platform === 'linux') { | ||||
| 			return 'Linux'; | ||||
| 		} else if (platform === 'win32') { | ||||
| 			if (parseFloat(os.release()) < 6.2) { | ||||
| 				return 'Windows 7'; | ||||
| 			} else { | ||||
| 				return 'Windows 10'; | ||||
| 			} | ||||
| 		} else { | ||||
| 			return ''; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	setUserAgent(webViewUserAgent: string): void { | ||||
| 		this.userAgent = `ZulipElectron/${app.getVersion()} ${webViewUserAgent}`; | ||||
| 	} | ||||
|  | ||||
| 	getUserAgent(): string | null { | ||||
| 		return this.userAgent; | ||||
| 	} else { | ||||
| 		return ''; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| export = new SystemUtil(); | ||||
| export function setUserAgent(webViewUserAgent: string): void { | ||||
| 	userAgent = `ZulipElectron/${app.getVersion()} ${webViewUserAgent}`; | ||||
| } | ||||
|  | ||||
| export function getUserAgent(): string | null { | ||||
| 	if (!userAgent) { | ||||
| 		setUserAgent(ConfigUtil.getConfigItem('userAgent', null)); | ||||
| 	} | ||||
| 	return userAgent; | ||||
| } | ||||
|   | ||||
| @@ -1,29 +0,0 @@ | ||||
| 'use strict'; | ||||
| const path = require("path"); | ||||
| const electron = require("electron"); | ||||
| const i18n = require("i18n"); | ||||
| let instance = null; | ||||
| let app = null; | ||||
| /* To make the util runnable in both main and renderer process */ | ||||
| if (process.type === 'renderer') { | ||||
|     app = electron.remote.app; | ||||
| } | ||||
| else { | ||||
|     app = electron.app; | ||||
| } | ||||
| class TranslationUtil { | ||||
|     constructor() { | ||||
|         if (instance) { | ||||
|             return this; | ||||
|         } | ||||
|         instance = this; | ||||
|         i18n.configure({ | ||||
|             directory: path.join(__dirname, '../../../translations/'), | ||||
|             register: this | ||||
|         }); | ||||
|     } | ||||
|     __(phrase) { | ||||
|         return i18n.__({ phrase, locale: app.getLocale() }); | ||||
|     } | ||||
| } | ||||
| module.exports = new TranslationUtil(); | ||||
| @@ -1,10 +1,7 @@ | ||||
| 'use strict'; | ||||
| import path from 'path'; | ||||
| import electron from 'electron'; | ||||
| import i18n from 'i18n'; | ||||
|  | ||||
| import path = require('path'); | ||||
| import electron = require('electron'); | ||||
| import i18n = require('i18n'); | ||||
|  | ||||
| let instance: TranslationUtil = null; | ||||
| let app: Electron.App = null; | ||||
|  | ||||
| /* To make the util runnable in both main and renderer process */ | ||||
| @@ -14,22 +11,10 @@ if (process.type === 'renderer') { | ||||
| 	app = electron.app; | ||||
| } | ||||
|  | ||||
| class TranslationUtil { | ||||
| 	constructor() { | ||||
| 		if (instance) { | ||||
| 			return this; | ||||
| 		} | ||||
| i18n.configure({ | ||||
| 	directory: path.join(__dirname, '../../../translations/') | ||||
| }); | ||||
|  | ||||
| 		instance = this; | ||||
| 		i18n.configure({ | ||||
| 			directory: path.join(__dirname, '../../../translations/'), | ||||
| 			register: this | ||||
| 		}); | ||||
| 	} | ||||
|  | ||||
| 	__(phrase: string): string { | ||||
| 		return i18n.__({ phrase, locale: app.getLocale() ? app.getLocale() : 'en' }); | ||||
| 	} | ||||
| export function __(phrase: string): string { | ||||
| 	return i18n.__({ phrase, locale: app.getLocale() ? app.getLocale() : 'en' }); | ||||
| } | ||||
|  | ||||
| export = new TranslationUtil(); | ||||
|   | ||||
| @@ -9,14 +9,18 @@ | ||||
|     <body> | ||||
|         <div id="content"> | ||||
|             <div id="picture"><img src="img/zulip_network.png"></div> | ||||
|             <div id="title">Zulip can't connect</div> | ||||
|             <div id="description"> | ||||
|                 <div>Your computer seems to be offline.</div> | ||||
|                 <div>We will keep trying to reconnect, or you can try now.</div> | ||||
|             <div id="title">We can't connect to this organization</div> | ||||
|             <div id="subtitle">This could be because</div> | ||||
|             <ul id="description"> | ||||
|                 <li>You're not online or your proxy is misconfigured.</li> | ||||
|                 <li>There is no Zulip organization hosted at this URL.</li> | ||||
|                 <li>This Zulip organization is temporarily unavailable.</li> | ||||
|                 <li>This Zulip organization has been moved or deleted.</li> | ||||
|             </ul> | ||||
|             <div id="buttons"> | ||||
|                 <div id="reconnect" class="button">Reconnect</div> | ||||
|                 <div id="settings" class="button">Settings</div> | ||||
|             </div> | ||||
|             <div id="reconnect">Try now</div> | ||||
|         </div> | ||||
|     </body> | ||||
|     <script src="js/pages/network.js"></script> | ||||
|     <script>require('./js/shared/preventdrag.js')</script> | ||||
| </html> | ||||
|   | ||||
| @@ -3,48 +3,46 @@ interface DialogBoxError { | ||||
| 	content: string; | ||||
| } | ||||
|  | ||||
| class Messages { | ||||
| 	invalidZulipServerError(domain: string): string { | ||||
| 		return `${domain} does not appear to be a valid Zulip server. Make sure that | ||||
| 			\n • You can connect to that URL in a web browser.\ | ||||
| 			\n • If you need a proxy to connect to the Internet, that you've configured your proxy in the Network settings.\ | ||||
| 			\n • It's a Zulip server. (The oldest supported version is 1.6).\ | ||||
| 			\n • The server has a valid certificate. (You can add custom certificates in Settings > Organizations).`; | ||||
| 	} | ||||
|  | ||||
| 	noOrgsError(domain: string): string { | ||||
| 		return `${domain} does not have any organizations added.\ | ||||
| 		\nPlease contact your server administrator.`; | ||||
| 	} | ||||
|  | ||||
| 	certErrorMessage(domain: string, error: string): string { | ||||
| 		return `Do you trust certificate from ${domain}? \n ${error}`; | ||||
| 	} | ||||
|  | ||||
| 	certErrorDetail(): string { | ||||
| 		return `The organization you're connecting to is either someone impersonating the Zulip server you entered, or the server you're trying to connect to is configured in an insecure way. | ||||
| 		\nIf you have a valid certificate please add it from Settings>Organizations and try to add the organization again. | ||||
| 		\nUnless you have a good reason to believe otherwise, you should not proceed. | ||||
| 		\nYou can click here if you'd like to proceed with the connection.`; | ||||
| 	} | ||||
|  | ||||
| 	enterpriseOrgError(length: number, domains: string[]): DialogBoxError { | ||||
| 		let domainList = ''; | ||||
| 		for (const domain of domains) { | ||||
| 			domainList += `• ${domain}\n`; | ||||
| 		} | ||||
| 		return { | ||||
| 			title: `Could not add the following ${length === 1 ? `organization` : `organizations`}`, | ||||
| 			content: `${domainList}\nPlease contact your system administrator.` | ||||
| 		}; | ||||
| 	} | ||||
|  | ||||
| 	orgRemovalError(url: string): DialogBoxError { | ||||
| 		return { | ||||
| 			title: `Removing ${url} is a restricted operation.`, | ||||
| 			content: `Please contact your system administrator.` | ||||
| 		}; | ||||
| 	} | ||||
| export function invalidZulipServerError(domain: string): string { | ||||
| 	return `${domain} does not appear to be a valid Zulip server. Make sure that | ||||
| 		\n • You can connect to that URL in a web browser.\ | ||||
| 		\n • If you need a proxy to connect to the Internet, that you've configured your proxy in the Network settings.\ | ||||
| 		\n • It's a Zulip server. (The oldest supported version is 1.6).\ | ||||
| 		\n • The server has a valid certificate. (You can add custom certificates in Settings > Organizations). \ | ||||
| 		\n • The SSL is correctly configured for the certificate. Check out the SSL troubleshooting guide - | ||||
| 		\n https://zulip.readthedocs.io/en/stable/production/ssl-certificates.html`; | ||||
| } | ||||
|  | ||||
| export = new Messages(); | ||||
| export function noOrgsError(domain: string): string { | ||||
| 	return `${domain} does not have any organizations added.\ | ||||
| 	\nPlease contact your server administrator.`; | ||||
| } | ||||
|  | ||||
| export function certErrorMessage(domain: string, error: string): string { | ||||
| 	return `Do you trust certificate from ${domain}? \n ${error}`; | ||||
| } | ||||
|  | ||||
| export function certErrorDetail(): string { | ||||
| 	return `The organization you're connecting to is either someone impersonating the Zulip server you entered, or the server you're trying to connect to is configured in an insecure way. | ||||
| 	\nIf you have a valid certificate please add it from Settings>Organizations and try to add the organization again. | ||||
| 	\nUnless you have a good reason to believe otherwise, you should not proceed. | ||||
| 	\nYou can click here if you'd like to proceed with the connection.`; | ||||
| } | ||||
|  | ||||
| export function enterpriseOrgError(length: number, domains: string[]): DialogBoxError { | ||||
| 	let domainList = ''; | ||||
| 	for (const domain of domains) { | ||||
| 		domainList += `• ${domain}\n`; | ||||
| 	} | ||||
| 	return { | ||||
| 		title: `Could not add the following ${length === 1 ? 'organization' : 'organizations'}`, | ||||
| 		content: `${domainList}\nPlease contact your system administrator.` | ||||
| 	}; | ||||
| } | ||||
|  | ||||
| export function orgRemovalError(url: string): DialogBoxError { | ||||
| 	return { | ||||
| 		title: `Removing ${url} is a restricted operation.`, | ||||
| 		content: 'Please contact your system administrator.' | ||||
| 	}; | ||||
| } | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								app/resources/tray/dark/trayosx.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 436 B | 
							
								
								
									
										
											BIN
										
									
								
								app/resources/tray/dark/trayosx@2x.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 900 B | 
							
								
								
									
										
											BIN
										
									
								
								app/resources/tray/dark/trayosx@3x.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 1.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/resources/tray/dark/trayosx@4x.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 1.4 KiB | 
| Before Width: | Height: | Size: 737 B After Width: | Height: | Size: 737 B | 
| Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB | 
| Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB | 
| Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB | 
							
								
								
									
										20
									
								
								app/translations/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,20 @@ | ||||
| # How to help translate Zulip Desktop | ||||
|  | ||||
| These are *generated* files (*) that contain translations of the strings in | ||||
| the app. | ||||
|  | ||||
| You can help translate Zulip Desktop into your language!  We do our | ||||
| translations in Transifex, which is a nice web app for collaborating on | ||||
| translations; a maintainer then syncs those translations into this repo. | ||||
| To help out, [join the Zulip project on | ||||
| Transifex](https://www.transifex.com/zulip/zulip/) and enter translations | ||||
| there.  More details in the [Zulip contributor docs](https://zulip.readthedocs.io/en/latest/translating/translating.html#translators-workflow). | ||||
|  | ||||
| Within that Transifex project, if you'd like to focus on Zulip Desktop, look | ||||
| at `desktop.json`.  The other resources there are for the Zulip web/mobile | ||||
| app, where translations are also very welcome. | ||||
|  | ||||
| (*) One file is an exception: `en.json` is manually maintained as a | ||||
| list of (English) messages in the source code, and is used when we upload to | ||||
| Transifex a list of strings to be translated.  It doesn't contain any | ||||
| translations. | ||||
							
								
								
									
										122
									
								
								app/translations/en-GB.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,122 @@ | ||||
| { | ||||
| 	"Add Organization": "Add Organization", | ||||
| 	"Toggle Do Not Disturb": "Toggle Do Not Disturb", | ||||
| 	"Desktop Settings": "Desktop Settings", | ||||
| 	"Keyboard Shortcuts": "Keyboard Shortcuts", | ||||
| 	"Copy Zulip URL": "Copy Zulip URL", | ||||
| 	"Log Out of Organization": "Log Out of Organization", | ||||
| 	"Services": "Services", | ||||
| 	"Hide": "Hide", | ||||
| 	"Hide Others": "Hide Others", | ||||
| 	"Unhide": "Unhide", | ||||
| 	"Minimize": "Minimize", | ||||
| 	"Close": "Close", | ||||
| 	"Quit": "Quit", | ||||
| 	"Edit": "Edit", | ||||
| 	"Undo": "Undo", | ||||
| 	"Redo": "Redo", | ||||
| 	"Cut": "Cut", | ||||
| 	"Copy": "Copy", | ||||
| 	"Paste": "Paste", | ||||
| 	"Paste and Match Style": "Paste and Match Style", | ||||
| 	"Select All": "Select All", | ||||
| 	"View": "View", | ||||
| 	"Reload": "Reload", | ||||
| 	"Hard Reload": "Hard Reload", | ||||
| 	"Toggle Full Screen": "Toggle Full Screen", | ||||
| 	"Zoom In": "Zoom In", | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"Actual Size": "Actual Size", | ||||
| 	"Toggle Tray Icon": "Toggle Tray Icon", | ||||
| 	"Toggle Sidebar": "Toggle Sidebar", | ||||
| 	"Auto hide Menu bar": "Auto hide Menu bar", | ||||
| 	"History": "History", | ||||
| 	"Back": "Back", | ||||
| 	"Forward": "Forward", | ||||
| 	"Window": "Window", | ||||
| 	"Tools": "Tools", | ||||
| 	"Check for Updates": "Check for Updates", | ||||
| 	"Release Notes": "Release Notes", | ||||
| 	"Factory Reset": "Factory Reset", | ||||
| 	"Download App Logs": "Download App Logs", | ||||
| 	"Toggle DevTools for Zulip App": "Toggle DevTools for Zulip App", | ||||
| 	"Toggle DevTools for Active Tab": "Toggle DevTools for Active Tab", | ||||
| 	"Help": "Help", | ||||
| 	"About Zulip": "About Zulip", | ||||
| 	"Help Center": "Help Center", | ||||
| 	"Report an Issue": "Report an Issue", | ||||
| 	"Switch to Next Organization": "Switch to Next Organization", | ||||
| 	"Switch to Previous Organization": "Switch to Previous Organization", | ||||
| 	"General": "General", | ||||
| 	"Network": "Network", | ||||
| 	"AddServer": "AddServer", | ||||
| 	"Organizations": "Organizations", | ||||
| 	"Shortcuts": "Shortcuts", | ||||
| 	"Settings": "Settings", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Organization URL": "Organization URL", | ||||
| 	"Connect": "Connect", | ||||
| 	"OR": "OR", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Proxy": "Proxy", | ||||
| 	"Use system proxy settings (requires restart)": "Use system proxy settings (requires restart)", | ||||
| 	"Manual proxy configuration": "Manual proxy configuration", | ||||
| 	"script": "script", | ||||
| 	"Proxy rules": "Proxy rules", | ||||
| 	"Proxy bypass rules": "Proxy bypass rules", | ||||
| 	"Save": "Save", | ||||
| 	"Appearance": "Appearance", | ||||
| 	"Show app icon in system tray": "Show app icon in system tray", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Auto hide menu bar (Press Alt key to display)", | ||||
| 	"Show sidebar": "Show sidebar", | ||||
| 	"Show app unread badge": "Show app unread badge", | ||||
| 	"Bounce dock on new private message": "Bounce dock on new private message", | ||||
| 	"Flash taskbar on new message": "Flash taskbar on new message", | ||||
| 	"Desktop Notifications": "Desktop Notifications", | ||||
| 	"Show desktop notifications": "Show desktop notifications", | ||||
| 	"Mute all sounds from Zulip": "Mute all sounds from Zulip", | ||||
| 	"App Updates": "App Updates", | ||||
| 	"Enable auto updates": "Enable auto updates", | ||||
| 	"Get beta updates": "Get beta updates", | ||||
| 	"Functionality": "Functionality", | ||||
| 	"Start app at login": "Start app at login", | ||||
| 	"Always start minimized": "Always start minimized", | ||||
| 	"Enable spellchecker (requires restart)": "Enable spellchecker (requires restart)", | ||||
| 	"Advanced": "Advanced", | ||||
| 	"Enable error reporting (requires restart)": "Enable error reporting (requires restart)", | ||||
| 	"Show downloaded files in file manager": "Show downloaded files in file manager", | ||||
| 	"Add custom CSS": "Add custom CSS", | ||||
| 	"Upload": "Upload", | ||||
| 	"Delete": "Delete", | ||||
| 	"Default download location": "Default download location", | ||||
| 	"Change": "Change", | ||||
| 	"Reset Application Data": "Reset Application Data", | ||||
| 	"This will delete all application data including all added accounts and preferences": "This will delete all application data including all added accounts and preferences", | ||||
| 	"Reset App Data": "Reset App Data", | ||||
| 	"Connected organizations": "Connected organizations", | ||||
| 	"All the connected orgnizations will appear here.": "All the connected orgnizations will appear here.", | ||||
| 	"Connect to another organization": "Connect to another organization", | ||||
| 	"Add Custom Certificates": "Add Custom Certificates", | ||||
| 	"Find accounts by email": "Find accounts by email", | ||||
| 	"All the connected orgnizations will appear here": "All the connected orgnizations will appear here", | ||||
| 	"Disconnect": "Disconnect", | ||||
| 	"Certificate file": "Certificate file", | ||||
| 	"Find accounts": "Find accounts", | ||||
| 	"Tip": "Tip", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "These desktop app shortcuts extend the Zulip webapp's", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"Application Shortcuts": "Application Shortcuts", | ||||
| 	"Reset App Settings": "Reset App Settings", | ||||
| 	"Log Out": "Log Out", | ||||
| 	"Hide Zulip": "Hide Zulip", | ||||
| 	"Quit Zulip": "Quit Zulip", | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"Emoji & Symbols": "Emoji & Symbols", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"Enter Full Screen": "Enter Full Screen", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"File": "File", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading" | ||||
| } | ||||
| @@ -104,5 +104,16 @@ | ||||
| 	"Edit Shortcuts": "Edit Shortcuts", | ||||
| 	"View Shortcuts": "View Shortcuts", | ||||
| 	"History Shortcuts": "History Shortcuts", | ||||
| 	"Window Shortcuts": "Window Shortcuts" | ||||
| 	"Window Shortcuts": "Window Shortcuts", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Force social login in app instead of browser": "Force social login in app instead of browser", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading", | ||||
| 	"Add a Zulip organization": "Add a Zulip organization", | ||||
| 	"Connect": "Connect", | ||||
| 	"OR": "OR", | ||||
| 	"Create a new organization": "Create a new organization", | ||||
| 	"Network and Proxy Settings": "Network and Proxy Settings", | ||||
| 	"YES": "YES", | ||||
| 	"NO": "NO", | ||||
| 	"Are you sure you want to disconnect this organization?": "Are you sure you want to disconnect this organization?" | ||||
| } | ||||
| @@ -113,5 +113,7 @@ | ||||
| 	"Zoom Out": "Zoom Out", | ||||
| 	"Zulip Help": "Zulip Help", | ||||
| 	"keyboard shortcuts": "keyboard shortcuts", | ||||
| 	"script": "script" | ||||
| 	"script": "script", | ||||
| 	"Quit when the window is closed": "Quit when the window is closed", | ||||
| 	"Ask where to save files before downloading": "Ask where to save files before downloading" | ||||
| } | ||||
|   | ||||
| @@ -1,58 +1,58 @@ | ||||
| { | ||||
| 	"About Zulip": "О Зулип", | ||||
| 	"About Zulip": "О Zulip", | ||||
| 	"Actual Size": "Фактический размер", | ||||
| 	"Add Custom Certificates": "Добавить пользовательские сертификаты", | ||||
| 	"Add Organization": "Добавить организацию", | ||||
| 	"Add a Zulip organization": "Добавить организацию Zulip", | ||||
| 	"Add custom CSS": "Добавить собственный CSS", | ||||
| 	"Advanced": "продвинутый", | ||||
| 	"Advanced": "Расширенные", | ||||
| 	"All the connected organizations will appear here": "Все связанные организации появятся здесь", | ||||
| 	"Always start minimized": "Всегда начинайте сворачивать", | ||||
| 	"App Updates": "Обновления приложений", | ||||
| 	"Appearance": "Внешность", | ||||
| 	"Application Shortcuts": "Ярлыки приложений", | ||||
| 	"Always start minimized": "Всегда запускаться свернутым", | ||||
| 	"App Updates": "Обновления приложения", | ||||
| 	"Appearance": "Внешний вид", | ||||
| 	"Application Shortcuts": "Горячие клавиши приложения", | ||||
| 	"Are you sure you want to disconnect this organization?": "Вы уверены, что хотите отключить эту организацию?", | ||||
| 	"Auto hide Menu bar": "Авто скрыть панель меню", | ||||
| 	"Auto hide menu bar (Press Alt key to display)": "Автоматическое скрытие строки меню (нажмите клавишу Alt для отображения)", | ||||
| 	"Back": "назад", | ||||
| 	"Bounce dock on new private message": "Отскок док на новое личное сообщение", | ||||
| 	"Back": "Назад", | ||||
| 	"Bounce dock on new private message": "Прыгающий док на новое личное сообщение", | ||||
| 	"Certificate file": "Файл сертификата", | ||||
| 	"Change": "+ Изменить", | ||||
| 	"Check for Updates": "Проверить наличие обновлений", | ||||
| 	"Close": "близко", | ||||
| 	"Connect": "соединять", | ||||
| 	"Close": "Закрыть", | ||||
| 	"Connect": "Подключиться", | ||||
| 	"Connect to another organization": "Подключиться к другой организации", | ||||
| 	"Connected organizations": "Связанные организации", | ||||
| 	"Copy": "копия", | ||||
| 	"Copy": "Копировать", | ||||
| 	"Copy Zulip URL": "Скопируйте Zulip URL", | ||||
| 	"Create a new organization": "Создать новую организацию", | ||||
| 	"Cut": "Резать", | ||||
| 	"Default download location": "Местоположение загрузки по умолчанию", | ||||
| 	"Delete": "удалять", | ||||
| 	"Desktop App Settings": "Настройки настольного приложения", | ||||
| 	"Desktop Notifications": "Уведомления на рабочем столе", | ||||
| 	"Desktop Settings": "Настройки рабочего стола", | ||||
| 	"Cut": "Вырезать", | ||||
| 	"Default download location": "Местоположение загрузок по умолчанию", | ||||
| 	"Delete": "Удалить", | ||||
| 	"Desktop App Settings": "Настройки приложения", | ||||
| 	"Desktop Notifications": "Уведомления в приложении", | ||||
| 	"Desktop Settings": "Настройки приложения", | ||||
| 	"Disconnect": "Отключить", | ||||
| 	"Download App Logs": "Скачать журналы приложений", | ||||
| 	"Edit": "редактировать", | ||||
| 	"Edit Shortcuts": "Изменить ярлыки", | ||||
| 	"Download App Logs": "Скачать журналы приложения", | ||||
| 	"Edit": "Правка", | ||||
| 	"Edit Shortcuts": "Изменить горячие клавиши", | ||||
| 	"Enable auto updates": "Включить автообновления", | ||||
| 	"Enable error reporting (requires restart)": "Включить отчет об ошибках (требуется перезагрузка)", | ||||
| 	"Enable spellchecker (requires restart)": "Включить проверку орфографии (требуется перезагрузка)", | ||||
| 	"Factory Reset": "Сброс к заводским настройкам", | ||||
| 	"File": "файл", | ||||
| 	"File": "Файл", | ||||
| 	"Find accounts": "Найти аккаунты", | ||||
| 	"Find accounts by email": "Найти аккаунты по электронной почте", | ||||
| 	"Flash taskbar on new message": "Flash-панель задач на новое сообщение", | ||||
| 	"Forward": "Вперед", | ||||
| 	"Functionality": "функциональность", | ||||
| 	"General": "генеральный", | ||||
| 	"Functionality": "Функциональность", | ||||
| 	"General": "Общий", | ||||
| 	"Get beta updates": "Получить бета-обновления", | ||||
| 	"Hard Reload": "Жесткая перезагрузка", | ||||
| 	"Help": "Помогите", | ||||
| 	"Hard Reload": "Принудительная перезагрузка", | ||||
| 	"Help": "Помощь", | ||||
| 	"Help Center": "Центр помощи", | ||||
| 	"History": "история", | ||||
| 	"History Shortcuts": "Ярлыки истории", | ||||
| 	"History": "История", | ||||
| 	"History Shortcuts": "Горячие клавиши истории", | ||||
| 	"Keyboard Shortcuts": "Горячие клавиши", | ||||
| 	"Log Out": "Выйти", | ||||
| 	"Log Out of Organization": "Выйти из организации", | ||||
| @@ -61,28 +61,28 @@ | ||||
| 	"Mute all sounds from Zulip": "Отключить все звуки от Zulip", | ||||
| 	"NO": "НЕТ", | ||||
| 	"Network": "сеть", | ||||
| 	"OR": "ИЛИ ЖЕ", | ||||
| 	"OR": "ИЛИ", | ||||
| 	"Organization URL": "URL организации", | ||||
| 	"Organizations": "организации", | ||||
| 	"Organizations": "Организации", | ||||
| 	"Paste": "Вставить", | ||||
| 	"Paste and Match Style": "Вставить и соответствовать стилю", | ||||
| 	"Proxy": "полномочие", | ||||
| 	"Proxy": "Прокси", | ||||
| 	"Proxy bypass rules": "Правила обхода прокси", | ||||
| 	"Proxy rules": "Правила прокси", | ||||
| 	"Quit": "Уволиться", | ||||
| 	"Proxy rules": "Правила проксирования", | ||||
| 	"Quit": "Выйти", | ||||
| 	"Quit Zulip": "Выйти из Zulip", | ||||
| 	"Redo": "переделывать", | ||||
| 	"Redo": "Повторить", | ||||
| 	"Release Notes": "Примечания к выпуску", | ||||
| 	"Reload": "перезагружать", | ||||
| 	"Reload": "Перезагрузить", | ||||
| 	"Report an Issue": "Сообщить о проблеме", | ||||
| 	"Reset App Data": "Сбросить данные приложения", | ||||
| 	"Reset App Settings": "Сбросить настройки приложения", | ||||
| 	"Reset Application Data": "Сбросить данные приложения", | ||||
| 	"Save": "Сохранить", | ||||
| 	"Select All": "Выбрать все", | ||||
| 	"Settings": "настройки", | ||||
| 	"Shortcuts": "Ярлыки", | ||||
| 	"Show App Logs": "Показать журналы приложений", | ||||
| 	"Settings": "Настройки", | ||||
| 	"Shortcuts": "Горячие клавиши", | ||||
| 	"Show App Logs": "Показать журналы приложения", | ||||
| 	"Show app icon in system tray": "Показать значок приложения в системном трее", | ||||
| 	"Show app unread badge": "Показать непрочитанный значок приложения", | ||||
| 	"Show desktop notifications": "Показывать уведомления на рабочем столе", | ||||
| @@ -91,25 +91,25 @@ | ||||
| 	"Start app at login": "Запустить приложение при входе", | ||||
| 	"Switch to Next Organization": "Переключиться на следующую организацию", | ||||
| 	"Switch to Previous Organization": "Переключиться на предыдущую организацию", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Эти ярлыки настольных приложений расширяют возможности веб-приложения Zulip.", | ||||
| 	"These desktop app shortcuts extend the Zulip webapp's": "Эти горячие клавиши приложения расширяют возможности Zulip.", | ||||
| 	"This will delete all application data including all added accounts and preferences": "Это удалит все данные приложения, включая все добавленные учетные записи и настройки", | ||||
| 	"Tip": "Совет", | ||||
| 	"Toggle DevTools for Active Tab": "Переключить DevTools для активной вкладки", | ||||
| 	"Toggle DevTools for Zulip App": "Переключить DevTools для приложения Zulip", | ||||
| 	"Toggle Do Not Disturb": "Переключить не беспокоить", | ||||
| 	"Toggle Do Not Disturb": "Переключить в режим не беспокоить", | ||||
| 	"Toggle Full Screen": "Включить полноэкранный режим", | ||||
| 	"Toggle Sidebar": "Переключить боковую панель", | ||||
| 	"Toggle Tray Icon": "Значок переключателя в трее", | ||||
| 	"Tools": "инструменты", | ||||
| 	"Undo": "расстегивать", | ||||
| 	"Toggle Tray Icon": "Переключить Значок в трее", | ||||
| 	"Tools": "Инструменты", | ||||
| 	"Undo": "Повторить", | ||||
| 	"Upload": "Загрузить", | ||||
| 	"Use system proxy settings (requires restart)": "Использовать настройки системного прокси (требуется перезагрузка)", | ||||
| 	"View": "Посмотреть", | ||||
| 	"View Shortcuts": "Посмотреть ярлыки", | ||||
| 	"View": "Вид", | ||||
| 	"View Shortcuts": "Посмотреть горячие клавиши окна", | ||||
| 	"Window": "Окно", | ||||
| 	"Window Shortcuts": "Ярлыки окон", | ||||
| 	"Window Shortcuts": "Горячие клавиши окна", | ||||
| 	"YES": "ДА", | ||||
| 	"Zoom In": "Приблизить", | ||||
| 	"Zoom In": "Увеличить", | ||||
| 	"Zoom Out": "Уменьшить", | ||||
| 	"Zulip Help": "Zulip Помощь", | ||||
| 	"keyboard shortcuts": "горячие клавиши", | ||||
|   | ||||
| @@ -5,10 +5,10 @@ platform: | ||||
| os: Previous Visual Studio 2015 | ||||
|  | ||||
| cache: | ||||
|   - node_modules | ||||
|   - node_modules -> appveyor.yml | ||||
|  | ||||
| install: | ||||
|   - ps: Install-Product node 8 x64 | ||||
|   - ps: Install-Product node 10 x64 | ||||
|   - git reset --hard HEAD | ||||
|   - npm install npm -g | ||||
|   - node --version | ||||
|   | ||||
							
								
								
									
										8
									
								
								build/entitlements.mac.plist
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,8 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||||
| <plist version="1.0"> | ||||
|   <dict> | ||||
|     <key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||||
|     <true/> | ||||
|   </dict> | ||||
| </plist> | ||||
							
								
								
									
										60
									
								
								changelog.md
									
									
									
									
									
								
							
							
						
						| @@ -2,6 +2,66 @@ | ||||
|  | ||||
| All notable changes to the Zulip desktop app are documented in this file. | ||||
|  | ||||
| ### v5.0.0 --2020-03-30 | ||||
|  | ||||
| **Security fixes**: | ||||
| * CVE-2020-10856: Enable Electron context isolation. (Reported by Matt Austin.) | ||||
| * CVE-2020-10857: Fix unsafe use of `shell.openExternal`/`shell.openItem`. (Reported by Matt Austin.) | ||||
|   * Downloaded files will no longer be opened directly; the previous option to show downloaded files in the file manager is now always on. | ||||
| * CVE-2020-10858: Add permission request handler to guard against audio/video recording by a malicious server. (Reported by Matt Austin.) | ||||
|  | ||||
| **New features**: | ||||
| * Add an option to prompt for the location to save each downloaded file. | ||||
|  | ||||
| **Fixes**: | ||||
| * Fix automatic launching at startup. | ||||
| * Fix Undo and Redo functionality on macOS. | ||||
|  | ||||
| **Dependencies**: | ||||
| * Upgrade all dependencies, including Electron 8.0.3. | ||||
| * Remove `assert`, `cp-file`, `dotenv`, `electron-debug`, and `wurl`. | ||||
|  | ||||
| **Deprecations**: | ||||
| * Since Electron upstream has discontinued support for 32-bit Linux, we will only provide 32-bit Linux builds on a best effort basis, and they will likely be removed in a future release. | ||||
|  | ||||
| ### v4.0.3 --2020-02-29 | ||||
|  | ||||
| **Security fixes**: | ||||
| * CVE-2020-9443: Do not disable web security in the Electron webview. (Reported by Matt Austin.) | ||||
|  | ||||
| ### v4.0.2-beta --2019-11-13 | ||||
|  | ||||
| **New features**: | ||||
| * Add support for MSI installers. | ||||
| * Show badge count on Linux. | ||||
| * Sync system presence info to web app. | ||||
| * Add option to open notification settings from the context menu of organization icons in the sidebar.  | ||||
| * Tackle network issues with each Zulip organization independently.  | ||||
| * Add option to quit on closing the window. | ||||
| * Make certificate location dynamic. | ||||
| * Add option to specify network settings when adding a new organization. | ||||
|  | ||||
| **Enhancements**: | ||||
| * Load last active tab before others, speeding up user experience and eliminating flashing of server icons.  | ||||
| * Improve UX for notification settings. | ||||
| * Set User-Agent from the main process for communication with the Zulip API. | ||||
| * Add SSL troubleshooting guide in error message when adding an organization fails. | ||||
|  | ||||
| **Fixes**: | ||||
| * Fix translations for `ru` locales. | ||||
| * Fix trailing brackets in settings page.  | ||||
| * Fix broken icon issue faced by the snap package on Linux.  | ||||
| * Reactivate `network.js` script. | ||||
| * Enable notarization for macOS Catalina.  | ||||
|  | ||||
| **Documentation**: | ||||
| * Document enterprise configuration features.  | ||||
| * Update the Electron tutorial guide.  | ||||
| * Explicitly address where to report bugs in `README.md`.  | ||||
| * Fix typo in the link to server/webapp repository in `README.md`.  | ||||
| * Add documentation for translation. | ||||
|  | ||||
|  | ||||
| ### v4.0.0 --2019-08-08 | ||||
|  | ||||
| **New features**: | ||||
|   | ||||
| @@ -9,7 +9,7 @@ To build and run the app from source, you'll need the following: | ||||
|  | ||||
| * [Git](http://git-scm.com/book/en/v2/Getting-Started-Installing-Git) | ||||
|   * Use our [Git Guide](https://zulip.readthedocs.io/en/latest/git/setup.html) to get started with Git and GitHub. | ||||
| * [Node.js](https://nodejs.org) >= v6.9.0 | ||||
| * [Node.js](https://nodejs.org) >= v10.16.3 | ||||
|   * [NPM](https://www.npmjs.com/get-npm) and | ||||
|     [node-gyp](https://github.com/nodejs/node-gyp#installation), | ||||
|     if they don't come bundled with your Node.js installation | ||||
|   | ||||
| @@ -24,4 +24,4 @@ If you'd like to remove organizations and have admin access, you'll need to chan | ||||
|  | ||||
| It also turns off automatic updates for every Zulip user on the same machine.  | ||||
|  | ||||
| > Currently, we only support `presetOrganizations` and `autoUpdate` settings. We are working on other settings as well, and will update this page when we add support for more. | ||||
| Currently, we only support `presetOrganizations` and `autoUpdate` settings. We are working on other settings as well, and will update this page when we add support for more. | ||||
|   | ||||
							
								
								
									
										30
									
								
								gulpfile.js
									
									
									
									
									
								
							
							
						
						| @@ -5,14 +5,14 @@ const electron = require('electron-connect').server.create({ | ||||
| }); | ||||
| const tape = require('gulp-tape'); | ||||
| const tapColorize = require('tap-colorize'); | ||||
| const ts = require("gulp-typescript"); | ||||
| const tsProject = ts.createProject("tsconfig.json"); | ||||
| const ts = require('gulp-typescript'); | ||||
| const tsProject = ts.createProject('tsconfig.json'); | ||||
|  | ||||
| const glob = require('glob'); | ||||
| const { execSync } = require('child_process'); | ||||
| const {execSync} = require('child_process'); | ||||
|  | ||||
| const baseFilePattern = 'app/+(main|renderer)/**/*'; | ||||
| const globOptions = { cwd: __dirname }; | ||||
| const globOptions = {cwd: __dirname}; | ||||
| const jsFiles = glob.sync(baseFilePattern + '.js', globOptions); | ||||
| const tsFiles = glob.sync(baseFilePattern + '.ts', globOptions); | ||||
| if (jsFiles.length !== tsFiles.length) { | ||||
| @@ -21,18 +21,18 @@ if (jsFiles.length !== tsFiles.length) { | ||||
| 	execSync(`${npx} tsc`); | ||||
| } | ||||
|  | ||||
| gulp.task("compile", function () { | ||||
|     return tsProject.src() | ||||
|         .pipe(tsProject()) | ||||
|         .js.pipe(gulp.dest("app")); | ||||
| gulp.task('compile', () => { | ||||
| 	return tsProject.src() | ||||
| 		.pipe(tsProject()) | ||||
| 		.js.pipe(gulp.dest('app')); | ||||
| }); | ||||
|  | ||||
| gulp.task('dev', () => { | ||||
|   // Start browser process | ||||
| 	// Start browser process | ||||
| 	electron.start(); | ||||
|   // Restart browser process | ||||
| 	// Restart browser process | ||||
| 	gulp.watch('app/main/*.ts', gulp.series('compile', 'restart:browser')); | ||||
|   // Reload renderer process | ||||
| 	// Reload renderer process | ||||
| 	gulp.watch('app/renderer/css/*.css', gulp.series('reload:renderer')); | ||||
| 	gulp.watch('app/renderer/*.html', gulp.series('reload:renderer')); | ||||
| 	gulp.watch('app/renderer/js/**/*.ts', gulp.series('compile', 'reload:renderer')); | ||||
| @@ -45,16 +45,16 @@ gulp.task('restart:browser', done => { | ||||
| }); | ||||
|  | ||||
| gulp.task('reload:renderer', done => { | ||||
|   // Reload renderer process | ||||
| 	// Reload renderer process | ||||
| 	electron.reload(); | ||||
| 	done(); | ||||
| }); | ||||
|  | ||||
| gulp.task('test-e2e', () => { | ||||
| 	return gulp.src('tests/*.js') | ||||
| 	.pipe(tape({ | ||||
| 		reporter: tapColorize() | ||||
| 	})); | ||||
| 		.pipe(tape({ | ||||
| 			reporter: tapColorize() | ||||
| 		})); | ||||
| }); | ||||
|  | ||||
| gulp.task('default', gulp.parallel('dev', 'test-e2e')); | ||||
|   | ||||
							
								
								
									
										12981
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
							
								
								
									
										215
									
								
								package.json
									
									
									
									
									
								
							
							
						
						| @@ -1,7 +1,7 @@ | ||||
| { | ||||
|   "name": "zulip", | ||||
|   "productName": "Zulip", | ||||
|   "version": "4.0.0", | ||||
|   "version": "5.0.0", | ||||
|   "main": "./app/main", | ||||
|   "description": "Zulip Desktop App", | ||||
|   "license": "Apache-2.0", | ||||
| @@ -18,18 +18,18 @@ | ||||
|     "url": "https://github.com/zulip/zulip-desktop/issues" | ||||
|   }, | ||||
|   "engines": { | ||||
|     "node": ">=6.0.0" | ||||
|     "node": ">=10.0.0" | ||||
|   }, | ||||
|   "scripts": { | ||||
|     "start": "node tools/run-dev", | ||||
|     "clean-ts-files": "git clean app/*.js -xf", | ||||
|     "clean-ts-files": "git clean app/*.js -e node_modules -xf", | ||||
|     "watch-ts": "tsc -w", | ||||
|     "reinstall": "node ./tools/reinstall-node-modules.js", | ||||
|     "postinstall": "electron-builder install-app-deps", | ||||
|     "lint-css": "stylelint app/renderer/css/*.css", | ||||
|     "lint-html": "./node_modules/.bin/htmlhint \"app/renderer/*.html\" ", | ||||
|     "lint-js": "xo", | ||||
|     "test": "npm run lint-html && npm run lint-css && npm run lint-js", | ||||
|     "test": "tsc --noEmit && npm run lint-html && npm run lint-css && npm run lint-js", | ||||
|     "test-e2e": "gulp test-e2e", | ||||
|     "compile": "gulp compile", | ||||
|     "dev": "gulp dev && npm test", | ||||
| @@ -43,24 +43,29 @@ | ||||
|     "test" | ||||
|   ], | ||||
|   "build": { | ||||
|     "afterSign": "./scripts/notarize.js", | ||||
|     "appId": "org.zulip.zulip-electron", | ||||
|     "asar": true, | ||||
|     "asarUnpack": [ | ||||
|       "**/*.node" | ||||
|     ], | ||||
|     "files": [ | ||||
|       "**/*", | ||||
|       "!docs${/*}", | ||||
|       "!node_modules/@paulcbetts/cld/deps/cld${/*}" | ||||
|       "app/**/*", | ||||
|       "!**/node_modules/cld/deps/cld" | ||||
|     ], | ||||
|     "copyright": "©2019 Kandra Labs, Inc.", | ||||
|     "mac": { | ||||
|       "category": "public.app-category.productivity", | ||||
|       "darkModeSupport": true, | ||||
|       "artifactName": "${productName}-${version}-${arch}.${ext}" | ||||
|       "artifactName": "${productName}-${version}-${arch}.${ext}", | ||||
|       "hardenedRuntime": true, | ||||
|       "entitlements": "build/entitlements.mac.plist", | ||||
|       "entitlementsInherit": "build/entitlements.mac.plist", | ||||
|       "gatekeeperAssess": false | ||||
|     }, | ||||
|     "linux": { | ||||
|       "category": "Chat;GNOME;GTK;Network;InstantMessaging", | ||||
|       "icon": "build/icon.icns", | ||||
|       "packageCategory": "GNOME;GTK;Network;InstantMessaging", | ||||
|       "description": "Zulip Desktop Client for Linux", | ||||
|       "target": [ | ||||
| @@ -110,6 +115,13 @@ | ||||
|             "x64", | ||||
|             "ia32" | ||||
|           ] | ||||
|         }, | ||||
|         { | ||||
|           "target": "msi", | ||||
|           "arch": [ | ||||
|             "x64", | ||||
|             "ia32" | ||||
|           ] | ||||
|         } | ||||
|       ], | ||||
|       "icon": "build/icon.ico", | ||||
| @@ -130,96 +142,117 @@ | ||||
|     "Desktop app", | ||||
|     "InstantMessaging" | ||||
|   ], | ||||
|   "dependencies": { | ||||
|     "@electron-elements/send-feedback": "^1.0.8", | ||||
|     "@sentry/electron": "^1.3.0", | ||||
|     "adm-zip": "^0.4.14", | ||||
|     "auto-launch": "^5.0.5", | ||||
|     "backoff": "^2.5.0", | ||||
|     "electron-is-dev": "^1.1.0", | ||||
|     "electron-log": "^4.1.0", | ||||
|     "electron-spellchecker": "^2.2.1", | ||||
|     "electron-updater": "^4.2.5", | ||||
|     "electron-window-state": "^5.0.3", | ||||
|     "escape-html": "^1.0.3", | ||||
|     "fs-extra": "^9.0.0", | ||||
|     "i18n": "^0.8.6", | ||||
|     "node-json-db": "^1.0.3", | ||||
|     "request": "^2.88.2", | ||||
|     "rxjs": "^5.5.12", | ||||
|     "semver": "^7.1.3" | ||||
|   }, | ||||
|   "optionalDependencies": { | ||||
|     "node-mac-notifier": "^1.1.0" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@types/adm-zip": "^0.4.32", | ||||
|     "@types/dotenv": "6.1.1", | ||||
|     "@typescript-eslint/eslint-plugin": "1.10.2", | ||||
|     "@typescript-eslint/parser": "1.10.2", | ||||
|     "@vitalets/google-translate-api": "2.8.0", | ||||
|     "assert": "1.4.1", | ||||
|     "cp-file": "5.0.0", | ||||
|     "devtron": "1.4.0", | ||||
|     "electron": "3.1.10", | ||||
|     "electron-builder": "20.40.2", | ||||
|     "electron-connect": "0.6.2", | ||||
|     "electron-debug": "1.4.0", | ||||
|     "eslint-config-xo-typescript": "0.14.0", | ||||
|     "fs-extra": "8.1.0", | ||||
|     "gulp": "4.0.0", | ||||
|     "gulp-tape": "0.0.9", | ||||
|     "gulp-typescript": "5.0.1", | ||||
|     "htmlhint": "0.11.0", | ||||
|     "is-ci": "1.0.10", | ||||
|     "nodemon": "1.14.11", | ||||
|     "pre-commit": "1.2.2", | ||||
|     "spectron": "5.0.0", | ||||
|     "stylelint": "9.10.1", | ||||
|     "tap-colorize": "1.2.0", | ||||
|     "tape": "4.8.0", | ||||
|     "typescript": "3.5.2", | ||||
|     "xo": "0.24.0" | ||||
|     "@types/auto-launch": "^5.0.1", | ||||
|     "@types/backoff": "^2.5.1", | ||||
|     "@types/electron-spellchecker": "^1.1.2", | ||||
|     "@types/escape-html": "0.0.20", | ||||
|     "@types/fs-extra": "^8.1.0", | ||||
|     "@types/i18n": "^0.8.6", | ||||
|     "@types/node": "^12.12.31", | ||||
|     "@types/request": "^2.48.4", | ||||
|     "@types/requestidlecallback": "^0.3.1", | ||||
|     "@typescript-eslint/eslint-plugin": "^2.25.0", | ||||
|     "@typescript-eslint/parser": "^2.25.0", | ||||
|     "@vitalets/google-translate-api": "^3.0.0", | ||||
|     "devtron": "^1.4.0", | ||||
|     "dotenv": "^8.2.0", | ||||
|     "electron": "^8.1.1", | ||||
|     "electron-builder": "^22.4.1", | ||||
|     "electron-connect": "^0.6.3", | ||||
|     "electron-notarize": "^0.2.1", | ||||
|     "eslint-config-xo-typescript": "^0.26.0", | ||||
|     "glob": "^7.1.6", | ||||
|     "gulp": "^4.0.2", | ||||
|     "gulp-tape": "^1.0.0", | ||||
|     "gulp-typescript": "^6.0.0-alpha.1", | ||||
|     "htmlhint": "^0.11.0", | ||||
|     "nodemon": "^2.0.2", | ||||
|     "pre-commit": "^1.2.2", | ||||
|     "rimraf": "^3.0.2", | ||||
|     "spectron": "^10.0.1", | ||||
|     "stylelint": "^13.2.1", | ||||
|     "tap-colorize": "^1.2.0", | ||||
|     "tape": "^4.13.2", | ||||
|     "typescript": "^3.8.3", | ||||
|     "xo": "^0.28.0" | ||||
|   }, | ||||
|   "xo": { | ||||
|     "extends": "xo-typescript", | ||||
|     "extensions": [ | ||||
|       "ts" | ||||
|     ], | ||||
|     "parserOptions": { | ||||
|       "ecmaVersion": 6, | ||||
|       "sourceType": "module", | ||||
|       "ecmaFeatures": { | ||||
|         "globalReturn": true, | ||||
|         "modules": true | ||||
|       } | ||||
|     }, | ||||
|     "esnext": true, | ||||
|     "overrides": [ | ||||
|       { | ||||
|         "files": "app/**/*.ts", | ||||
|         "rules": { | ||||
|           "max-lines": [ | ||||
|             "warn", | ||||
|             { | ||||
|               "max": 800, | ||||
|               "skipBlankLines": true, | ||||
|               "skipComments": true | ||||
|             } | ||||
|           ], | ||||
|           "no-warning-comments": 0, | ||||
|           "object-curly-spacing": 0, | ||||
|           "capitalized-comments": 0, | ||||
|           "no-else-return": 0, | ||||
|           "no-path-concat": 0, | ||||
|           "no-alert": 0, | ||||
|           "guard-for-in": 0, | ||||
|           "prefer-promise-reject-errors": 0, | ||||
|           "import/no-unresolved": 0, | ||||
|           "import/no-extraneous-dependencies": 0, | ||||
|           "no-prototype-builtins": 0, | ||||
|           "lines-between-class-members": 0, | ||||
|           "padding-line-between-statements": 0, | ||||
|           "quotes": 0, | ||||
|           "unicorn/catch-error-name": 0, | ||||
|           "unicorn/no-console-spaces": 0, | ||||
|           "node/no-deprecated-api": 0, | ||||
|           "@typescript-eslint/member-ordering": "never", | ||||
|           "@typescript-eslint/restrict-plus-operands": "never", | ||||
|           "import/default": 0, | ||||
|           "@typescript-eslint/no-unused-vars": 0 | ||||
|     "rules": { | ||||
|       "@typescript-eslint/member-ordering": "off", | ||||
|       "@typescript-eslint/no-dynamic-delete": "off", | ||||
|       "@typescript-eslint/no-unused-vars": "off", | ||||
|       "@typescript-eslint/restrict-plus-operands": "off", | ||||
|       "@typescript-eslint/restrict-template-expressions": "off", | ||||
|       "capitalized-comments": "off", | ||||
|       "import/no-mutable-exports": "off", | ||||
|       "import/unambiguous": "error", | ||||
|       "max-lines": [ | ||||
|         "warn", | ||||
|         { | ||||
|           "max": 900, | ||||
|           "skipBlankLines": true, | ||||
|           "skipComments": true | ||||
|         } | ||||
|       } | ||||
|     ], | ||||
|     "ignore": [ | ||||
|       "tests/*.js", | ||||
|       "tools/locale-helper/*.js", | ||||
|       "*/**/*.js", | ||||
|       "*.js", | ||||
|       "typings.d.ts" | ||||
|     ], | ||||
|       ], | ||||
|       "no-alert": "off", | ||||
|       "no-else-return": "off", | ||||
|       "no-warning-comments": "off", | ||||
|       "object-curly-spacing": "off", | ||||
|       "padding-line-between-statements": "off", | ||||
|       "strict": "error", | ||||
|       "unicorn/catch-error-name": "off", | ||||
|       "unicorn/string-content": "off" | ||||
|     }, | ||||
|     "envs": [ | ||||
|       "node", | ||||
|       "browser", | ||||
|       "mocha" | ||||
|       "browser" | ||||
|     ], | ||||
|     "overrides": [ | ||||
|       { | ||||
|         "files": [ | ||||
|           "app/renderer/js/injected.ts", | ||||
|           "gulpfile.js", | ||||
|           "scripts/notarize.js", | ||||
|           "tests/**/*.js", | ||||
|           "tools/locale-helper/index.js", | ||||
|           "tools/reinstall-node-modules.js" | ||||
|         ], | ||||
|         "parserOptions": { | ||||
|           "sourceType": "script" | ||||
|         } | ||||
|       }, | ||||
|       { | ||||
|         "files": [ | ||||
|           "**/*.d.ts" | ||||
|         ], | ||||
|         "rules": { | ||||
|           "import/unambiguous": "off" | ||||
|         } | ||||
|       } | ||||
|     ] | ||||
|   } | ||||
| } | ||||
|   | ||||
							
								
								
									
										23
									
								
								scripts/notarize.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,23 @@ | ||||
| 'use strict'; | ||||
| const path = require('path'); | ||||
| const dotenv = require('dotenv'); | ||||
|  | ||||
| dotenv.config({path: path.join(__dirname, '/../.env')}); | ||||
|  | ||||
| const {notarize} = require('electron-notarize'); | ||||
|  | ||||
| exports.default = async function (context) { | ||||
| 	const {electronPlatformName, appOutDir} = context; | ||||
| 	if (electronPlatformName !== 'darwin') { | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	const appName = context.packager.appInfo.productFilename; | ||||
|  | ||||
| 	return notarize({ | ||||
| 		appBundleId: 'org.zulip.zulip-electron', | ||||
| 		appPath: `${appOutDir}/${appName}.app`, | ||||
| 		appleId: process.env.APPLE_ID, | ||||
| 		appleIdPassword: process.env.APPLE_ID_PASS | ||||
| 	}); | ||||
| }; | ||||
| @@ -1,7 +1,7 @@ | ||||
| const path = require('path') | ||||
| 'use strict'; | ||||
|  | ||||
| const TEST_APP_PRODUCT_NAME = 'ZulipTest' | ||||
| const TEST_APP_PRODUCT_NAME = 'ZulipTest'; | ||||
|  | ||||
| module.exports = { | ||||
|   TEST_APP_PRODUCT_NAME | ||||
| } | ||||
| 	TEST_APP_PRODUCT_NAME | ||||
| }; | ||||
|   | ||||
| @@ -1,183 +0,0 @@ | ||||
| { | ||||
|     "name": "zulip", | ||||
|     "productName": "Zulip", | ||||
|     "version": "2.4.0", | ||||
|     "main": "../../app/main", | ||||
|     "description": "Zulip Desktop App", | ||||
|     "license": "Apache-2.0", | ||||
|     "copyright": "Kandra Labs, Inc.", | ||||
|     "author": { | ||||
|       "name": "Kandra Labs, Inc.", | ||||
|       "email": "support@zulipchat.com" | ||||
|     }, | ||||
|     "repository": { | ||||
|       "type": "git", | ||||
|       "url": "https://github.com/zulip/zulip-electron.git" | ||||
|     }, | ||||
|     "bugs": { | ||||
|       "url": "https://github.com/zulip/zulip-electron/issues" | ||||
|     }, | ||||
|     "engines": { | ||||
|       "node": ">=6.0.0" | ||||
|     }, | ||||
|     "scripts": { | ||||
|       "start": "electron app --disable-http-cache --no-electron-connect", | ||||
|       "reinstall": "node ./tools/reinstall-node-modules.js", | ||||
|       "postinstall": "electron-builder install-app-deps", | ||||
|       "test": "xo", | ||||
|       "test-e2e": "gulp test-e2e", | ||||
|       "dev": "gulp dev & nodemon --watch app/main --watch app/renderer --exec 'npm test' -e html,css,js", | ||||
|       "pack": "electron-builder --dir", | ||||
|       "dist": "electron-builder", | ||||
|       "mas": "electron-builder --mac mas", | ||||
|       "travis": "cd ./scripts && ./travis-build-test.sh", | ||||
|       "build-locales": "node tools/locale-helper" | ||||
|     }, | ||||
|     "pre-commit": [ | ||||
|       "test" | ||||
|     ], | ||||
|     "build": { | ||||
|       "appId": "org.zulip.zulip-electron", | ||||
|       "asar": true, | ||||
|       "files": [ | ||||
|         "**/*", | ||||
|         "!docs${/*}", | ||||
|         "!node_modules/@paulcbetts/cld/deps/cld${/*}" | ||||
|       ], | ||||
|       "copyright": "©2017 Kandra Labs, Inc.", | ||||
|       "mac": { | ||||
|         "category": "public.app-category.productivity", | ||||
|         "artifactName": "${productName}-${version}-${arch}.${ext}" | ||||
|       }, | ||||
|       "linux": { | ||||
|         "category": "Chat;GNOME;GTK;Network;InstantMessaging", | ||||
|         "packageCategory": "GNOME;GTK;Network;InstantMessaging", | ||||
|         "description": "Zulip Desktop Client for Linux", | ||||
|         "target": [ | ||||
|           "deb", | ||||
|           "zip", | ||||
|           "AppImage", | ||||
|           "snap" | ||||
|         ], | ||||
|         "maintainer": "Akash Nimare <svnitakash@gmail.com>", | ||||
|         "artifactName": "${productName}-${version}-${arch}.${ext}" | ||||
|       }, | ||||
|       "deb": { | ||||
|         "synopsis": "Zulip Desktop App", | ||||
|         "afterInstall": "./scripts/debian-add-repo.sh", | ||||
|         "afterRemove": "./scripts/debian-uninstaller.sh" | ||||
|       }, | ||||
|       "snap": { | ||||
|         "synopsis": "Zulip Desktop App" | ||||
|       }, | ||||
|       "dmg": { | ||||
|         "background": "build/appdmg.png", | ||||
|         "icon": "build/icon.icns", | ||||
|         "iconSize": 100, | ||||
|         "contents": [ | ||||
|           { | ||||
|             "x": 380, | ||||
|             "y": 280, | ||||
|             "type": "link", | ||||
|             "path": "/Applications" | ||||
|           }, | ||||
|           { | ||||
|             "x": 110, | ||||
|             "y": 280, | ||||
|             "type": "file" | ||||
|           } | ||||
|         ], | ||||
|         "window": { | ||||
|           "width": 500, | ||||
|           "height": 500 | ||||
|         } | ||||
|       }, | ||||
|       "win": { | ||||
|         "target": [ | ||||
|           { | ||||
|             "target": "nsis-web", | ||||
|             "arch": [ | ||||
|               "x64", | ||||
|               "ia32" | ||||
|             ] | ||||
|           } | ||||
|         ], | ||||
|         "icon": "build/icon.ico", | ||||
|         "publisherName": "Kandra Labs, Inc." | ||||
|       }, | ||||
|       "nsis": { | ||||
|         "allowToChangeInstallationDirectory": true | ||||
|       } | ||||
|     }, | ||||
|     "keywords": [ | ||||
|       "Zulip", | ||||
|       "Group Chat app", | ||||
|       "electron-app", | ||||
|       "electron", | ||||
|       "Desktop app", | ||||
|       "InstantMessaging" | ||||
|     ], | ||||
|     "devDependencies": { | ||||
|       "assert": "1.4.1", | ||||
|       "cp-file": "^5.0.0", | ||||
|       "devtron": "1.4.0", | ||||
|       "electron": "3.0.10", | ||||
|       "electron-builder": "20.38.4", | ||||
|       "electron-connect": "0.6.2", | ||||
|       "electron-debug": "1.4.0", | ||||
|       "google-translate-api": "2.3.0", | ||||
|       "gulp": "^4.0.0", | ||||
|       "gulp-tape": "0.0.9", | ||||
|       "is-ci": "^1.0.10", | ||||
|       "nodemon": "^1.14.11", | ||||
|       "pre-commit": "1.2.2", | ||||
|       "spectron": "3.8.0", | ||||
|       "tap-colorize": "^1.2.0", | ||||
|       "tape": "^4.8.0", | ||||
|       "xo": "0.18.2" | ||||
|     }, | ||||
|     "xo": { | ||||
|       "parserOptions": { | ||||
|         "sourceType": "script", | ||||
|         "ecmaFeatures": { | ||||
|           "globalReturn": true | ||||
|         } | ||||
|       }, | ||||
|       "esnext": true, | ||||
|       "overrides": [ | ||||
|         { | ||||
|           "files": "app*/**/*.js", | ||||
|           "rules": { | ||||
|             "max-lines": [ | ||||
|               "warn", | ||||
|               { | ||||
|                 "max": 600, | ||||
|                 "skipBlankLines": true, | ||||
|                 "skipComments": true | ||||
|               } | ||||
|             ], | ||||
|             "no-warning-comments": 0, | ||||
|             "object-curly-spacing": 0, | ||||
|             "capitalized-comments": 0, | ||||
|             "no-else-return": 0, | ||||
|             "no-path-concat": 0, | ||||
|             "no-alert": 0, | ||||
|             "guard-for-in": 0, | ||||
|             "prefer-promise-reject-errors": 0, | ||||
|             "import/no-unresolved": 0, | ||||
|             "import/no-extraneous-dependencies": 0, | ||||
|             "no-prototype-builtins": 0 | ||||
|           } | ||||
|         } | ||||
|       ], | ||||
|       "ignore": [ | ||||
|         "tests/*.js", | ||||
|         "tools/locale-helper/*.js" | ||||
|       ], | ||||
|       "envs": [ | ||||
|         "node", | ||||
|         "browser", | ||||
|         "mocha" | ||||
|       ] | ||||
|     } | ||||
|   } | ||||
| @@ -1,13 +1,17 @@ | ||||
| const test = require('tape') | ||||
| const setup = require('./setup') | ||||
| 'use strict'; | ||||
| const test = require('tape'); | ||||
| const setup = require('./setup'); | ||||
|  | ||||
| test('app runs', function (t) { | ||||
|   t.timeoutAfter(10e3) | ||||
|   setup.resetTestDataDir() | ||||
|   const app = setup.createApp() | ||||
|   setup.waitForLoad(app, t) | ||||
|     .then(() => app.client.windowByIndex(1)) // focus on webview | ||||
|     .then(() => app.client.waitForExist('//*[@id="connect"]')) // id of the connect button | ||||
|     .then(() => setup.endTest(app, t), | ||||
|           (err) => setup.endTest(app, t, err || 'error')) | ||||
| }) | ||||
| test('app runs', async t => { | ||||
| 	t.timeoutAfter(10e3); | ||||
| 	setup.resetTestDataDir(); | ||||
| 	const app = setup.createApp(); | ||||
| 	try { | ||||
| 		await setup.waitForLoad(app, t); | ||||
| 		await app.client.windowByIndex(1); // Focus on webview | ||||
| 		await app.client.waitForExist('//*[@id="connect"]'); // Id of the connect button | ||||
| 		await setup.endTest(app, t); | ||||
| 	} catch (error) { | ||||
| 		await setup.endTest(app, t, error || 'error'); | ||||
| 	} | ||||
| }); | ||||
|   | ||||
							
								
								
									
										137
									
								
								tests/setup.js
									
									
									
									
									
								
							
							
						
						| @@ -1,99 +1,96 @@ | ||||
| const Application = require('spectron').Application | ||||
| const cpFile = require('cp-file') | ||||
| const fs = require('fs') | ||||
| const isCI = require('is-ci') | ||||
| const mkdirp = require('mkdirp') | ||||
| const path = require('path') | ||||
| const rimraf = require('rimraf') | ||||
| 'use strict'; | ||||
| const {Application} = require('spectron'); | ||||
| const fs = require('fs'); | ||||
| const path = require('path'); | ||||
| const rimraf = require('rimraf'); | ||||
|  | ||||
| const config = require('./config') | ||||
| const config = require('./config'); | ||||
|  | ||||
| module.exports = { | ||||
|   createApp, | ||||
|   endTest, | ||||
|   waitForLoad, | ||||
|   wait, | ||||
|   resetTestDataDir | ||||
| } | ||||
| 	createApp, | ||||
| 	endTest, | ||||
| 	waitForLoad, | ||||
| 	wait, | ||||
| 	resetTestDataDir | ||||
| }; | ||||
|  | ||||
| // Runs Zulip Desktop. | ||||
| // Returns a promise that resolves to a Spectron Application once the app has loaded. | ||||
| // Takes a Tape test. Makes some basic assertions to verify that the app loaded correctly. | ||||
| function createApp (t) { | ||||
|   generateTestAppPackageJson() | ||||
|   return new Application({ | ||||
|     path: path.join(__dirname, '..', 'node_modules', '.bin', | ||||
|       'electron' + (process.platform === 'win32' ? '.cmd' : '')), | ||||
|     args: [path.join(__dirname)], // Ensure this dir has a package.json file with a 'main' entry piont | ||||
|     env: {NODE_ENV: 'test'}, | ||||
|     waitTimeout: 10e3 | ||||
|   }) | ||||
| function createApp() { | ||||
| 	generateTestAppPackageJson(); | ||||
| 	return new Application({ | ||||
| 		path: path.join(__dirname, '..', 'node_modules', '.bin', | ||||
| 			'electron' + (process.platform === 'win32' ? '.cmd' : '')), | ||||
| 		args: [path.join(__dirname)], // Ensure this dir has a package.json file with a 'main' entry piont | ||||
| 		env: {NODE_ENV: 'test'}, | ||||
| 		waitTimeout: 10e3 | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| // Generates package.json for test app | ||||
| // Reads app package.json and updates the productName to config.TEST_APP_PRODUCT_NAME | ||||
| // We do this so that the app integration doesn't doesn't share the same appDataDir as the dev application | ||||
| function generateTestAppPackageJson () { | ||||
|   let packageJson = require(path.join(__dirname, '../package.json')) | ||||
|   packageJson.productName = config.TEST_APP_PRODUCT_NAME | ||||
|   packageJson.main = '../app/main' | ||||
| function generateTestAppPackageJson() { | ||||
| 	const packageJson = require(path.join(__dirname, '../package.json')); | ||||
| 	packageJson.productName = config.TEST_APP_PRODUCT_NAME; | ||||
| 	packageJson.main = '../app/main'; | ||||
|  | ||||
|   const testPackageJsonPath = path.join(__dirname, 'package.json') | ||||
|   fs.writeFileSync(testPackageJsonPath, JSON.stringify(packageJson, null, ' '), 'utf-8') | ||||
| 	const testPackageJsonPath = path.join(__dirname, 'package.json'); | ||||
| 	fs.writeFileSync(testPackageJsonPath, JSON.stringify(packageJson, null, ' '), 'utf-8'); | ||||
| } | ||||
|  | ||||
| // Starts the app, waits for it to load, returns a promise | ||||
| function waitForLoad (app, t, opts) { | ||||
|   if (!opts) opts = {} | ||||
|   return app.start().then(function () { | ||||
|     return app.client.waitUntilWindowLoaded() | ||||
|   }) | ||||
|   .then(function() { | ||||
|     return app.client.pause(2000); | ||||
|   }) | ||||
|   .then(function () { | ||||
|     return app.webContents.getTitle() | ||||
|   }).then(function (title) { | ||||
|     t.equal(title, 'Zulip', 'html title') | ||||
|   }) | ||||
| async function waitForLoad(app, t, options) { | ||||
| 	if (!options) { | ||||
| 		options = {}; | ||||
| 	} | ||||
|  | ||||
| 	await app.start(); | ||||
| 	await app.client.waitUntilWindowLoaded(); | ||||
| 	await app.client.pause(2000); | ||||
| 	const title = await app.webContents.getTitle(); | ||||
| 	t.equal(title, 'Zulip', 'html title'); | ||||
| } | ||||
|  | ||||
| // Returns a promise that resolves after 'ms' milliseconds. Default: 1 second | ||||
| function wait (ms) { | ||||
|   if (ms === undefined) ms = 1000 // Default: wait long enough for the UI to update | ||||
|   return new Promise(function (resolve, reject) { | ||||
|     setTimeout(resolve, ms) | ||||
|   }) | ||||
| async function wait(ms) { | ||||
| 	if (ms === undefined) { | ||||
| 		ms = 1000; | ||||
| 	} // Default: wait long enough for the UI to update | ||||
|  | ||||
| 	return new Promise((resolve => { | ||||
| 		setTimeout(resolve, ms); | ||||
| 	})); | ||||
| } | ||||
|  | ||||
| // Quit the app, end the test, either in success (!err) or failure (err) | ||||
| function endTest (app, t, err) { | ||||
|   return app.stop().then(function () { | ||||
|     t.end(err) | ||||
|   }) | ||||
| async function endTest(app, t, err) { | ||||
| 	await app.stop(); | ||||
| 	t.end(err); | ||||
| } | ||||
|  | ||||
| function getAppDataDir () { | ||||
|   let base | ||||
| function getAppDataDir() { | ||||
| 	let base; | ||||
|  | ||||
|   if (process.platform === 'darwin') { | ||||
|     base = path.join(process.env.HOME, 'Library', 'Application Support') | ||||
|   } else if (process.platform === 'linux') { | ||||
|     base = process.env.XDG_CONFIG_HOME ? | ||||
|       process.env.XDG_CONFIG_HOME : path.join(process.env.HOME, '.config') | ||||
|   } else if (process.platform === 'win32') { | ||||
|     base = process.env.APPDATA | ||||
|   } else { | ||||
|     console.log('Could not detect app data dir base. Exiting...') | ||||
|     process.exit(1) | ||||
|   } | ||||
|   console.log('Detected App Data Dir base:', base) | ||||
|   return path.join(base, config.TEST_APP_PRODUCT_NAME) | ||||
| 	if (process.platform === 'darwin') { | ||||
| 		base = path.join(process.env.HOME, 'Library', 'Application Support'); | ||||
| 	} else if (process.platform === 'linux') { | ||||
| 		base = process.env.XDG_CONFIG_HOME ? | ||||
| 			process.env.XDG_CONFIG_HOME : path.join(process.env.HOME, '.config'); | ||||
| 	} else if (process.platform === 'win32') { | ||||
| 		base = process.env.APPDATA; | ||||
| 	} else { | ||||
| 		throw new Error('Could not detect app data dir base.'); | ||||
| 	} | ||||
|  | ||||
| 	console.log('Detected App Data Dir base:', base); | ||||
| 	return path.join(base, config.TEST_APP_PRODUCT_NAME); | ||||
| } | ||||
|  | ||||
| // Resets the test directory, containing domain.json, window-state.json, etc | ||||
| function resetTestDataDir () { | ||||
|   appDataDir = getAppDataDir() | ||||
|   rimraf.sync(appDataDir) | ||||
|   rimraf.sync(path.join(__dirname, 'package.json')) | ||||
| function resetTestDataDir() { | ||||
| 	const appDataDir = getAppDataDir(); | ||||
| 	rimraf.sync(appDataDir); | ||||
| 	rimraf.sync(path.join(__dirname, 'package.json')); | ||||
| } | ||||
|   | ||||
| @@ -1,19 +1,22 @@ | ||||
| const test = require('tape') | ||||
| const setup = require('./setup') | ||||
|  | ||||
| test('add-organization', function (t) { | ||||
|   t.timeoutAfter(50e3) | ||||
|   setup.resetTestDataDir() | ||||
|   const app = setup.createApp() | ||||
|   setup.waitForLoad(app, t) | ||||
|     .then(() => app.client.windowByIndex(1)) // focus on webview | ||||
|     .then(() => app.client.setValue('.setting-input-value', 'chat.zulip.org')) | ||||
|     .then(() => app.client.click('.server-save-action')) | ||||
|     .then(() => setup.wait(5000)) | ||||
|     .then(() => app.client.windowByIndex(0)) // Switch focus back to main win | ||||
|     .then(() => app.client.windowByIndex(1)) // Switch focus back to org webview | ||||
|     .then(() => app.client.waitForExist('//*[@id="id_username"]')) | ||||
|     .then(() => setup.endTest(app, t), | ||||
|           (err) => setup.endTest(app, t, err || 'error')) | ||||
| }) | ||||
| 'use strict'; | ||||
| const test = require('tape'); | ||||
| const setup = require('./setup'); | ||||
|  | ||||
| test('add-organization', async t => { | ||||
| 	t.timeoutAfter(50e3); | ||||
| 	setup.resetTestDataDir(); | ||||
| 	const app = setup.createApp(); | ||||
| 	try { | ||||
| 		await setup.waitForLoad(app, t); | ||||
| 		await app.client.windowByIndex(1); // Focus on webview | ||||
| 		await app.client.setValue('.setting-input-value', 'chat.zulip.org'); | ||||
| 		await app.client.click('#connect'); | ||||
| 		await setup.wait(5000); | ||||
| 		await app.client.windowByIndex(0); // Switch focus back to main win | ||||
| 		await app.client.windowByIndex(1); // Switch focus back to org webview | ||||
| 		await app.client.waitForExist('//*[@id="id_username"]'); | ||||
| 		await setup.endTest(app, t); | ||||
| 	} catch (error) { | ||||
| 		await setup.endTest(app, t, error || 'error'); | ||||
| 	} | ||||
| }); | ||||
|   | ||||
| @@ -1,17 +1,20 @@ | ||||
| const test = require('tape') | ||||
| const setup = require('./setup') | ||||
| 'use strict'; | ||||
| const test = require('tape'); | ||||
| const setup = require('./setup'); | ||||
|  | ||||
| // Create new org link should open in the default browser [WIP] | ||||
|  | ||||
| test('new-org-link', function (t) { | ||||
|   t.timeoutAfter(50e3) | ||||
|   setup.resetTestDataDir() | ||||
|   const app = setup.createApp() | ||||
|   setup.waitForLoad(app, t) | ||||
|     .then(() => app.client.windowByIndex(1)) // focus on webview | ||||
|     .then(() => app.client.click('#open-create-org-link')) // Click on new org link button | ||||
|     .then(() => setup.wait(5000)) | ||||
|     .then(() => setup.endTest(app, t), | ||||
|           (err) => setup.endTest(app, t, err || 'error')) | ||||
| }) | ||||
|  | ||||
| test('new-org-link', async t => { | ||||
| 	t.timeoutAfter(50e3); | ||||
| 	setup.resetTestDataDir(); | ||||
| 	const app = setup.createApp(); | ||||
| 	try { | ||||
| 		await setup.waitForLoad(app, t); | ||||
| 		await app.client.windowByIndex(1); // Focus on webview | ||||
| 		await app.client.click('#open-create-org-link'); // Click on new org link button | ||||
| 		await setup.wait(5000); | ||||
| 		await setup.endTest(app, t); | ||||
| 	} catch (error) { | ||||
| 		await setup.endTest(app, t, error || 'error'); | ||||
| 	} | ||||
| }); | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| 'use strict'; | ||||
| const translate = require('@vitalets/google-translate-api'); | ||||
| const path = require('path'); | ||||
| const fs = require('fs'); | ||||
| @@ -5,28 +6,30 @@ const fs = require('fs'); | ||||
| const translationDir = path.resolve(__dirname, '../../app/translations'); | ||||
|  | ||||
| function writeJSON(file, data) { | ||||
|     const filePath = path.resolve(translationDir, file); | ||||
|     fs.writeFileSync(filePath, `${JSON.stringify(data, null, '\t')}\n`, 'utf8'); | ||||
| 	const filePath = path.resolve(translationDir, file); | ||||
| 	fs.writeFileSync(filePath, `${JSON.stringify(data, null, '\t')}\n`, 'utf8'); | ||||
| } | ||||
|  | ||||
| const { phrases } = require('./locale-template'); | ||||
| const supportedLocales = require('./supported-locales'); | ||||
| const {phrases} = require('./locale-template'); | ||||
| const supportedLocales = require('./supported-locales.json'); | ||||
|  | ||||
| phrases.sort(); | ||||
| for (let locale in supportedLocales) { | ||||
|     console.log(`fetching translation for: ${supportedLocales[locale]} - ${locale}..`); | ||||
|     translate(phrases.join('\n'), { to: locale }) | ||||
|         .then(res => { | ||||
|             const localeFile = `${locale}.json`; | ||||
|             const translatedText = res.text.split('\n'); | ||||
|             const translationJSON = {}; | ||||
|             phrases.forEach((phrase, index) => { | ||||
|                translationJSON[phrase] = translatedText[index]; | ||||
|             }); | ||||
| for (const [locale, name] of Object.entries(supportedLocales)) { | ||||
| 	console.log(`fetching translation for: ${name} - ${locale}..`); | ||||
| 	(async () => { | ||||
| 		try { | ||||
| 			const result = await translate(phrases.join('\n'), {to: locale}); | ||||
| 			const localeFile = `${locale}.json`; | ||||
| 			const translatedText = result.text.split('\n'); | ||||
| 			const translationJSON = {}; | ||||
| 			phrases.forEach((phrase, index) => { | ||||
| 				translationJSON[phrase] = translatedText[index]; | ||||
| 			}); | ||||
|  | ||||
|             writeJSON(localeFile, translationJSON); | ||||
|             console.log(`create: ${localeFile}`); | ||||
|         }).catch(err => { | ||||
|             console.error(err); | ||||
|         }); | ||||
| 			writeJSON(localeFile, translationJSON); | ||||
| 			console.log(`create: ${localeFile}`); | ||||
| 		} catch (error) { | ||||
| 			console.error(error); | ||||
| 		} | ||||
| 	})(); | ||||
| } | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
| module.exports = { | ||||
| { | ||||
|     "de": "Deutsch", | ||||
|     "pl": "polski", | ||||
|     "en": "English", | ||||
| @@ -18,4 +18,4 @@ module.exports = { | ||||
|     "es": "español", | ||||
|     "ko": "한국어", | ||||
|     "fr": "français" | ||||
| }; | ||||
| } | ||||
| @@ -2,9 +2,8 @@ | ||||
| set -e | ||||
| set -x | ||||
|  | ||||
| echo "Removing node_modules and app/node_modules" | ||||
| echo "Removing node_modules" | ||||
| rm -rf node_modules | ||||
| rm -rf app/node_modules | ||||
|  | ||||
| echo "node_modules removed reinstalling npm packages" | ||||
| npm i | ||||
|   | ||||
| @@ -1,8 +1,7 @@ | ||||
| @echo off | ||||
|  | ||||
| echo "Removing node_modules and app/node_modules" | ||||
| echo "Removing node_modules" | ||||
| rmdir /s /q node_modules | ||||
| rmdir /s /q app/node_modules | ||||
|  | ||||
| echo "node_modules removed reinstalling npm packages" | ||||
| npm i | ||||
|   | ||||