lbry-desktop/app/main.js

337 lines
11 KiB
JavaScript
Raw Normal View History

const {app, BrowserWindow, ipcMain} = require('electron');
2017-04-27 08:52:14 +02:00
const url = require('url');
2017-02-23 19:46:25 +01:00
const path = require('path');
const jayson = require('jayson');
2017-04-27 08:52:14 +02:00
const semver = require('semver');
const https = require('https');
2017-02-10 20:11:26 +01:00
// tree-kill has better cross-platform handling of
// killing a process. child-process.kill was unreliable
2017-02-23 19:46:25 +01:00
const kill = require('tree-kill');
const child_process = require('child_process');
2017-03-24 00:07:08 +01:00
const assert = require('assert');
2017-04-27 08:52:14 +02:00
const {version: localVersion} = require(app.getAppPath() + '/package.json');
const VERSION_CHECK_INTERVAL = 30 * 60 * 1000;
const LATEST_RELEASE_API_URL = 'https://api.github.com/repos/lbryio/lbry-app/releases/latest';
2017-01-16 20:06:53 +01:00
2017-02-23 19:46:25 +01:00
let client = jayson.client.http('http://localhost:5279/lbryapi');
2017-01-16 20:06:53 +01:00
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
2017-03-24 00:07:08 +01:00
let win;
2017-01-16 20:06:53 +01:00
// Also keep the daemon subprocess alive
2017-03-24 00:07:08 +01:00
let daemonSubprocess;
2017-01-16 20:06:53 +01:00
2017-03-24 08:04:30 +01:00
// This is set to true right before we try to shut the daemon subprocess --
// if it dies when we didn't ask it to shut down, we want to alert the user.
2017-04-13 23:30:53 +02:00
let daemonStopRequested = false;
2017-03-24 00:07:08 +01:00
// When a quit is attempted, we cancel the quit, do some preparations, then
// this is set to true and app.quit() is called again to quit for real.
let readyToQuit = false;
2017-01-16 20:06:53 +01:00
// If we receive a URI to open from an external app but there's no window to
// send it to, it's cached in this variable.
let openUri = null;
2017-04-27 08:52:14 +02:00
function checkForNewVersion(callback) {
function formatRc(ver) {
// Adds dash if needed to make RC suffix semver friendly
return ver.replace(/([^-])rc/, '$1-rc');
}
let result = '';
const opts = {
headers: {
'User-Agent': `LBRY/${localVersion}`,
}
};
const req = https.get(Object.assign(opts, url.parse(LATEST_RELEASE_API_URL)), (res) => {
res.on('data', (data) => {
result += data;
});
res.on('end', () => {
console.log('Local version:', localVersion);
const tagName = JSON.parse(result).tag_name;
const [_, remoteVersion] = tagName.match(/^v([\d.]+(?:-?rc\d+)?)$/);
if (!remoteVersion) {
console.log('Malformed remote version string:', tagName);
if (win) {
win.webContents.send('version-info-received', null);
}
2017-04-27 08:52:14 +02:00
} else {
console.log('Remote version:', remoteVersion);
const upgradeAvailable = semver.gt(formatRc(remoteVersion), formatRc(localVersion));
console.log(upgradeAvailable ? 'Upgrade available' : 'No upgrade available');
if (win) {
win.webContents.send('version-info-received', {remoteVersion, localVersion, upgradeAvailable});
}
2017-04-27 08:52:14 +02:00
}
})
});
req.on('error', (err) => {
console.log('Failed to get current version from GitHub. Error:', err);
if (win) {
win.webContents.send('version-info-received', null);
}
2017-04-27 08:52:14 +02:00
});
}
ipcMain.on('version-info-requested', checkForNewVersion);
/*
* Replacement for Electron's shell.openItem. The Electron version doesn't
* reliably work from the main process, and we need to be able to run it
* when no windows are open.
*/
function openItem(fullPath) {
const subprocOptions = {
detached: true,
stdio: 'ignore',
};
let child;
if (process.platform == 'darwin') {
child = child_process.spawn('open', [fullPath], subprocOptions);
} else if (process.platform == 'linux') {
child = child_process.spawn('xdg-open', [fullPath], subprocOptions);
} else if (process.platform == 'win32') {
child = child_process.spawn(fullPath, [], subprocOptions);
}
// Causes child process reference to be garbage collected, allowing main process to exit
child.unref();
}
function getPidsForProcessName(name) {
if (process.platform == 'win32') {
const tasklistOut = child_process.execSync(`tasklist /fi "Imagename eq ${name}.exe" /nh`, {encoding: 'utf8'});
if (tasklistOut.startsWith('INFO')) {
return [];
} else {
return tasklistOut.match(/[^\r\n]+/g).map((line) => line.split(/\s+/)[1]); // Second column of every non-empty line
}
} else {
const pgrepOut = child_process.spawnSync('pgrep', ['-x', name], {encoding: 'utf8'}).stdout;
return pgrepOut.match(/\d+/g);
}
}
2017-01-16 20:06:53 +01:00
function createWindow () {
win = new BrowserWindow({backgroundColor: '#155B4A', minWidth: 800, minHeight: 600 }) //$color-primary
2017-01-16 20:06:53 +01:00
win.maximize()
2017-04-17 20:38:53 +02:00
// win.webContents.openDevTools();
2017-01-16 20:06:53 +01:00
win.loadURL(`file://${__dirname}/dist/index.html`)
if (openUri) { // We stored and received a URI that an external app requested before we had a window object
win.webContents.on('did-finish-load', () => {
win.webContents.send('open-uri-requested', openUri);
});
}
2017-01-16 20:06:53 +01:00
win.on('closed', () => {
win = null
})
2017-01-18 17:32:01 +01:00
};
2017-03-24 00:07:08 +01:00
function handleDaemonSubprocessExited() {
console.log('The daemon has exited.');
daemonSubprocess = null;
2017-04-13 23:30:53 +02:00
if (!daemonStopRequested) {
// We didn't request to stop the daemon, so display a
2017-03-24 00:07:08 +01:00
// warning and schedule a quit.
//
// TODO: maybe it would be better to restart the daemon?
if (win) {
2017-03-24 08:04:30 +01:00
console.log('Did not request daemon stop, so quitting in 5 seconds.');
2017-03-24 00:07:08 +01:00
win.loadURL(`file://${__dirname}/dist/warning.html`);
2017-03-24 08:04:30 +01:00
setTimeout(quitNow, 5000);
} else {
console.log('Did not request daemon stop, so quitting.');
quitNow();
2017-03-24 00:07:08 +01:00
}
}
}
2017-02-23 20:01:23 +01:00
function launchDaemon() {
2017-03-24 00:07:08 +01:00
assert(!daemonSubprocess, 'Tried to launch daemon twice');
if (process.env.LBRY_DAEMON) {
executable = process.env.LBRY_DAEMON;
} else {
executable = path.join(__dirname, 'dist', 'lbrynet-daemon');
}
2017-03-24 08:04:30 +01:00
console.log('Launching daemon:', executable)
2017-03-24 00:07:08 +01:00
daemonSubprocess = child_process.spawn(executable)
2017-02-10 20:11:26 +01:00
// Need to handle the data event instead of attaching to
// process.stdout because the latter doesn't work. I believe on
// windows it buffers stdout and we don't get any meaningful output
2017-03-24 00:07:08 +01:00
daemonSubprocess.stdout.on('data', (buf) => {console.log(String(buf).trim());});
daemonSubprocess.stderr.on('data', (buf) => {console.log(String(buf).trim());});
daemonSubprocess.on('exit', handleDaemonSubprocessExited);
2017-01-16 20:06:53 +01:00
}
2017-03-24 00:07:08 +01:00
/*
2017-03-24 08:04:30 +01:00
* Quits without any preparation. When a quit is requested (either through the
* interface or through app.quit()), we abort the quit, try to shut down the daemon,
* and then call this to quit for real.
2017-03-24 00:07:08 +01:00
*/
function quitNow() {
readyToQuit = true;
app.quit();
}
2017-02-23 19:46:25 +01:00
2017-01-16 20:06:53 +01:00
app.on('ready', function(){
2017-02-23 20:01:23 +01:00
launchDaemonIfNotRunning();
createWindow();
2017-02-23 19:46:25 +01:00
});
function launchDaemonIfNotRunning() {
2017-02-23 20:01:23 +01:00
// Check if the daemon is already running. If we get
// an error its because its not running
console.log('Checking for lbrynet daemon');
client.request(
'status', [],
function (err, res) {
if (err) {
console.log('lbrynet daemon needs to be launched')
launchDaemon();
2017-02-23 20:01:23 +01:00
} else {
console.log('lbrynet daemon is already running')
}
}
);
2017-02-23 19:46:25 +01:00
}
2017-01-16 20:06:53 +01:00
/*
* Last resort for killing unresponsive daemon instances.
* Looks for any processes called "lbrynet-daemon" and
* tries to force kill them.
*/
2017-03-24 00:07:08 +01:00
function forceKillAllDaemonsAndQuit() {
2017-03-22 19:55:12 +01:00
console.log('Attempting to force kill any running lbrynet-daemon instances...');
const daemonPids = getPidsForProcessName('lbrynet-daemon');
if (!daemonPids) {
console.log('No lbrynet-daemon found running.');
2017-03-24 00:07:08 +01:00
quitNow();
} else {
console.log(`Found ${daemonPids.length} running daemon instances. Attempting to force kill...`);
for (const pid of daemonPids) {
2017-03-26 13:02:54 +02:00
let daemonKillAttemptsComplete = 0;
kill(pid, 'SIGKILL', (err) => {
2017-03-24 00:07:08 +01:00
daemonKillAttemptsComplete++;
if (err) {
2017-03-26 13:02:54 +02:00
console.log(`Failed to force kill daemon task with pid ${pid}. Error message: ${err.message}`);
} else {
console.log(`Force killed daemon task with pid ${pid}.`);
}
2017-03-26 13:02:54 +02:00
if (daemonKillAttemptsComplete >= daemonPids.length - 1) {
2017-03-24 00:07:08 +01:00
quitNow();
}
});
}
}
}
2017-01-16 20:06:53 +01:00
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
2017-02-23 19:46:25 +01:00
2017-01-18 17:32:01 +01:00
app.on('before-quit', (event) => {
2017-03-24 00:07:08 +01:00
if (!readyToQuit) {
2017-03-24 08:04:30 +01:00
// We need to shutdown the daemon before we're ready to actually quit. This
2017-03-24 00:07:08 +01:00
// event will be triggered re-entrantly once preparation is done.
event.preventDefault();
shutdownDaemonAndQuit();
} else {
console.log('Quitting.')
2017-01-18 17:32:01 +01:00
}
2017-03-24 00:07:08 +01:00
});
2017-01-18 17:32:01 +01:00
2017-01-16 20:06:53 +01:00
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
2017-03-24 00:07:08 +01:00
});
2017-03-24 08:04:30 +01:00
// When a quit is attempted, this is called. It attempts to shutdown the daemon,
// then calls quitNow() to quit for real.
function shutdownDaemonAndQuit(evenIfNotStartedByApp = false) {
2017-04-13 23:30:53 +02:00
function doShutdown() {
console.log('Asking daemon to shut down down');
daemonStopRequested = true;
client.request('daemon_stop', [], (err, res) => {
if (err) {
2017-04-13 23:30:53 +02:00
console.log(`received error when stopping lbrynet-daemon. Error message: ${err.message}\n`);
console.log('You will need to manually kill the daemon.');
2017-03-24 00:07:08 +01:00
} else {
console.log('Successfully stopped daemon via RPC call.')
quitNow();
}
});
2017-04-13 23:30:53 +02:00
}
if (daemonSubprocess) {
doShutdown();
} else if (!evenIfNotStartedByApp) {
2017-03-24 00:07:08 +01:00
console.log('Not killing lbrynet-daemon because app did not start it');
quitNow();
2017-04-13 23:30:53 +02:00
} else {
doShutdown();
}
// Is it safe to start the installer before the daemon finishes running?
// If not, we should wait until the daemon is closed before we start the install.
}
function upgrade(event, installerPath) {
app.on('quit', () => {
2017-03-24 00:07:08 +01:00
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.
openItem(installerPath);
});
if (win) {
win.loadURL(`file://${__dirname}/dist/upgrade.html`);
}
2017-03-24 00:07:08 +01:00
2017-03-26 13:02:54 +02:00
shutdownDaemonAndQuit(true);
2017-03-17 23:05:25 +01:00
// wait for daemon to shut down before upgrading
// what to do if no shutdown in a long time?
2017-03-24 00:07:08 +01:00
console.log('Update downloaded to', installerPath);
2017-03-17 23:05:25 +01:00
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.');
}
ipcMain.on('upgrade', upgrade);
if (process.platform == 'darwin') {
app.on('open-url', (event, uri) => {
if (!win) {
// Window not created yet, so store up requested URI for when it is
openUri = uri;
} else {
win.webContents.send('open-uri-requested', uri);
}
});
} else if (process.argv.length >= 3) {
// No open-url event on Win, but we can still handle URIs provided at launch time
win.webContents.send('open-uri-requested', process.argv[2]);
}