2021-11-03 08:06:52 +00:00
|
|
|
import 'core-js/stable';
|
|
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
import * as electron from 'electron';
|
2021-07-22 23:04:56 +00:00
|
|
|
import installExtension, { REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS } from 'electron-devtools-installer';
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
import appConfig from '../config/config.json';
|
|
|
|
import { trackNonInteractiveEventQueueable } from './common/analytics';
|
|
|
|
import { changelogUrl, getAppVersion, isDevelopment, isMac } from './common/constants';
|
|
|
|
import { database } from './common/database';
|
2021-10-24 03:05:03 +00:00
|
|
|
import { disableSpellcheckerDownload, exitAppFailure } from './common/electron-helpers';
|
2021-07-22 23:04:56 +00:00
|
|
|
import log, { initializeLogging } from './common/log';
|
2021-10-20 02:10:48 +00:00
|
|
|
import { validateInsomniaConfig } from './common/validate-insomnia-config';
|
2021-12-02 09:26:08 +00:00
|
|
|
import * as curlIpcMain from './main/curl-ipc-main';
|
2017-05-03 17:48:23 +00:00
|
|
|
import * as errorHandling from './main/error-handling';
|
2020-11-11 22:44:03 +00:00
|
|
|
import * as grpcIpcMain from './main/grpc-ipc-main';
|
2021-07-22 23:04:56 +00:00
|
|
|
import { checkIfRestartNeeded } from './main/squirrel-startup';
|
|
|
|
import * as updates from './main/updates';
|
2017-05-24 16:25:22 +00:00
|
|
|
import * as windowUtils from './main/window-utils';
|
2017-11-17 12:10:37 +00:00
|
|
|
import * as models from './models/index';
|
2018-06-25 17:42:50 +00:00
|
|
|
import type { Stats } from './models/stats';
|
2021-07-22 23:04:56 +00:00
|
|
|
import type { ToastNotification } from './ui/components/toast';
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle potential auto-update
|
2019-05-10 16:30:20 +00:00
|
|
|
if (checkIfRestartNeeded()) {
|
2017-05-03 17:48:23 +00:00
|
|
|
process.exit(0);
|
|
|
|
}
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2020-10-13 16:05:41 +00:00
|
|
|
initializeLogging();
|
2018-06-25 17:42:50 +00:00
|
|
|
const { app, ipcMain, session } = electron;
|
2017-11-22 21:10:34 +00:00
|
|
|
const commandLineArgs = process.argv.slice(1);
|
2020-10-13 16:05:41 +00:00
|
|
|
log.info(`Running version ${getAppVersion()}`);
|
|
|
|
|
2020-05-28 17:09:51 +00:00
|
|
|
// Explicitly set userData folder from config because it's sketchy to
|
|
|
|
// rely on electron-builder to use productName, which could be changed
|
|
|
|
// by accident.
|
|
|
|
if (!isDevelopment()) {
|
|
|
|
const defaultPath = app.getPath('userData');
|
2021-05-12 06:35:00 +00:00
|
|
|
const newPath = path.join(defaultPath, '../', appConfig.userDataFolder);
|
2020-05-28 17:09:51 +00:00
|
|
|
app.setPath('userData', newPath);
|
|
|
|
}
|
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
// So if (window) checks don't throw
|
|
|
|
global.window = global.window || undefined;
|
2021-10-20 02:10:48 +00:00
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
// When the app is first launched
|
|
|
|
app.on('ready', async () => {
|
2021-10-22 22:35:18 +00:00
|
|
|
const { error } = validateInsomniaConfig();
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
electron.dialog.showErrorBox(error.title, error.message);
|
|
|
|
console.log('[config] Insomnia config is invalid, preventing app initialization');
|
2021-10-24 03:05:03 +00:00
|
|
|
exitAppFailure();
|
2021-10-22 22:35:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-12 15:21:45 +00:00
|
|
|
disableSpellcheckerDownload();
|
|
|
|
|
2021-05-12 12:22:40 +00:00
|
|
|
if (isDevelopment()) {
|
|
|
|
try {
|
2021-06-10 00:36:48 +00:00
|
|
|
const extensions = [REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS];
|
|
|
|
const extensionsPlural = extensions.length > 0 ? 's' : '';
|
|
|
|
const names = await Promise.all(extensions.map(extension => installExtension(extension)));
|
|
|
|
console.log(`[electron-extensions] Added DevTools Extension${extensionsPlural}: ${names.join(', ')}`);
|
2021-05-12 12:22:40 +00:00
|
|
|
} catch (err) {
|
|
|
|
console.log('[electron-extensions] An error occurred: ', err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
// Init some important things first
|
|
|
|
await database.init(models.types());
|
2021-02-25 20:13:37 +00:00
|
|
|
await _createModelInstances();
|
|
|
|
await errorHandling.init();
|
2017-11-22 21:10:34 +00:00
|
|
|
await windowUtils.init();
|
|
|
|
// Init the app
|
2021-02-25 20:13:37 +00:00
|
|
|
const updatedStats = await _trackStats();
|
|
|
|
await _updateFlags(updatedStats);
|
2017-11-22 21:10:34 +00:00
|
|
|
await _launchApp();
|
2021-10-20 02:10:48 +00:00
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
// Init the rest
|
|
|
|
await updates.init();
|
2021-12-02 09:26:08 +00:00
|
|
|
curlIpcMain.init();
|
2020-11-11 22:44:03 +00:00
|
|
|
grpcIpcMain.init();
|
2017-11-22 21:10:34 +00:00
|
|
|
});
|
2021-05-24 02:22:22 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Set as default protocol
|
2021-05-24 02:22:22 +00:00
|
|
|
const defaultProtocol = `insomnia${isDevelopment() ? 'dev' : ''}`;
|
|
|
|
const fullDefaultProtocol = `${defaultProtocol}://`;
|
|
|
|
const defaultProtocolSuccessful = app.setAsDefaultProtocolClient(defaultProtocol);
|
|
|
|
if (defaultProtocolSuccessful) {
|
|
|
|
console.log(`[electron client protocol] successfully set default protocol '${fullDefaultProtocol}'`);
|
|
|
|
} else {
|
|
|
|
console.error(`[electron client protocol] FAILED to set default protocol '${fullDefaultProtocol}'`);
|
|
|
|
const isDefaultAlready = app.isDefaultProtocolClient(defaultProtocol);
|
|
|
|
if (isDefaultAlready) {
|
|
|
|
console.log(`[electron client protocol] the current executable is the default protocol for '${fullDefaultProtocol}'`);
|
|
|
|
} else {
|
|
|
|
console.log(`[electron client protocol] the current executable is not the default protocol for '${fullDefaultProtocol}'`);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: `getApplicationInfoForProtocol` is not available on Linux, so we use `getApplicationNameForProtocol` instead
|
|
|
|
const applicationName = app.getApplicationNameForProtocol(fullDefaultProtocol);
|
|
|
|
if (applicationName) {
|
|
|
|
console.log(`[electron client protocol] the default application set for '${fullDefaultProtocol}' is '${applicationName}'`);
|
|
|
|
} else {
|
|
|
|
console.error(`[electron client protocol] the default application set for '${fullDefaultProtocol}' was not found`);
|
|
|
|
}
|
|
|
|
}
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
function _addUrlToOpen(e, url) {
|
2017-11-22 21:10:34 +00:00
|
|
|
e.preventDefault();
|
|
|
|
commandLineArgs.push(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
app.on('open-url', _addUrlToOpen);
|
2016-12-01 18:48:49 +00:00
|
|
|
// Enable this for CSS grid layout :)
|
|
|
|
app.commandLine.appendSwitch('enable-experimental-web-platform-features');
|
|
|
|
// Quit when all windows are closed (except on Mac).
|
|
|
|
app.on('window-all-closed', () => {
|
2017-05-03 17:48:23 +00:00
|
|
|
if (!isMac()) {
|
2016-12-01 18:48:49 +00:00
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// Mac-only, when the user clicks the doc icon
|
2021-05-12 06:35:00 +00:00
|
|
|
app.on('activate', (_error, hasVisibleWindows) => {
|
2016-12-01 18:48:49 +00:00
|
|
|
// Create a new window when clicking the doc icon if there isn't one open
|
|
|
|
if (!hasVisibleWindows) {
|
|
|
|
try {
|
2017-05-24 16:25:22 +00:00
|
|
|
windowUtils.createWindow();
|
2016-12-01 18:48:49 +00:00
|
|
|
} catch (e) {
|
|
|
|
// This might happen if 'ready' hasn't fired yet. So we're just going
|
|
|
|
// to silence these errors.
|
2017-11-18 22:47:54 +00:00
|
|
|
console.log('[main] App not ready to "activate" yet');
|
2016-12-01 18:48:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
function _launchApp() {
|
2017-11-22 21:10:34 +00:00
|
|
|
app.removeListener('open-url', _addUrlToOpen);
|
2017-05-24 16:25:22 +00:00
|
|
|
const window = windowUtils.createWindow();
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle URLs sent via command line args
|
2017-11-22 21:10:34 +00:00
|
|
|
ipcMain.once('window-ready', () => {
|
2021-05-12 06:35:00 +00:00
|
|
|
// @ts-expect-error -- TSCONVERSION
|
2017-11-22 21:10:34 +00:00
|
|
|
commandLineArgs.length && window.send('run-command', commandLineArgs[0]);
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
2017-05-03 17:48:23 +00:00
|
|
|
// Called when second instance launched with args (Windows)
|
2019-04-18 00:50:03 +00:00
|
|
|
const gotTheLock = app.requestSingleInstanceLock();
|
|
|
|
|
|
|
|
if (!gotTheLock) {
|
|
|
|
console.error('[app] Failed to get instance lock');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-12 06:35:00 +00:00
|
|
|
app.on('second-instance', () => {
|
2019-04-18 00:50:03 +00:00
|
|
|
// Someone tried to run a second instance, we should focus our window.
|
|
|
|
if (window) {
|
|
|
|
if (window.isMinimized()) window.restore();
|
|
|
|
window.focus();
|
|
|
|
}
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle URLs when app already open
|
2021-05-12 06:35:00 +00:00
|
|
|
app.addListener('open-url', (_error, url) => {
|
|
|
|
// @ts-expect-error -- TSCONVERSION
|
2017-05-03 17:48:23 +00:00
|
|
|
window.send('run-command', url);
|
|
|
|
// Apparently a timeout is needed because Chrome steals back focus immediately
|
|
|
|
// after opening the URL.
|
|
|
|
setTimeout(() => {
|
|
|
|
window.focus();
|
|
|
|
}, 100);
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
2017-08-01 22:03:12 +00:00
|
|
|
// Don't send origin header from Insomnia app because we're not technically using CORS
|
2017-11-20 16:07:36 +00:00
|
|
|
session.defaultSession.webRequest.onBeforeSendHeaders((details, fn) => {
|
2020-04-09 17:32:19 +00:00
|
|
|
delete details.requestHeaders.Origin;
|
2020-05-28 17:09:51 +00:00
|
|
|
fn({
|
|
|
|
cancel: false,
|
|
|
|
requestHeaders: details.requestHeaders,
|
|
|
|
});
|
2017-08-01 22:03:12 +00:00
|
|
|
});
|
2017-11-22 21:10:34 +00:00
|
|
|
}
|
|
|
|
|
2021-02-25 20:13:37 +00:00
|
|
|
/*
|
|
|
|
Only one instance should exist of these models
|
|
|
|
On rare occasions, race conditions during initialization result in multiple being created
|
|
|
|
To avoid that, create them explicitly prior to any initialization steps
|
|
|
|
*/
|
|
|
|
async function _createModelInstances() {
|
|
|
|
await models.stats.get();
|
|
|
|
await models.settings.getOrCreate();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function _updateFlags({ launches }: Stats) {
|
|
|
|
const firstLaunch = launches === 1;
|
2021-05-12 06:35:00 +00:00
|
|
|
|
2021-02-25 20:13:37 +00:00
|
|
|
if (firstLaunch) {
|
2021-04-15 14:33:21 +00:00
|
|
|
await models.settings.patch({
|
|
|
|
hasPromptedOnboarding: false,
|
|
|
|
// Don't show the analytics preferences prompt as it is part of the onboarding flow
|
|
|
|
hasPromptedAnalytics: true,
|
|
|
|
});
|
2021-02-25 20:13:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-12 06:35:00 +00:00
|
|
|
async function _trackStats() {
|
2017-11-22 21:10:34 +00:00
|
|
|
// Handle the stats
|
|
|
|
const oldStats = await models.stats.get();
|
|
|
|
const stats: Stats = await models.stats.update({
|
|
|
|
currentLaunch: Date.now(),
|
|
|
|
lastLaunch: oldStats.currentLaunch,
|
|
|
|
currentVersion: getAppVersion(),
|
|
|
|
lastVersion: oldStats.currentVersion,
|
2018-12-12 17:36:11 +00:00
|
|
|
launches: oldStats.launches + 1,
|
2017-11-22 21:10:34 +00:00
|
|
|
});
|
|
|
|
// Update Stats Object
|
|
|
|
const firstLaunch = stats.launches === 1;
|
2018-10-17 16:42:33 +00:00
|
|
|
const justUpdated = !firstLaunch && stats.currentVersion !== stats.lastVersion;
|
2017-11-22 21:10:34 +00:00
|
|
|
|
2020-04-26 20:33:39 +00:00
|
|
|
if (firstLaunch) {
|
|
|
|
trackNonInteractiveEventQueueable('General', 'First Launch', stats.currentVersion);
|
|
|
|
} else if (justUpdated) {
|
|
|
|
trackNonInteractiveEventQueueable('General', 'Updated', stats.currentVersion);
|
|
|
|
} else {
|
|
|
|
trackNonInteractiveEventQueueable('General', 'Launched', stats.currentVersion);
|
|
|
|
}
|
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
ipcMain.once('window-ready', () => {
|
2018-06-25 17:42:50 +00:00
|
|
|
const { currentVersion } = stats;
|
2021-05-12 06:35:00 +00:00
|
|
|
|
2017-11-22 21:10:34 +00:00
|
|
|
if (!justUpdated || !currentVersion) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
const { BrowserWindow } = electron;
|
2017-11-22 21:10:34 +00:00
|
|
|
const notification: ToastNotification = {
|
|
|
|
key: `updated-${currentVersion}`,
|
2020-04-26 20:33:39 +00:00
|
|
|
url: changelogUrl(),
|
2020-05-14 22:54:07 +00:00
|
|
|
cta: "See What's New",
|
2017-11-22 21:10:34 +00:00
|
|
|
message: `Updated to ${currentVersion}`,
|
|
|
|
};
|
|
|
|
// Wait a bit before showing the user because the app just launched.
|
|
|
|
setTimeout(() => {
|
|
|
|
for (const window of BrowserWindow.getAllWindows()) {
|
2021-10-14 14:59:45 +00:00
|
|
|
// @ts-expect-error -- TSCONVERSION likely needs to be window.webContents.send instead
|
2017-11-22 21:10:34 +00:00
|
|
|
window.send('show-notification', notification);
|
|
|
|
}
|
|
|
|
}, 5000);
|
|
|
|
});
|
2021-02-25 20:13:37 +00:00
|
|
|
return stats;
|
2017-11-22 21:10:34 +00:00
|
|
|
}
|