2019-08-28 04:35:07 +02:00
|
|
|
/* eslint no-console:0 */
|
|
|
|
/* eslint space-before-function-paren:0 */
|
2017-11-17 21:35:37 +01:00
|
|
|
// Module imports
|
2019-03-05 05:46:57 +01:00
|
|
|
import '@babel/polyfill';
|
2018-01-08 04:46:22 +01:00
|
|
|
import SemVer from 'semver';
|
|
|
|
import https from 'https';
|
2021-11-11 15:19:09 +01:00
|
|
|
import { app, dialog, ipcMain, session, shell, BrowserWindow } from 'electron';
|
2017-11-18 06:08:44 +01:00
|
|
|
import { autoUpdater } from 'electron-updater';
|
2021-10-08 05:47:39 +02:00
|
|
|
import Lbry from 'lbry';
|
2021-12-05 04:20:24 +01:00
|
|
|
import LbryFirstInstance from './LbryFirstInstance';
|
2018-01-18 03:13:08 +01:00
|
|
|
import Daemon from './Daemon';
|
2019-03-20 20:09:58 +01:00
|
|
|
import isDev from 'electron-is-dev';
|
2018-02-24 00:20:12 +01:00
|
|
|
import createTray from './createTray';
|
2018-01-18 03:13:08 +01:00
|
|
|
import createWindow from './createWindow';
|
2019-11-11 16:22:57 +01:00
|
|
|
import pjson from '../package.json';
|
2019-03-15 02:54:17 +01:00
|
|
|
import startSandbox from './startSandbox';
|
2019-03-20 20:09:58 +01:00
|
|
|
import installDevtools from './installDevtools';
|
2019-11-12 02:19:22 +01:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2022-03-01 19:38:53 +01:00
|
|
|
import { diskSpaceLinux, diskSpaceWindows, diskSpaceMac } from '../ui/util/diskspace';
|
2022-02-25 21:01:14 +01:00
|
|
|
|
2021-11-11 15:19:09 +01:00
|
|
|
const { download } = require('electron-dl');
|
2022-09-02 18:43:35 +02:00
|
|
|
const mime = require('mime');
|
2022-01-02 21:33:11 +01:00
|
|
|
const remote = require('@electron/remote/main');
|
2022-02-25 21:01:14 +01:00
|
|
|
const os = require('os');
|
2022-07-07 22:48:42 +02:00
|
|
|
const sudo = require('sudo-prompt');
|
2022-02-25 21:01:14 +01:00
|
|
|
|
2022-01-02 21:33:11 +01:00
|
|
|
remote.initialize();
|
2019-11-12 02:19:22 +01:00
|
|
|
const filePath = path.join(process.resourcesPath, 'static', 'upgradeDisabled');
|
|
|
|
let upgradeDisabled;
|
|
|
|
try {
|
|
|
|
fs.accessSync(filePath, fs.constants.R_OK);
|
|
|
|
upgradeDisabled = true;
|
|
|
|
} catch (err) {
|
|
|
|
upgradeDisabled = false;
|
|
|
|
}
|
|
|
|
autoUpdater.autoDownload = !upgradeDisabled;
|
2022-07-07 22:48:42 +02:00
|
|
|
autoUpdater.allowPrerelease = false;
|
2017-12-22 07:42:04 +01:00
|
|
|
|
2022-07-07 22:48:42 +02:00
|
|
|
const UPDATE_STATE_INIT = 0;
|
|
|
|
const UPDATE_STATE_CHECKING = 1;
|
|
|
|
const UPDATE_STATE_UPDATES_FOUND = 2;
|
|
|
|
const UPDATE_STATE_NO_UPDATES_FOUND = 3;
|
|
|
|
const UPDATE_STATE_DOWNLOADING = 4;
|
|
|
|
const UPDATE_STATE_DOWNLOADED = 5;
|
|
|
|
let updateState = UPDATE_STATE_INIT;
|
|
|
|
let updateDownloadItem;
|
|
|
|
|
|
|
|
const isAutoUpdateSupported = ['win32', 'darwin'].includes(process.platform) || !!process.env.APPIMAGE;
|
2018-03-20 02:09:48 +01:00
|
|
|
|
|
|
|
// This is used to keep track of whether we are showing the special dialog
|
|
|
|
// that we show on Windows after you decline an upgrade and close the app later.
|
|
|
|
let showingAutoUpdateCloseAlert = false;
|
|
|
|
|
2018-01-18 03:13:08 +01:00
|
|
|
// Keep a global reference, if you don't, they will be closed automatically when the JavaScript
|
|
|
|
// object is garbage collected.
|
2017-12-21 18:32:51 +01:00
|
|
|
let rendererWindow;
|
2019-03-05 05:46:57 +01:00
|
|
|
|
2019-09-26 18:07:11 +02:00
|
|
|
let tray; // eslint-disable-line
|
2018-01-18 03:13:08 +01:00
|
|
|
let daemon;
|
2020-07-03 00:42:04 +02:00
|
|
|
let lbryFirst;
|
2018-01-18 03:13:08 +01:00
|
|
|
|
2018-02-24 00:20:12 +01:00
|
|
|
const appState = {};
|
2021-08-04 03:52:24 +02:00
|
|
|
const PROTOCOL = 'lbry';
|
2018-01-18 03:13:08 +01:00
|
|
|
|
2021-08-04 03:52:24 +02:00
|
|
|
if (isDev && process.platform === 'win32') {
|
|
|
|
// Setting this is required to get this working in dev mode.
|
|
|
|
app.setAsDefaultProtocolClient(PROTOCOL, process.execPath, [
|
|
|
|
path.resolve(process.argv[1]),
|
|
|
|
]);
|
2021-11-27 16:24:10 +01:00
|
|
|
} else if (process.platform !== 'linux') {
|
2021-08-04 03:52:24 +02:00
|
|
|
app.setAsDefaultProtocolClient(PROTOCOL);
|
2021-03-04 07:14:19 +01:00
|
|
|
}
|
|
|
|
|
2020-09-07 00:46:30 +02:00
|
|
|
app.name = 'LBRY';
|
2018-03-20 20:51:28 +01:00
|
|
|
app.setAppUserModelId('io.lbry.LBRY');
|
2020-01-07 14:44:23 +01:00
|
|
|
app.commandLine.appendSwitch('force-color-profile', 'srgb');
|
2020-09-07 00:46:30 +02:00
|
|
|
app.commandLine.appendSwitch('disable-features', 'OutOfBlinkCors');
|
2018-01-18 03:13:08 +01:00
|
|
|
|
2018-07-19 08:45:32 +02:00
|
|
|
if (isDev) {
|
2019-04-03 07:56:58 +02:00
|
|
|
// Disable security warnings in dev mode:
|
|
|
|
// https://github.com/electron/electron/blob/master/docs/tutorial/security.md#electron-security-warnings
|
2018-08-08 18:53:33 +02:00
|
|
|
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = true;
|
2018-07-19 08:45:32 +02:00
|
|
|
}
|
|
|
|
|
2019-03-25 07:18:22 +01:00
|
|
|
const startDaemon = async () => {
|
2019-02-18 18:33:02 +01:00
|
|
|
let isDaemonRunning = false;
|
2019-03-20 20:09:58 +01:00
|
|
|
|
2019-02-18 18:33:02 +01:00
|
|
|
await Lbry.status()
|
|
|
|
.then(() => {
|
|
|
|
isDaemonRunning = true;
|
|
|
|
console.log('SDK already running');
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
console.log('Starting SDK');
|
|
|
|
});
|
2018-10-26 06:20:18 +02:00
|
|
|
|
2018-01-29 15:14:31 +01:00
|
|
|
if (!isDaemonRunning) {
|
|
|
|
daemon = new Daemon();
|
|
|
|
daemon.on('exit', () => {
|
2018-07-11 07:01:54 +02:00
|
|
|
if (!isDev) {
|
2018-07-11 06:14:50 +02:00
|
|
|
daemon = null;
|
|
|
|
if (!appState.isQuitting) {
|
|
|
|
dialog.showErrorBox(
|
|
|
|
'Daemon has Exited',
|
|
|
|
'The daemon may have encountered an unexpected error, or another daemon instance is already running. \n\n' +
|
|
|
|
'For more information please visit: \n' +
|
2019-03-20 22:43:00 +01:00
|
|
|
'https://lbry.com/faq/startup-troubleshooting'
|
2018-07-11 06:14:50 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
app.quit();
|
2018-01-29 15:14:31 +01:00
|
|
|
}
|
|
|
|
});
|
2019-05-01 16:18:26 +02:00
|
|
|
await daemon.launch();
|
2018-01-29 15:14:31 +01:00
|
|
|
}
|
2019-03-20 20:09:58 +01:00
|
|
|
};
|
2019-01-16 05:33:06 +01:00
|
|
|
|
2021-12-05 04:20:24 +01:00
|
|
|
let isLbryFirstRunning = false;
|
|
|
|
const startLbryFirst = async () => {
|
|
|
|
if (isLbryFirstRunning) {
|
|
|
|
console.log('LbryFirst already running');
|
|
|
|
handleLbryFirstLaunched();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('LbryFirst: Starting...');
|
|
|
|
|
|
|
|
try {
|
|
|
|
lbryFirst = new LbryFirstInstance();
|
|
|
|
lbryFirst.on('exit', e => {
|
|
|
|
if (!isDev) {
|
|
|
|
lbryFirst = null;
|
|
|
|
isLbryFirstRunning = false;
|
|
|
|
if (!appState.isQuitting) {
|
|
|
|
dialog.showErrorBox(
|
|
|
|
'LbryFirst has Exited',
|
|
|
|
'The lbryFirst may have encountered an unexpected error, or another lbryFirst instance is already running. \n\n',
|
|
|
|
e
|
|
|
|
);
|
|
|
|
}
|
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
console.log('LbryFirst: Failed to create new instance\n\n', e);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('LbryFirst: Running...');
|
|
|
|
|
|
|
|
try {
|
|
|
|
await lbryFirst.launch();
|
|
|
|
handleLbryFirstLaunched();
|
|
|
|
} catch (e) {
|
|
|
|
isLbryFirstRunning = false;
|
|
|
|
console.log('LbryFirst: Failed to start\n', e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleLbryFirstLaunched = () => {
|
|
|
|
isLbryFirstRunning = true;
|
|
|
|
rendererWindow.webContents.send('lbry-first-launched');
|
|
|
|
};
|
2020-07-07 22:42:21 +02:00
|
|
|
|
2019-03-20 20:09:58 +01:00
|
|
|
// When we are starting the app, ensure there are no other apps already running
|
|
|
|
const gotSingleInstanceLock = app.requestSingleInstanceLock();
|
2019-03-19 04:33:46 +01:00
|
|
|
|
2019-03-20 20:09:58 +01:00
|
|
|
if (!gotSingleInstanceLock) {
|
|
|
|
// Another instance already has a lock, abort
|
|
|
|
app.quit();
|
|
|
|
} else {
|
|
|
|
app.on('second-instance', (event, argv) => {
|
|
|
|
// Send the url to the app to navigate first, then focus
|
|
|
|
if (rendererWindow) {
|
2021-08-04 03:52:24 +02:00
|
|
|
// External uri (last item on argv):
|
|
|
|
const EXTERNAL_URI = (argv.length) ? argv[argv.length - 1] : '';
|
|
|
|
// Handle protocol requests for windows and linux
|
|
|
|
const platforms = (process.platform === 'win32' || process.platform === 'linux');
|
|
|
|
// Is LBRY protocol
|
|
|
|
const isProtocolURI = String(EXTERNAL_URI).startsWith(PROTOCOL + '://');
|
|
|
|
// External protocol requested:
|
|
|
|
if (platforms && isProtocolURI) {
|
|
|
|
let URI = EXTERNAL_URI;
|
2019-03-20 20:09:58 +01:00
|
|
|
// Keep only command line / deep linked arguments
|
|
|
|
// Windows normalizes URIs when they're passed in from other apps. On Windows, this tries to
|
|
|
|
// restore the original URI that was typed.
|
|
|
|
// - If the URI has no path, Windows adds a trailing slash. LBRY URIs can't have a slash with no
|
|
|
|
// path, so we just strip it off.
|
|
|
|
// - In a URI with a claim ID, like lbry://channel#claimid, Windows interprets the hash mark as
|
|
|
|
// an anchor and converts it to lbry://channel/#claimid. We remove the slash here as well.
|
|
|
|
// - ? also interpreted as an anchor, remove slash also.
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
URI = URI.replace(/\/$/, '')
|
|
|
|
.replace('/#', '#')
|
|
|
|
.replace('/?', '?');
|
|
|
|
}
|
2019-02-22 06:01:59 +01:00
|
|
|
|
2019-03-20 20:09:58 +01:00
|
|
|
rendererWindow.webContents.send('open-uri-requested', URI);
|
|
|
|
}
|
2019-03-20 18:57:31 +01:00
|
|
|
|
2019-03-20 20:09:58 +01:00
|
|
|
rendererWindow.show();
|
|
|
|
}
|
2018-05-23 04:37:09 +02:00
|
|
|
});
|
2019-02-22 06:01:59 +01:00
|
|
|
|
2019-03-25 07:18:22 +01:00
|
|
|
app.on('ready', async () => {
|
2019-05-01 16:18:26 +02:00
|
|
|
await startDaemon();
|
2019-03-20 20:09:58 +01:00
|
|
|
startSandbox();
|
|
|
|
|
|
|
|
if (isDev) {
|
|
|
|
await installDevtools();
|
2019-03-20 20:24:28 +01:00
|
|
|
}
|
|
|
|
rendererWindow = createWindow(appState);
|
|
|
|
tray = createTray(rendererWindow);
|
|
|
|
|
|
|
|
if (!isDev) {
|
2019-03-20 20:09:58 +01:00
|
|
|
rendererWindow.webContents.on('devtools-opened', () => {
|
|
|
|
// Send a message to the renderer process so we can log a security warning
|
|
|
|
rendererWindow.webContents.send('devtools-is-opened');
|
|
|
|
});
|
2018-10-26 06:20:18 +02:00
|
|
|
}
|
2019-03-20 20:09:58 +01:00
|
|
|
|
2020-06-03 22:25:06 +02:00
|
|
|
// If an "Origin" header is passed, the SDK will check that it is set to allow that origin in the daemon_settings.yml
|
|
|
|
// By default, electron sends http://localhost:{port} as the origin for POST requests
|
|
|
|
// https://github.com/electron/electron/issues/7931#issuecomment-361759277
|
|
|
|
session.defaultSession.webRequest.onBeforeSendHeaders((details, callback) => {
|
2020-06-08 17:52:21 +02:00
|
|
|
if (details.method === 'POST' && details.requestHeaders['Content-Type'] === 'application/json-rpc') {
|
|
|
|
delete details.requestHeaders['Origin'];
|
|
|
|
}
|
2020-06-03 22:25:06 +02:00
|
|
|
callback({ cancel: false, requestHeaders: details.requestHeaders });
|
|
|
|
});
|
2018-08-06 18:14:58 +02:00
|
|
|
});
|
2019-03-20 20:09:58 +01:00
|
|
|
}
|
2017-10-13 00:04:31 +02:00
|
|
|
|
2018-01-18 03:13:08 +01:00
|
|
|
app.on('activate', () => {
|
2018-07-03 06:57:01 +02:00
|
|
|
if (rendererWindow) {
|
|
|
|
rendererWindow.show();
|
|
|
|
}
|
2017-10-13 00:04:31 +02:00
|
|
|
});
|
2017-12-21 18:32:51 +01:00
|
|
|
|
2018-01-29 13:04:41 +01:00
|
|
|
app.on('will-quit', event => {
|
|
|
|
if (
|
|
|
|
process.platform === 'win32' &&
|
2022-07-07 22:48:42 +02:00
|
|
|
updateState === UPDATE_STATE_DOWNLOADED &&
|
|
|
|
isAutoUpdateSupported &&
|
2018-03-17 21:44:46 +01:00
|
|
|
!appState.autoUpdateAccepted &&
|
2018-03-20 02:09:48 +01:00
|
|
|
!showingAutoUpdateCloseAlert
|
2018-01-29 13:04:41 +01:00
|
|
|
) {
|
2018-03-20 02:09:48 +01:00
|
|
|
// We're on Win and have an update downloaded, but the user declined it (or closed
|
2018-01-23 08:44:15 +01:00
|
|
|
// the app without accepting it). Now the user is closing the app, so the new update
|
|
|
|
// will install. On Mac this is silent, but on Windows they get a confusing permission
|
|
|
|
// escalation dialog, so we show Windows users a warning dialog first.
|
|
|
|
|
2018-03-20 02:09:48 +01:00
|
|
|
showingAutoUpdateCloseAlert = true;
|
2018-01-29 13:04:41 +01:00
|
|
|
dialog.showMessageBox(
|
|
|
|
{
|
|
|
|
type: 'info',
|
|
|
|
title: 'LBRY Will Upgrade',
|
2019-05-07 23:38:29 +02:00
|
|
|
message: 'LBRY has a pending upgrade. Please select "Yes" to install it on the prompt shown after this one.',
|
2018-01-29 13:04:41 +01:00
|
|
|
},
|
|
|
|
() => {
|
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
);
|
2017-12-04 21:46:51 +01:00
|
|
|
|
2018-01-24 01:46:49 +01:00
|
|
|
event.preventDefault();
|
2018-01-23 08:44:15 +01:00
|
|
|
return;
|
2017-12-04 21:46:51 +01:00
|
|
|
}
|
2017-01-16 20:06:53 +01:00
|
|
|
|
2018-02-24 00:20:12 +01:00
|
|
|
appState.isQuitting = true;
|
2020-08-13 18:57:00 +02:00
|
|
|
|
2018-03-20 20:01:18 +01:00
|
|
|
if (daemon) {
|
|
|
|
daemon.quit();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2020-07-03 00:42:04 +02:00
|
|
|
if (lbryFirst) {
|
|
|
|
lbryFirst.quit();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2018-07-03 07:27:47 +02:00
|
|
|
|
|
|
|
if (rendererWindow) {
|
2020-08-13 18:57:00 +02:00
|
|
|
tray.destroy();
|
2018-07-03 07:27:47 +02:00
|
|
|
rendererWindow = null;
|
|
|
|
}
|
2017-12-13 22:36:30 +01:00
|
|
|
});
|
2017-02-23 19:46:25 +01:00
|
|
|
|
2019-05-09 15:53:43 +02:00
|
|
|
app.on('will-finish-launching', () => {
|
|
|
|
// Protocol handler for macOS
|
|
|
|
app.on('open-url', (event, URL) => {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
if (rendererWindow) {
|
|
|
|
rendererWindow.webContents.send('open-uri-requested', URL);
|
|
|
|
rendererWindow.show();
|
|
|
|
} else {
|
|
|
|
appState.macDeepLinkingURI = URL;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-02-24 00:20:12 +01:00
|
|
|
app.on('before-quit', () => {
|
|
|
|
appState.isQuitting = true;
|
2017-03-24 00:07:08 +01:00
|
|
|
});
|
2017-02-20 19:59:03 +01:00
|
|
|
|
2022-09-02 18:43:35 +02:00
|
|
|
// Get the content of a file as a raw buffer of bytes.
|
|
|
|
// Useful to convert a file path to a File instance.
|
|
|
|
// Example:
|
|
|
|
// const result = await ipcMain.invoke('get-file-from-path', 'path/to/file');
|
|
|
|
// const file = new File([result.buffer], result.name);
|
|
|
|
// NOTE: if path points to a folder, an empty
|
|
|
|
// file will be given.
|
2022-09-19 22:42:16 +02:00
|
|
|
ipcMain.handle('get-file-from-path', (event, path, readContents = true) => {
|
2022-09-02 18:43:35 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
fs.stat(path, (error, stats) => {
|
|
|
|
if (error) {
|
|
|
|
reject(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Separate folders considering "\" and "/"
|
|
|
|
// as separators (cross platform)
|
|
|
|
const folders = path.split(/[\\/]/);
|
|
|
|
const name = folders[folders.length - 1];
|
|
|
|
if (stats.isDirectory()) {
|
|
|
|
resolve({
|
|
|
|
name,
|
|
|
|
mime: undefined,
|
|
|
|
path,
|
|
|
|
buffer: new ArrayBuffer(0),
|
|
|
|
});
|
|
|
|
return;
|
2022-09-19 22:42:16 +02:00
|
|
|
}
|
|
|
|
if (!readContents) {
|
|
|
|
resolve({
|
|
|
|
name,
|
|
|
|
mime: mime.getType(name) || undefined,
|
|
|
|
path,
|
|
|
|
buffer: new ArrayBuffer(0),
|
|
|
|
});
|
|
|
|
return;
|
2022-09-02 18:43:35 +02:00
|
|
|
}
|
|
|
|
// Encoding null ensures data results in a Buffer.
|
|
|
|
fs.readFile(path, { encoding: null }, (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
resolve({
|
|
|
|
name,
|
|
|
|
mime: mime.getType(name) || undefined,
|
|
|
|
path,
|
|
|
|
buffer: data,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-02-25 21:01:14 +01:00
|
|
|
ipcMain.on('get-disk-space', async (event) => {
|
|
|
|
try {
|
|
|
|
const { data_dir } = await Lbry.settings_get();
|
2022-03-01 16:57:15 +01:00
|
|
|
let diskSpace;
|
2022-03-01 19:38:53 +01:00
|
|
|
switch (os.platform()) {
|
|
|
|
case 'linux':
|
|
|
|
diskSpace = await diskSpaceLinux(data_dir);
|
|
|
|
break;
|
|
|
|
case 'darwin':
|
|
|
|
diskSpace = await diskSpaceMac(data_dir);
|
|
|
|
break;
|
|
|
|
case 'win32':
|
|
|
|
diskSpace = await diskSpaceWindows(data_dir);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error('unknown platform');
|
2022-02-25 21:01:14 +01:00
|
|
|
}
|
2022-03-01 19:38:53 +01:00
|
|
|
rendererWindow.webContents.send('send-disk-space', { diskSpace });
|
2022-02-25 21:01:14 +01:00
|
|
|
} catch (e) {
|
|
|
|
rendererWindow.webContents.send('send-disk-space', { error: e.message || e });
|
2022-06-10 18:42:49 +02:00
|
|
|
console.log('Failed to get disk space', e);
|
2022-02-25 21:01:14 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
ipcMain.on('version-info-requested', () => {
|
2017-12-04 21:46:51 +01:00
|
|
|
function formatRc(ver) {
|
2018-01-18 03:13:08 +01:00
|
|
|
// Adds dash if needed to make RC suffix SemVer friendly
|
2017-12-21 18:32:51 +01:00
|
|
|
return ver.replace(/([^-])rc/, '$1-rc');
|
2017-12-04 21:46:51 +01:00
|
|
|
}
|
2017-09-14 09:36:41 +02:00
|
|
|
|
2018-06-29 23:40:31 +02:00
|
|
|
const localVersion = pjson.version;
|
2018-01-18 03:13:08 +01:00
|
|
|
let result = '';
|
2018-05-23 21:30:45 +02:00
|
|
|
const onSuccess = res => {
|
2017-12-21 18:32:51 +01:00
|
|
|
res.on('data', data => {
|
|
|
|
result += data;
|
|
|
|
});
|
2018-05-23 21:30:45 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
res.on('end', () => {
|
2019-03-19 04:33:46 +01:00
|
|
|
let json;
|
|
|
|
try {
|
|
|
|
json = JSON.parse(result);
|
2019-03-19 02:44:49 +01:00
|
|
|
} catch (e) {
|
2019-03-19 04:33:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const tagName = json.tag_name;
|
2019-02-18 18:33:02 +01:00
|
|
|
if (tagName) {
|
|
|
|
const [, remoteVersion] = tagName.match(/^v([\d.]+(?:-?rc\d+)?)$/);
|
|
|
|
if (!remoteVersion) {
|
|
|
|
if (rendererWindow) {
|
|
|
|
rendererWindow.webContents.send('version-info-received', localVersion);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const upgradeAvailable = SemVer.gt(formatRc(remoteVersion), formatRc(localVersion));
|
|
|
|
if (rendererWindow) {
|
|
|
|
rendererWindow.webContents.send('version-info-received', {
|
|
|
|
remoteVersion,
|
|
|
|
localVersion,
|
|
|
|
upgradeAvailable,
|
|
|
|
});
|
|
|
|
}
|
2017-12-21 18:32:51 +01:00
|
|
|
}
|
2019-02-18 18:33:02 +01:00
|
|
|
} else if (rendererWindow) {
|
2019-11-12 02:19:22 +01:00
|
|
|
rendererWindow.webContents.send('version-info-received', { localVersion });
|
2017-12-21 18:32:51 +01:00
|
|
|
}
|
|
|
|
});
|
2018-05-23 21:30:45 +02:00
|
|
|
};
|
2017-05-10 10:44:06 +02:00
|
|
|
|
2019-03-19 04:33:46 +01:00
|
|
|
const requestLatestRelease = (alreadyRedirected = false) => {
|
2019-03-19 02:44:49 +01:00
|
|
|
const req = https.get(
|
|
|
|
{
|
|
|
|
hostname: 'api.github.com',
|
|
|
|
path: '/repos/lbryio/lbry-desktop/releases/latest',
|
|
|
|
headers: { 'user-agent': `LBRY/${localVersion}` },
|
|
|
|
},
|
|
|
|
res => {
|
|
|
|
if (res.statusCode === 301 || res.statusCode === 302) {
|
|
|
|
requestLatestRelease(res.headers.location, true);
|
|
|
|
} else {
|
|
|
|
onSuccess(res);
|
|
|
|
}
|
2018-05-23 21:30:45 +02:00
|
|
|
}
|
2019-03-19 02:44:49 +01:00
|
|
|
);
|
2018-05-23 21:30:45 +02:00
|
|
|
|
|
|
|
if (alreadyRedirected) return;
|
|
|
|
req.on('error', err => {
|
|
|
|
console.log('Failed to get current version from GitHub. Error:', err);
|
|
|
|
if (rendererWindow) {
|
|
|
|
rendererWindow.webContents.send('version-info-received', null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-11-12 02:19:22 +01:00
|
|
|
if (upgradeDisabled && rendererWindow) {
|
|
|
|
rendererWindow.webContents.send('version-info-received', { localVersion });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-19 04:33:46 +01:00
|
|
|
requestLatestRelease();
|
2017-12-04 21:46:51 +01:00
|
|
|
});
|
2021-12-05 04:20:24 +01:00
|
|
|
|
|
|
|
ipcMain.on('launch-lbry-first', async () => {
|
|
|
|
try {
|
|
|
|
await startLbryFirst();
|
|
|
|
} catch (e) {
|
|
|
|
console.log('Failed to start LbryFirst');
|
|
|
|
console.log(e);
|
|
|
|
}
|
|
|
|
});
|
2020-07-07 22:42:21 +02:00
|
|
|
|
2018-01-08 06:16:31 +01:00
|
|
|
process.on('uncaughtException', error => {
|
2019-03-19 04:33:46 +01:00
|
|
|
console.log(error);
|
2018-01-18 03:13:08 +01:00
|
|
|
dialog.showErrorBox('Error Encountered', `Caught error: ${error}`);
|
2018-02-24 00:20:12 +01:00
|
|
|
appState.isQuitting = true;
|
2018-01-18 03:13:08 +01:00
|
|
|
if (daemon) daemon.quit();
|
|
|
|
app.exit(1);
|
2018-01-05 07:29:31 +01:00
|
|
|
});
|
2022-07-07 22:48:42 +02:00
|
|
|
|
|
|
|
// Auto updater
|
|
|
|
autoUpdater.on('download-progress', () => {
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADING;
|
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('update-downloaded', () => {
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADED;
|
|
|
|
|
|
|
|
// If this download was trigger by
|
|
|
|
// autoUpdateAccepted it means, the user
|
|
|
|
// wants to install the new update but
|
|
|
|
// needed to downloaded the files first.
|
|
|
|
if (appState.autoUpdateAccepted) {
|
|
|
|
autoUpdater.quitAndInstall();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('update-available', () => {
|
|
|
|
if (updateState === UPDATE_STATE_DOWNLOADING) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
updateState = UPDATE_STATE_UPDATES_FOUND;
|
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('update-not-available', () => {
|
|
|
|
updateState = UPDATE_STATE_NO_UPDATES_FOUND;
|
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('error', () => {
|
|
|
|
if (updateState === UPDATE_STATE_DOWNLOADING) {
|
|
|
|
updateState = UPDATE_STATE_UPDATES_FOUND;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
updateState = UPDATE_STATE_INIT;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manual (.deb) update
|
|
|
|
ipcMain.on('cancel-download-upgrade', () => {
|
|
|
|
if (updateDownloadItem) {
|
|
|
|
// Cancel the download and execute the onCancel
|
|
|
|
// callback set in the options.
|
|
|
|
updateDownloadItem.cancel();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.on('download-upgrade', (event, params) => {
|
|
|
|
if (updateState !== UPDATE_STATE_UPDATES_FOUND) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (isAutoUpdateSupported) {
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADING;
|
|
|
|
autoUpdater.downloadUpdate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { url, options } = params;
|
|
|
|
const dir = fs.mkdtempSync(app.getPath('temp') + path.sep);
|
|
|
|
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADING;
|
|
|
|
|
|
|
|
// Grab the download item's handler to allow
|
|
|
|
// cancelling the operation if required.
|
|
|
|
options.onStarted = function(downloadItem) {
|
|
|
|
updateDownloadItem = downloadItem;
|
|
|
|
};
|
|
|
|
options.onCancel = function() {
|
|
|
|
updateState = UPDATE_STATE_UPDATES_FOUND;
|
|
|
|
updateDownloadItem = undefined;
|
|
|
|
};
|
|
|
|
options.onProgress = function(p) {
|
|
|
|
rendererWindow.webContents.send('download-progress-update', p);
|
|
|
|
};
|
|
|
|
options.onCompleted = function(c) {
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADED;
|
|
|
|
updateDownloadItem = undefined;
|
|
|
|
rendererWindow.webContents.send('download-update-complete', c);
|
|
|
|
};
|
|
|
|
options.directory = dir;
|
|
|
|
const win = BrowserWindow.getFocusedWindow();
|
|
|
|
download(win, url, options).catch(e => {
|
|
|
|
updateState = UPDATE_STATE_UPDATES_FOUND;
|
|
|
|
console.log('e', e);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Update behavior
|
|
|
|
ipcMain.on('autoUpdateAccepted', () => {
|
|
|
|
appState.autoUpdateAccepted = true;
|
|
|
|
|
|
|
|
// quitAndInstall can only be called if the
|
|
|
|
// update has been downloaded. Since the user
|
|
|
|
// can disable auto updates, we have to make
|
|
|
|
// sure it has been downloaded first.
|
|
|
|
if (updateState === UPDATE_STATE_DOWNLOADED) {
|
|
|
|
autoUpdater.quitAndInstall();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updateState !== UPDATE_STATE_UPDATES_FOUND) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the update hasn't been downloaded,
|
|
|
|
// start downloading it. After it's done, the
|
|
|
|
// event 'update-downloaded' will be triggered,
|
|
|
|
// where we will be able to resume the
|
|
|
|
// update installation.
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADING;
|
|
|
|
autoUpdater.downloadUpdate();
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.on('check-for-updates', (event, autoDownload) => {
|
|
|
|
if (![UPDATE_STATE_INIT, UPDATE_STATE_NO_UPDATES_FOUND].includes(updateState)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateState = UPDATE_STATE_CHECKING;
|
|
|
|
|
|
|
|
// If autoDownload is true, checkForUpdates will begin the
|
|
|
|
// download automatically.
|
|
|
|
if (autoDownload) {
|
|
|
|
updateState = UPDATE_STATE_DOWNLOADING;
|
|
|
|
}
|
|
|
|
|
|
|
|
autoUpdater.autoDownload = autoDownload;
|
|
|
|
autoUpdater.checkForUpdates();
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.on('upgrade', (event, installerPath) => {
|
|
|
|
// what to do if no shutdown in a long time?
|
|
|
|
console.log('Update downloaded to', installerPath);
|
|
|
|
console.log('The app will close and you will be prompted to install the latest version of LBRY.');
|
|
|
|
console.log('After the install is complete, please reopen the app.');
|
|
|
|
|
|
|
|
// Prevent .deb package from opening with archive manager (Ubuntu >= 20)
|
|
|
|
if (process.platform === 'linux' && !process.env.APPIMAGE) {
|
|
|
|
sudo.exec(`dpkg -i ${installerPath}`, { name: app.name }, (err, stdout, stderr) => {
|
|
|
|
if (err || stderr) {
|
|
|
|
rendererWindow.webContents.send('upgrade-installing-error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-launch the application when the installation finishes.
|
|
|
|
app.relaunch();
|
|
|
|
app.quit();
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
app.on('quit', () => {
|
|
|
|
console.log('Launching upgrade installer at', installerPath);
|
|
|
|
// This gets triggered called after *all* other quit-related events, so
|
|
|
|
// we'll only get here if we're fully prepared and quitting for real.
|
|
|
|
shell.openPath(installerPath);
|
|
|
|
});
|
|
|
|
app.quit();
|
|
|
|
});
|