lbry-desktop/src/main/index.js

531 lines
15 KiB
JavaScript
Raw Normal View History

/* eslint-disable no-console */
// Module imports
import Path from 'path';
import Url from 'url';
import Jayson from 'jayson';
import Semver from 'semver';
import Https from 'https';
import Keytar from 'keytar';
import ChildProcess from 'child_process';
import Assert from 'assert';
import { app, BrowserWindow, globalShortcut, ipcMain, Menu, Tray } from 'electron';
import mainMenu from './menu/mainMenu';
2018-01-05 23:25:33 +01:00
import contextMenu from './menu/contextMenu';
2017-12-13 22:36:30 +01:00
2017-12-04 21:46:51 +01:00
const localVersion = app.getVersion();
2017-04-07 07:15:22 +02:00
// Debug configs
const isDevelopment = process.env.NODE_ENV === 'development';
2017-04-07 07:15:22 +02:00
// Misc constants
const LATEST_RELEASE_API_URL = 'https://api.github.com/repos/lbryio/lbry-app/releases/latest';
const DAEMON_PATH = process.env.LBRY_DAEMON || Path.join(__static, 'daemon/lbrynet-daemon');
2017-12-06 17:32:21 +01:00
const rendererUrl = isDevelopment
? `http://localhost:${process.env.ELECTRON_WEBPACK_WDS_PORT}`
2017-12-06 17:32:21 +01:00
: `file://${__dirname}/index.html`;
2017-01-16 20:06:53 +01:00
const client = Jayson.client.http({
host: 'localhost',
port: 5279,
path: '/',
2017-12-13 22:36:30 +01:00
timeout: 1000,
});
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.
let rendererWindow;
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
2017-08-17 22:19:29 +02:00
// sendCredits it to, it's cached in this variable.
let openUri = null;
// Set this to true to minimize on clicking close
// false for normal action
let minimize = true;
// Keep the tray also, it is getting GC'd if put in createTray()
let tray = null;
function processRequestedUri(uri) {
// Windows normalizes URIs when they're passed in from other apps. On Windows,
// this function 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.
// On Linux and Mac, we just return the URI as given.
if (process.platform === 'win32') {
return uri.replace(/\/$/, '').replace('/#', '#');
}
2017-12-13 22:36:30 +01:00
return uri;
}
/*
* 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) {
2017-12-13 22:36:30 +01:00
const subprocOptions = {
detached: true,
stdio: 'ignore',
2017-12-13 22:36:30 +01:00
};
2017-12-13 22:36:30 +01:00
let child;
if (process.platform === 'darwin') {
child = ChildProcess.spawn('open', [fullPath], subprocOptions);
} else if (process.platform === 'linux') {
child = ChildProcess.spawn('xdg-open', [fullPath], subprocOptions);
} else if (process.platform === 'win32') {
child = ChildProcess.spawn(fullPath, Object.assign({}, subprocOptions, { shell: true }));
2017-12-13 22:36:30 +01:00
}
2017-12-13 22:36:30 +01:00
// Causes child process reference to be garbage collected, allowing main process to exit
child.unref();
}
/*
* Quits by first killing the daemon, the calling quitting for real.
*/
export function safeQuit() {
minimize = false;
app.quit();
}
function getMenuTemplate() {
function getToggleItem() {
if (rendererWindow.isVisible() && rendererWindow.isFocused()) {
return {
label: 'Hide LBRY App',
click: () => rendererWindow.hide(),
};
}
return {
label: 'Show LBRY App',
click: () => rendererWindow.show(),
};
}
return [
getToggleItem(),
{
label: 'Quit',
click: () => safeQuit(),
},
];
}
// This needs to be done as for linux the context menu doesn't update automatically(docs)
function updateTray() {
const trayContextMenu = Menu.buildFromTemplate(getMenuTemplate());
if (tray) {
tray.setContextMenu(trayContextMenu);
} else {
console.log('How did update tray get called without a tray?');
}
}
2017-12-13 22:36:30 +01:00
function createWindow() {
2017-12-06 17:32:21 +01:00
// Disable renderer process's webSecurity on development to enable CORS.
let windowConfiguration = {
backgroundColor: '#155B4A',
minWidth: 800,
minHeight: 600,
autoHideMenuBar: true,
};
windowConfiguration = isDevelopment
? {
...windowConfiguration,
webPreferences: {
webSecurity: false,
},
}
: windowConfiguration;
let window = new BrowserWindow(windowConfiguration);
window.webContents.session.setUserAgent(`LBRY/${localVersion}`);
2017-12-07 21:04:08 +01:00
window.maximize();
2017-12-06 17:32:21 +01:00
if (isDevelopment) {
window.webContents.openDevTools();
2017-05-21 20:07:02 +02:00
}
window.loadURL(rendererUrl);
2017-12-13 22:36:30 +01:00
if (openUri) {
// We stored and received a URI that an external app requested before we had a window object
window.webContents.on('did-finish-load', () => {
2017-12-26 14:25:26 +01:00
window.webContents.send('open-uri-requested', openUri, true);
});
}
window.removeAllListeners();
window.on('close', event => {
if (minimize) {
event.preventDefault();
window.hide();
}
2017-12-13 22:36:30 +01:00
});
window.on('closed', () => {
window = null;
2017-12-13 22:36:30 +01:00
});
window.on('hide', () => {
// Checks what to show in the tray icon menu
if (minimize) updateTray();
});
window.on('show', () => {
// Checks what to show in the tray icon menu
if (minimize) updateTray();
});
window.on('blur', () => {
// Checks what to show in the tray icon menu
if (minimize) updateTray();
// Unregisters Alt+F4 shortcut
globalShortcut.unregister('Alt+F4');
});
window.on('focus', () => {
// Checks what to show in the tray icon menu
if (minimize) updateTray();
// Registers shortcut for closing(quitting) the app
globalShortcut.register('Alt+F4', () => safeQuit());
window.webContents.send('window-is-focused', null);
});
mainMenu();
return window;
2017-12-13 22:36:30 +01:00
}
2017-12-13 22:36:30 +01:00
function createTray() {
// Minimize to tray logic follows:
// Set the tray icon
2017-11-21 07:12:09 +01:00
let iconPath;
if (process.platform === 'darwin') {
2017-11-21 07:12:09 +01:00
// Using @2x for mac retina screens so the icon isn't blurry
// file name needs to include "Template" at the end for dark menu bar
iconPath = Path.join(__static, '/img/fav/macTemplate@2x.png');
2017-11-21 07:12:09 +01:00
} else {
iconPath = Path.join(__static, '/img/fav/32x32.png');
2017-11-21 07:12:09 +01:00
}
tray = new Tray(iconPath);
tray.setToolTip('LBRY App');
tray.setTitle('LBRY');
tray.on('double-click', () => {
rendererWindow.show();
2017-12-13 22:36:30 +01:00
});
}
function handleOpenUriRequested(uri) {
if (!rendererWindow) {
// Window not created yet, so store up requested URI for when it is
openUri = processRequestedUri(uri);
} else {
if (rendererWindow.isMinimized()) {
rendererWindow.restore();
} else if (!rendererWindow.isVisible()) {
rendererWindow.show();
}
rendererWindow.focus();
rendererWindow.webContents.send('open-uri-requested', processRequestedUri(uri));
}
}
/*
* 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.
*/
function quitNow() {
readyToQuit = true;
safeQuit();
}
2017-03-24 00:07:08 +01:00
function handleDaemonSubprocessExited() {
console.log('The daemon has exited.');
2017-03-24 00:07:08 +01:00
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 (rendererWindow) {
console.log('Did not request daemon stop, so quitting in 5 seconds.');
rendererWindow.loadURL(`file://${__static}/warning.html`);
2017-03-24 08:04:30 +01:00
setTimeout(quitNow, 5000);
} else {
console.log('Did not request daemon stop, so quitting.');
2017-03-24 08:04:30 +01:00
quitNow();
2017-03-24 00:07:08 +01:00
}
}
}
function launchDaemon() {
Assert(!daemonSubprocess, 'Tried to launch daemon twice');
2017-03-24 00:07:08 +01:00
console.log('Launching daemon:', DAEMON_PATH);
daemonSubprocess = ChildProcess.spawn(DAEMON_PATH);
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
daemonSubprocess.stdout.on('data', buf => {
2017-12-13 22:36:30 +01:00
console.log(String(buf).trim());
});
daemonSubprocess.stderr.on('data', buf => {
2017-12-13 22:36:30 +01:00
console.log(String(buf).trim());
});
daemonSubprocess.on('exit', handleDaemonSubprocessExited);
2017-03-24 00:07:08 +01:00
}
2017-12-13 22:36:30 +01:00
const isSecondaryInstance = app.makeSingleInstance(argv => {
if (argv.length >= 2) {
handleOpenUriRequested(argv[1]); // This will handle restoring and focusing the window
} else if (rendererWindow) {
if (rendererWindow.isMinimized()) {
rendererWindow.restore();
} else if (!rendererWindow.isVisible()) {
rendererWindow.show();
}
rendererWindow.focus();
}
});
2017-12-13 22:36:30 +01:00
if (isSecondaryInstance) {
// We're not in the original process, so quit
quitNow();
}
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', [], err => {
2017-12-13 22:36:30 +01:00
if (err) {
console.log('lbrynet daemon needs to be launched');
2017-12-13 22:36:30 +01:00
launchDaemon();
} else {
console.log('lbrynet daemon is already running');
2017-02-23 20:01:23 +01:00
}
2017-12-13 22:36:30 +01:00
});
2017-02-23 19:46:25 +01:00
}
2017-01-16 20:06:53 +01:00
// Taken from webtorrent-desktop
function checkLinuxTraySupport(cb) {
// Check that we're on Ubuntu (or another debian system) and that we have
// libappindicator1.
ChildProcess.exec('dpkg --get-selections libappindicator1', (err, stdout) => {
if (err) return cb(err);
// Unfortunately there's no cleaner way, as far as I can tell, to check
// whether a debian package is installed:
if (stdout.endsWith('\tinstall\n')) {
return cb(null);
}
return cb(new Error('debian package not installed'));
});
}
// 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) {
function doShutdown() {
console.log('Shutting down daemon');
daemonStopRequested = true;
client.request('daemon_stop', [], err => {
if (err) {
console.log(`received error when stopping lbrynet-daemon. Error message: ${err.message}\n`);
console.log('You will need to manually kill the daemon.');
} else {
console.log('Successfully stopped daemon via RPC call.');
quitNow();
}
});
}
if (daemonSubprocess) {
doShutdown();
} else if (!evenIfNotStartedByApp) {
console.log('Not killing lbrynet-daemon because app did not start it');
2017-03-24 00:07:08 +01:00
quitNow();
} 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.
}
if (isDevelopment) {
import('devtron')
.then(({ install }) => {
install();
console.log('Added Extension: Devtron');
})
.catch(error => {
console.error(error);
});
import('electron-devtools-installer')
.then(({ default: installExtension, REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS }) => {
app.on('ready', () => {
[REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS].forEach(extension => {
installExtension(extension)
.then(name => console.log(`Added Extension: ${name}`))
.catch(err => console.log('An error occurred: ', err));
});
});
})
.catch(error => {
console.error(error);
});
}
2017-12-04 21:46:51 +01:00
app.setAsDefaultProtocolClient('lbry');
app.on('ready', () => {
2017-12-04 21:46:51 +01:00
launchDaemonIfNotRunning();
if (process.platform === 'linux') {
2017-12-13 22:36:30 +01:00
checkLinuxTraySupport(err => {
2017-12-04 21:46:51 +01:00
if (!err) createTray();
else minimize = false;
2017-12-13 22:36:30 +01:00
});
2017-12-04 21:46:51 +01:00
} else {
createTray();
}
rendererWindow = createWindow();
2017-12-04 21:46:51 +01:00
});
2017-01-16 20:06:53 +01:00
// Quit when all windows are closed.
app.on('window-all-closed', () => {
2017-01-16 20:06:53 +01:00
// 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') {
2017-12-13 22:36:30 +01:00
app.quit();
2017-01-16 20:06:53 +01:00
}
2017-12-13 22:36:30 +01:00
});
2017-02-23 19:46:25 +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
app.on('activate', () => {
2017-01-16 20:06:53 +01:00
// 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 (rendererWindow === null) {
2017-12-13 22:36:30 +01:00
createWindow();
2017-01-16 20:06:53 +01:00
}
2017-03-24 00:07:08 +01:00
});
if (process.platform === 'darwin') {
app.on('open-url', (event, uri) => {
2017-12-04 21:46:51 +01:00
handleOpenUriRequested(uri);
});
} else if (process.argv.length >= 2) {
handleOpenUriRequested(process.argv[1]);
}
ipcMain.on('upgrade', (event, installerPath) => {
app.on('quit', () => {
console.log('Launching upgrade installer at', installerPath);
2017-03-24 00:07:08 +01:00
// 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 (rendererWindow) {
rendererWindow.loadURL(`file://${__static}/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?
console.log('Update downloaded to', installerPath);
2017-12-13 22:36:30 +01:00
console.log(
'The app will close, and you will be prompted to install the latest version of LBRY.'
2017-12-13 22:36:30 +01:00
);
console.log('After the install is complete, please reopen the app.');
2017-12-04 21:46:51 +01:00
});
ipcMain.on('version-info-requested', () => {
2017-12-04 21:46:51 +01:00
function formatRc(ver) {
// Adds dash if needed to make RC suffix semver friendly
return ver.replace(/([^-])rc/, '$1-rc');
2017-12-04 21:46:51 +01:00
}
let result = '';
2017-12-04 21:46:51 +01:00
const opts = {
headers: {
'User-Agent': `LBRY/${localVersion}`,
2017-12-13 22:36:30 +01:00
},
2017-12-04 21:46:51 +01:00
};
const req = Https.get(Object.assign(opts, Url.parse(LATEST_RELEASE_API_URL)), res => {
res.on('data', data => {
result += data;
});
res.on('end', () => {
const tagName = JSON.parse(result).tag_name;
const [, remoteVersion] = tagName.match(/^v([\d.]+(?:-?rc\d+)?)$/);
if (!remoteVersion) {
if (rendererWindow) {
rendererWindow.webContents.send('version-info-received', null);
2017-12-04 21:46:51 +01:00
}
} else {
const upgradeAvailable = Semver.gt(formatRc(remoteVersion), formatRc(localVersion));
if (rendererWindow) {
rendererWindow.webContents.send('version-info-received', {
remoteVersion,
localVersion,
upgradeAvailable,
});
}
}
});
});
req.on('error', err => {
console.log('Failed to get current version from GitHub. Error:', err);
if (rendererWindow) {
rendererWindow.webContents.send('version-info-received', null);
2017-12-04 21:46:51 +01:00
}
});
2017-12-04 21:46:51 +01:00
});
ipcMain.on('get-auth-token', event => {
Keytar.getPassword('LBRY', 'auth_token').then(token => {
event.sender.send('auth-token-response', token ? token.toString().trim() : null);
});
});
ipcMain.on('set-auth-token', (event, token) => {
Keytar.setPassword('LBRY', 'auth_token', token ? token.toString().trim() : null);
});
2018-01-05 23:25:33 +01:00
export { contextMenu };