-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathmain.js
452 lines (393 loc) · 17.9 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
const {
app,
dialog,
BrowserWindow,
Menu,
MenuItem,
shell,
ipcMain,
} = require('electron');
const _ = require('underscore');
const serve = require('electron-serve');
const contextMenu = require('electron-context-menu');
const {autoUpdater} = require('electron-updater');
const log = require('electron-log');
const ELECTRON_EVENTS = require('./ELECTRON_EVENTS');
const checkForUpdates = require('../src/libs/checkForUpdates');
const CONFIG = require('../src/CONFIG').default;
const port = process.env.PORT || 8080;
app.setName('New Expensify');
/**
* Electron main process that handles wrapping the web application.
*
* @see: https://www.electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes
*/
// This is necessary for NetInfo to work correctly as it does not handle the NetworkInformation API events correctly
// See: https://github.com/electron/electron/issues/22597
app.commandLine.appendSwitch('enable-network-information-downlink-max');
// Initialize the right click menu
// See https://github.com/sindresorhus/electron-context-menu
// Add the Paste and Match Style command to the context menu
contextMenu({
append: (defaultActions, parameters) => [
new MenuItem({
// Only enable the menu item for Editable context which supports paste
visible: parameters.isEditable && parameters.editFlags.canPaste,
role: 'pasteAndMatchStyle',
accelerator: 'CmdOrCtrl+Shift+V',
}),
],
});
// Send all autoUpdater logs to a log file: ~/Library/Logs/new.expensify.desktop/main.log
// See https://www.npmjs.com/package/electron-log
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
// Send all Console logs to a log file: ~/Library/Logs/new.expensify.desktop/main.log
// See https://www.npmjs.com/package/electron-log
_.assign(console, log.functions);
// This sets up the command line arguments used to manage the update. When
// the --expected-update-version flag is set, the app will open pre-hidden
// until it detects that it has been upgraded to the correct version.
const EXPECTED_UPDATE_VERSION_FLAG = '--expected-update-version';
const APP_DOMAIN = __DEV__ ? `http://localhost:${port}` : 'app://-';
let expectedUpdateVersion;
for (let i = 0; i < process.argv.length; i++) {
const arg = process.argv[i];
if (arg.startsWith(`${EXPECTED_UPDATE_VERSION_FLAG}=`)) {
expectedUpdateVersion = arg.substr((`${EXPECTED_UPDATE_VERSION_FLAG}=`).length);
}
}
// Add the listeners and variables required to ensure that auto-updating
// happens correctly.
let hasUpdate = false;
let downloadedVersion;
const quitAndInstallWithUpdate = () => {
if (!downloadedVersion) {
return;
}
hasUpdate = true;
autoUpdater.quitAndInstall();
};
/**
* Menu Item callback to triggers an update check
* @param {MenuItem} menuItem
* @param {BrowserWindow} browserWindow
*/
const manuallyCheckForUpdates = (menuItem, browserWindow) => {
// Disable item until the check (and download) is complete
// eslint: menu item flags like enabled or visible can be dynamically toggled by mutating the object
// eslint-disable-next-line no-param-reassign
menuItem.enabled = false;
autoUpdater.checkForUpdates()
.catch(error => ({error}))
.then((result) => {
const downloadPromise = result && result.downloadPromise;
if (downloadPromise) {
dialog.showMessageBox(browserWindow, {
type: 'info',
message: 'Update Available',
detail: 'The new version will be available shortly. We’ll notify you when we’re ready to update.',
buttons: ['Sounds good'],
});
} else if (result && result.error) {
dialog.showMessageBox(browserWindow, {
type: 'error',
message: 'Update Check Failed',
detail: 'We couldn’t look for an update. Please check again in a bit!',
buttons: ['Okay'],
});
} else {
dialog.showMessageBox(browserWindow, {
type: 'info',
message: 'Update Not Available',
detail: 'There is no update available as of now! Check again at a later time.',
buttons: ['Okay'],
cancelId: 2,
});
}
// By returning the `downloadPromise` we keep "check for updates" disabled if any updates are being downloaded
return downloadPromise;
})
.finally(() => {
// eslint-disable-next-line no-param-reassign
menuItem.enabled = true;
});
};
/**
* Trigger event to show keyboard shortcuts
* @param {BrowserWindow} browserWindow
*/
const showKeyboardShortcutsModal = (browserWindow) => {
if (!browserWindow.isVisible()) {
return;
}
browserWindow.webContents.send(ELECTRON_EVENTS.SHOW_KEYBOARD_SHORTCUTS_MODAL);
};
// Defines the system-level menu item to manually apply an update
// This menu item should become visible after an update is downloaded and ready to be applied
const updateAppMenuItem = new MenuItem({
label: 'Update New Expensify',
visible: false,
click: quitAndInstallWithUpdate,
});
// System-level menu item to manually check for App updates
const checkForUpdateMenuItem = new MenuItem({
label: 'Check For Updates',
visible: true,
click: manuallyCheckForUpdates,
});
// Defines the system-level menu item for opening keyboard shortcuts modal
const keyboardShortcutsMenu = new MenuItem({
label: 'View Keyboard Shortcuts',
accelerator: 'CmdOrCtrl+I',
});
// Actual auto-update listeners
const electronUpdater = browserWindow => ({
init: () => {
autoUpdater.on(ELECTRON_EVENTS.UPDATE_DOWNLOADED, (info) => {
downloadedVersion = info.version;
updateAppMenuItem.visible = true;
checkForUpdateMenuItem.visible = false;
if (browserWindow.isVisible()) {
browserWindow.webContents.send(ELECTRON_EVENTS.UPDATE_DOWNLOADED, info.version);
} else {
quitAndInstallWithUpdate();
}
});
ipcMain.on(ELECTRON_EVENTS.START_UPDATE, quitAndInstallWithUpdate);
autoUpdater.checkForUpdates();
},
update: () => {
autoUpdater.checkForUpdates();
},
});
const mainWindow = (() => {
let deeplinkUrl;
let browserWindow;
const loadURL = __DEV__
? win => win.loadURL(`http://localhost:${port}`)
: serve({directory: `${__dirname}/www`});
// Prod and staging set the icon in the electron-builder config, so only update it here for dev
if (__DEV__) {
console.debug('CONFIG: ', CONFIG);
app.dock.setIcon(`${__dirname}/../icon-dev.png`);
app.setName('New Expensify');
}
app.on('will-finish-launching', () => {
app.on('open-url', (event, url) => {
event.preventDefault();
const urlObj = new URL(url);
deeplinkUrl = `${APP_DOMAIN}${urlObj.pathname}`;
if (browserWindow) {
browserWindow.loadURL(deeplinkUrl);
}
});
});
/*
* Starting from Electron 20, it shall be required to set sandbox option to false explicitly.
* Running a preload script contextBridge.js require access to nodeJS modules from the javascript code.
* This was not a concern earlier as sandbox used to be false by default for Electron <= 20.
* Refer https://www.electronjs.org/docs/latest/tutorial/sandbox#disabling-the-sandbox-for-a-single-process
* */
return app.whenReady()
.then(() => {
/*
* We only want to register the scheme this way when in dev, since
* when the app is bundled electron-builder will take care of it.
*/
if (__DEV__) {
app.setAsDefaultProtocolClient('new-expensify');
}
browserWindow = new BrowserWindow({
backgroundColor: '#FAFAFA',
width: 1200,
height: 900,
webPreferences: {
preload: `${__dirname}/contextBridge.js`,
contextIsolation: true,
sandbox: false,
},
titleBarStyle: 'hidden',
});
/*
* The default origin of our Electron app is app://- instead of https://new.expensify.com or https://staging.new.expensify.com
* This causes CORS errors because the referer and origin headers are wrong and the API responds with an Access-Control-Allow-Origin that doesn't match app://-
* The same issue happens when using the web proxy to communicate with the staging or production API on dev.
*
* To fix this, we'll:
*
* 1. Modify headers on any outgoing requests to match the origin of our corresponding web environment (not necessary in case of web proxy, because it already does that)
* 2. Modify the Access-Control-Allow-Origin header of the response to match the "real" origin of our Electron app.
*/
const webRequest = browserWindow.webContents.session.webRequest;
const validDestinationFilters = {urls: ['https://*.expensify.com/*']};
/* eslint-disable no-param-reassign */
if (!__DEV__) {
// Modify the origin and referer for requests sent to our API
webRequest.onBeforeSendHeaders(validDestinationFilters, (details, callback) => {
details.requestHeaders.origin = CONFIG.EXPENSIFY.URL_EXPENSIFY_CASH;
details.requestHeaders.referer = CONFIG.EXPENSIFY.URL_EXPENSIFY_CASH;
callback({requestHeaders: details.requestHeaders});
});
}
// Modify access-control-allow-origin header and CSP for the response
webRequest.onHeadersReceived(validDestinationFilters, (details, callback) => {
details.responseHeaders['access-control-allow-origin'] = [APP_DOMAIN];
if (details.responseHeaders['content-security-policy']) {
details.responseHeaders['content-security-policy'] = _.map(
details.responseHeaders['content-security-policy'],
value => (value.startsWith('frame-ancestors') ? `${value} ${APP_DOMAIN}` : value),
);
}
callback({responseHeaders: details.responseHeaders});
});
/* eslint-enable */
// Prod and staging overwrite the app name in the electron-builder config, so only update it here for dev
if (__DEV__) {
browserWindow.setTitle('New Expensify');
}
keyboardShortcutsMenu.click = () => {
showKeyboardShortcutsModal(browserWindow);
};
// List the Expensify Chat instance under the Window menu, even when it's hidden
const systemMenu = Menu.getApplicationMenu();
systemMenu.insert(4, new MenuItem({
label: 'History',
submenu: [{
role: 'back',
label: 'Back',
accelerator: process.platform === 'darwin' ? 'Cmd+[' : 'Shift+[',
click: () => { browserWindow.webContents.goBack(); },
},
{
role: 'forward',
label: 'Forward',
accelerator: process.platform === 'darwin' ? 'Cmd+]' : 'Shift+]',
click: () => { browserWindow.webContents.goForward(); },
}],
}));
// Register the custom Paste and Match Style command and place it near the default shortcut of the same role.
const editMenu = _.find(systemMenu.items, item => item.role === 'editmenu');
editMenu.submenu.insert(6, new MenuItem({
role: 'pasteAndMatchStyle',
accelerator: 'CmdOrCtrl+Shift+V',
}));
const appMenu = _.find(systemMenu.items, item => item.role === 'appmenu');
appMenu.submenu.insert(1, updateAppMenuItem);
appMenu.submenu.insert(2, checkForUpdateMenuItem);
appMenu.submenu.insert(3, keyboardShortcutsMenu);
// On mac, pressing cmd++ actually sends a cmd+=. cmd++ is generally the zoom in shortcut, but this is
// not properly listened for by electron. Adding in an invisible cmd+= listener fixes this.
const viewWindow = _.find(systemMenu.items, item => item.role === 'viewmenu');
viewWindow.submenu.append(new MenuItem({
role: 'zoomin',
accelerator: 'CommandOrControl+=',
visible: false,
}));
const windowMenu = _.find(systemMenu.items, item => item.role === 'windowmenu');
windowMenu.submenu.append(new MenuItem({type: 'separator'}));
windowMenu.submenu.append(new MenuItem({
label: 'New Expensify',
accelerator: 'CmdOrCtrl+1',
click: () => browserWindow.show(),
}));
Menu.setApplicationMenu(systemMenu);
// When the user clicks a link that has target="_blank" (which is all external links)
// open the default browser instead of a new electron window
browserWindow.webContents.setWindowOpenHandler(({url}) => {
const denial = {action: 'deny'};
// Make sure local urls stay in electron perimeter
if (url.substr(0, 'file://'.length).toLowerCase() === 'file://') {
return denial;
}
// Open every other protocol in the default browser, not Electron
shell.openExternal(url);
return denial;
});
// Flag to determine is user is trying to quit the whole application altogether
let quitting = false;
// Closing the chat window should just hide it (vs. fully quitting the application)
browserWindow.on('close', (evt) => {
if (quitting || hasUpdate) {
return;
}
evt.preventDefault();
// Check if window is fullscreen and exit fullscreen before hiding
if (browserWindow.isFullScreen()) {
browserWindow.once('leave-full-screen', () => browserWindow.hide());
browserWindow.setFullScreen(false);
} else {
browserWindow.hide();
}
});
// Initiating a browser-back or browser-forward with mouse buttons should navigate history.
browserWindow.on('app-command', (e, cmd) => {
if (cmd === 'browser-backward') {
browserWindow.webContents.goBack();
}
if (cmd === 'browser-forward') {
browserWindow.webContents.goForward();
}
});
browserWindow.on(ELECTRON_EVENTS.FOCUS, () => {
browserWindow.webContents.send(ELECTRON_EVENTS.FOCUS);
});
browserWindow.on(ELECTRON_EVENTS.BLUR, () => {
browserWindow.webContents.send(ELECTRON_EVENTS.BLUR);
});
app.on('before-quit', () => quitting = true);
app.on('activate', () => {
if (expectedUpdateVersion && app.getVersion() !== expectedUpdateVersion) {
return;
}
browserWindow.show();
});
// Hide the app if we expected to upgrade to a new version but never did.
if (expectedUpdateVersion && app.getVersion() !== expectedUpdateVersion) {
browserWindow.hide();
app.hide();
}
ipcMain.on(ELECTRON_EVENTS.REQUEST_VISIBILITY, (event) => {
// This is how synchronous messages work in Electron
// eslint-disable-next-line no-param-reassign
event.returnValue = browserWindow && !browserWindow.isDestroyed() && browserWindow.isFocused();
});
// This allows the renderer process to bring the app
// back into focus if it's minimized or hidden.
ipcMain.on(ELECTRON_EVENTS.REQUEST_FOCUS_APP, () => {
browserWindow.show();
});
// Listen to badge updater event emitted by the render process
// and update the app badge count (MacOS only)
ipcMain.on(ELECTRON_EVENTS.REQUEST_UPDATE_BADGE_COUNT, (event, totalCount) => {
if (totalCount === -1) {
// The electron docs say you should be able to update this and pass no parameters to set the badge
// to a single red dot, but in practice it resulted in an error "TypeError: Insufficient number of
// arguments." - Thus, setting to 1 instead.
// See: https://www.electronjs.org/docs/api/app#appsetbadgecountcount-linux-macos
app.setBadgeCount(1);
} else {
app.setBadgeCount(totalCount);
}
});
return browserWindow;
})
// After initializing and configuring the browser window, load the compiled JavaScript
.then((browserWindowRef) => {
loadURL(browserWindow).then(() => {
if (deeplinkUrl) {
browserWindow.loadURL(deeplinkUrl);
}
return undefined;
});
return browserWindowRef;
})
// Start checking for JS updates
.then((browserWindowRef) => {
if (__DEV__) {
return;
}
checkForUpdates(electronUpdater(browserWindowRef));
});
});
mainWindow().then(window => window);