2020-03-20 20:28:31 +00:00
|
|
|
import { EventEmitter } from 'events';
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
2020-09-17 22:08:57 +00:00
|
|
|
|
2021-05-06 01:05:01 +00:00
|
|
|
import type * as defaultMenuModule from '@electron/internal/browser/default-menu';
|
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const Module = require('module');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2018-09-28 23:17:00 +00:00
|
|
|
// We modified the original process.argv to let node.js load the init.js,
|
2016-01-14 18:35:29 +00:00
|
|
|
// we need to restore it here.
|
2020-03-20 20:28:31 +00:00
|
|
|
process.argv.splice(1, 1);
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Clear search paths.
|
2020-03-20 20:28:31 +00:00
|
|
|
require('../common/reset-search-paths');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Import common settings.
|
2020-03-20 20:28:31 +00:00
|
|
|
require('@electron/internal/common/init');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
process._linkedBinding('electron_browser_event_emitter').setEventEmitterPrototype(EventEmitter.prototype);
|
2020-03-18 19:57:08 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Don't quit on fatal error.
|
2016-03-24 20:15:04 +00:00
|
|
|
process.on('uncaughtException', function (error) {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Do nothing if the user has a custom uncaught exception handler.
|
2019-05-01 13:07:57 +00:00
|
|
|
if (process.listenerCount('uncaughtException') > 1) {
|
2020-03-20 20:28:31 +00:00
|
|
|
return;
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Show error in GUI.
|
2019-02-12 14:22:33 +00:00
|
|
|
// We can't import { dialog } at the top of this file as this file is
|
|
|
|
// responsible for setting up the require hook for the "electron" module
|
|
|
|
// so we import it inside the handler down here
|
|
|
|
import('electron')
|
|
|
|
.then(({ dialog }) => {
|
2020-03-20 20:28:31 +00:00
|
|
|
const stack = error.stack ? error.stack : `${error.name}: ${error.message}`;
|
|
|
|
const message = 'Uncaught Exception:\n' + stack;
|
|
|
|
dialog.showErrorBox('A JavaScript error occurred in the main process', message);
|
|
|
|
});
|
|
|
|
});
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Emit 'exit' event on quit.
|
2020-03-20 20:28:31 +00:00
|
|
|
const { app } = require('electron');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-09-17 22:08:57 +00:00
|
|
|
app.on('quit', (_event, exitCode) => {
|
2020-03-20 20:28:31 +00:00
|
|
|
process.emit('exit', exitCode);
|
|
|
|
});
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-15 03:36:48 +00:00
|
|
|
if (process.platform === 'win32') {
|
|
|
|
// If we are a Squirrel.Windows-installed app, set app user model ID
|
|
|
|
// so that users don't have to do this.
|
|
|
|
//
|
|
|
|
// Squirrel packages are always of the form:
|
|
|
|
//
|
|
|
|
// PACKAGE-NAME
|
|
|
|
// - Update.exe
|
|
|
|
// - app-VERSION
|
|
|
|
// - OUREXE.exe
|
|
|
|
//
|
|
|
|
// Squirrel itself will always set the shortcut's App User Model ID to the
|
|
|
|
// form `com.squirrel.PACKAGE-NAME.OUREXE`. We need to call
|
|
|
|
// app.setAppUserModelId with a matching identifier so that renderer processes
|
|
|
|
// will inherit this value.
|
2020-03-20 20:28:31 +00:00
|
|
|
const updateDotExe = path.join(path.dirname(process.execPath), '..', 'update.exe');
|
2016-03-15 03:36:48 +00:00
|
|
|
|
2016-08-02 08:45:46 +00:00
|
|
|
if (fs.existsSync(updateDotExe)) {
|
2020-03-20 20:28:31 +00:00
|
|
|
const packageDir = path.dirname(path.resolve(updateDotExe));
|
|
|
|
const packageName = path.basename(packageDir).replace(/\s/g, '');
|
|
|
|
const exeName = path.basename(process.execPath).replace(/\.exe$/i, '').replace(/\s/g, '');
|
2016-03-15 03:36:48 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
app.setAppUserModelId(`com.squirrel.${packageName}.${exeName}`);
|
2016-03-15 03:36:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Map process.exit to app.exit, which quits gracefully.
|
2020-03-20 20:28:31 +00:00
|
|
|
process.exit = app.exit as () => never;
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Load the RPC server.
|
2020-03-20 20:28:31 +00:00
|
|
|
require('@electron/internal/browser/rpc-server');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Load the guest view manager.
|
2020-03-20 20:28:31 +00:00
|
|
|
require('@electron/internal/browser/guest-view-manager');
|
2020-11-10 17:06:03 +00:00
|
|
|
require('@electron/internal/browser/guest-window-proxy');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Now we try to load app's package.json.
|
2021-09-09 21:49:01 +00:00
|
|
|
const v8Util = process._linkedBinding('electron_common_v8_util');
|
2020-03-20 20:28:31 +00:00
|
|
|
let packagePath = null;
|
|
|
|
let packageJson = null;
|
2021-09-09 21:49:01 +00:00
|
|
|
const searchPaths: string[] = v8Util.getHiddenValue(global, 'appSearchPaths');
|
2019-02-21 09:26:07 +00:00
|
|
|
|
2019-02-06 18:27:20 +00:00
|
|
|
if (process.resourcesPath) {
|
|
|
|
for (packagePath of searchPaths) {
|
|
|
|
try {
|
2020-03-20 20:28:31 +00:00
|
|
|
packagePath = path.join(process.resourcesPath, packagePath);
|
|
|
|
packageJson = Module._load(path.join(packagePath, 'package.json'));
|
|
|
|
break;
|
2019-02-21 09:26:07 +00:00
|
|
|
} catch {
|
2020-03-20 20:28:31 +00:00
|
|
|
continue;
|
2019-02-06 18:27:20 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (packageJson == null) {
|
2016-03-24 20:15:04 +00:00
|
|
|
process.nextTick(function () {
|
2020-03-20 20:28:31 +00:00
|
|
|
return process.exit(1);
|
|
|
|
});
|
|
|
|
throw new Error('Unable to find a valid app');
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set application's version.
|
2016-01-12 02:40:23 +00:00
|
|
|
if (packageJson.version != null) {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.setVersion(packageJson.version);
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set application's name.
|
2016-01-12 02:40:23 +00:00
|
|
|
if (packageJson.productName != null) {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.name = `${packageJson.productName}`.trim();
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (packageJson.name != null) {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.name = `${packageJson.name}`.trim();
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set application's desktop name.
|
2016-01-12 02:40:23 +00:00
|
|
|
if (packageJson.desktopName != null) {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.setDesktopName(packageJson.desktopName);
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.setDesktopName(`${app.name}.desktop`);
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 17:25:21 +00:00
|
|
|
// Set v8 flags, deliberately lazy load so that apps that do not use this
|
2019-06-03 08:03:33 +00:00
|
|
|
// feature do not pay the price
|
2016-02-17 02:23:13 +00:00
|
|
|
if (packageJson.v8Flags != null) {
|
2020-03-20 20:28:31 +00:00
|
|
|
require('v8').setFlagsFromString(packageJson.v8Flags);
|
2016-02-17 02:23:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-15 00:32:56 +00:00
|
|
|
app.setAppPath(packagePath);
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2019-02-07 20:38:57 +00:00
|
|
|
// Load the chrome devtools support.
|
2020-03-20 20:28:31 +00:00
|
|
|
require('@electron/internal/browser/devtools');
|
2019-02-07 20:38:57 +00:00
|
|
|
|
2016-06-23 01:51:39 +00:00
|
|
|
// Load protocol module to ensure it is populated on app ready
|
2020-03-20 20:28:31 +00:00
|
|
|
require('@electron/internal/browser/api/protocol');
|
2016-06-23 01:51:39 +00:00
|
|
|
|
2020-10-13 01:29:08 +00:00
|
|
|
// Load web-contents module to ensure it is populated on app ready
|
|
|
|
require('@electron/internal/browser/api/web-contents');
|
|
|
|
|
2021-01-15 00:00:37 +00:00
|
|
|
// Load web-frame-main module to ensure it is populated on app ready
|
|
|
|
require('@electron/internal/browser/api/web-frame-main');
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set main startup script of the app.
|
2020-03-20 20:28:31 +00:00
|
|
|
const mainStartupScript = packageJson.main || 'index.js';
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const KNOWN_XDG_DESKTOP_VALUES = ['Pantheon', 'Unity:Unity7', 'pop:GNOME'];
|
2018-05-14 09:00:41 +00:00
|
|
|
|
2018-05-16 12:34:13 +00:00
|
|
|
function currentPlatformSupportsAppIndicator () {
|
2020-03-20 20:28:31 +00:00
|
|
|
if (process.platform !== 'linux') return false;
|
|
|
|
const currentDesktop = process.env.XDG_CURRENT_DESKTOP;
|
2018-05-14 09:00:41 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
if (!currentDesktop) return false;
|
|
|
|
if (KNOWN_XDG_DESKTOP_VALUES.includes(currentDesktop)) return true;
|
2018-05-14 09:00:41 +00:00
|
|
|
// ubuntu based or derived session (default ubuntu one, communitheme…) supports
|
|
|
|
// indicator too.
|
2020-03-20 20:28:31 +00:00
|
|
|
if (/ubuntu/ig.test(currentDesktop)) return true;
|
2018-05-14 09:00:41 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
return false;
|
2018-05-14 09:00:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-09 13:22:18 +00:00
|
|
|
// Workaround for electron/electron#5050 and electron/electron#9046
|
2020-05-13 03:13:53 +00:00
|
|
|
process.env.ORIGINAL_XDG_CURRENT_DESKTOP = process.env.XDG_CURRENT_DESKTOP;
|
2018-05-14 09:00:41 +00:00
|
|
|
if (currentPlatformSupportsAppIndicator()) {
|
2020-03-20 20:28:31 +00:00
|
|
|
process.env.XDG_CURRENT_DESKTOP = 'Unity';
|
2016-09-27 11:19:52 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 20:35:53 +00:00
|
|
|
// Quit when all windows are closed and no other one is listening to this.
|
|
|
|
app.on('window-all-closed', () => {
|
|
|
|
if (app.listenerCount('window-all-closed') === 1) {
|
2020-03-20 20:28:31 +00:00
|
|
|
app.quit();
|
2019-01-15 20:35:53 +00:00
|
|
|
}
|
2020-03-20 20:28:31 +00:00
|
|
|
});
|
2019-01-15 20:35:53 +00:00
|
|
|
|
2021-05-06 01:05:01 +00:00
|
|
|
const { setDefaultApplicationMenu } = require('@electron/internal/browser/default-menu') as typeof defaultMenuModule;
|
2019-12-09 19:17:36 +00:00
|
|
|
|
|
|
|
// Create default menu.
|
|
|
|
//
|
2020-04-23 17:51:31 +00:00
|
|
|
// The |will-finish-launching| event is emitted before |ready| event, so default
|
|
|
|
// menu is set before any user window is created.
|
|
|
|
app.once('will-finish-launching', setDefaultApplicationMenu);
|
2019-01-15 20:35:53 +00:00
|
|
|
|
2019-02-06 18:27:20 +00:00
|
|
|
if (packagePath) {
|
|
|
|
// Finally load app's main.js and transfer control to C++.
|
2020-03-20 20:28:31 +00:00
|
|
|
process._firstFileName = Module._resolveFilename(path.join(packagePath, mainStartupScript), null, false);
|
|
|
|
Module._load(path.join(packagePath, mainStartupScript), Module, true);
|
2019-02-06 18:27:20 +00:00
|
|
|
} else {
|
2020-03-20 20:28:31 +00:00
|
|
|
console.error('Failed to locate a valid package to load (app, app.asar or default_app.asar)');
|
|
|
|
console.error('This normally means you\'ve damaged the Electron package somehow');
|
2019-02-06 18:27:20 +00:00
|
|
|
}
|