Files
youtube-dl-gui/main.js
2021-03-04 14:32:38 +01:00

290 lines
9.0 KiB
JavaScript

const { app, BrowserWindow, ipcMain, dialog, Menu, globalShortcut, shell} = require('electron');
const { autoUpdater } = require("electron-updater");
const Environment = require('./modules/Environment');
const path = require('path');
const QueryManager = require("./modules/QueryManager");
const ErrorHandler = require("./modules/ErrorHandler");
const BinaryUpdater = require("./modules/BinaryUpdater");
let win
let env
let queryManager
let appStarting = true;
//Create the window for the renderer process
function createWindow(env) {
win = new BrowserWindow({
show: false,
minWidth: 700,
minHeight: 650,
width: 815,
height: 800,
backgroundColor: '#212121',
titleBarStyle: process.platform === "darwin" ? "hiddenInset" : "hidden",
frame: false,
icon: env.paths.icon,
webPreferences: {
nodeIntegration: false,
enableRemoteModule: false,
worldSafeExecuteJavaScript: true,
spellcheck: false,
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true
}
})
win.removeMenu()
if(process.argv[2] === '--dev') {
win.webContents.openDevTools()
}
win.loadFile(path.join(__dirname, "renderer/renderer.html"))
win.on('closed', () => {
win = null
})
win.once('ready-to-show', () => {
win.show()
})
win.webContents.on('did-finish-load', () => startCriticalHandlers(env));
}
app.on('ready', async () => {
env = new Environment(app);
await env.initialize();
createWindow(env);
registerShortcuts();
if(app.isPackaged && process.argv[2] !== '--dev') {
env.analytics.sendDownload();
}
})
//Quit the application when all windows are closed, except for darwin
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
});
//Create a window when there is none, but the app is still active (darwin)
app.on('activate', () => {
if (win === null) {
createWindow(env)
}
});
function startCriticalHandlers(env) {
win.on('maximize', () => {
win.webContents.send("maximized", true)
});
win.on('unmaximize', () => {
win.webContents.send("maximized", false)
});
//Force links with target="_blank" to be opened in an external browser
win.webContents.on('new-window', function(e, url) {
e.preventDefault();
shell.openExternal(url);
});
queryManager = new QueryManager(win, env);
env.errorHandler = new ErrorHandler(win, queryManager, env);
checkAppUpdate();
if(appStarting) {
appStarting = false;
//Catch all console.log calls, print them to stdout and send them to the renderer devtools.
console.log = (arg) => {
process.stdout.write(arg + "\n");
sendLogToRenderer(arg, false);
};
//Catch all console.error calls, print them to stderr and send them to the renderer devtools.
console.error = (arg) => {
process.stderr.write(arg + "\n");
sendLogToRenderer(arg, true);
}
ipcMain.handle('errorReport', async (event, args) => {
console.log(args)
return await env.errorHandler.reportError(args);
});
ipcMain.handle('settingsAction', (event, args) => {
switch (args.action) {
case "get":
return env.settings.serialize();
case "save":
env.settings.update(args.settings);
break;
}
})
if(env.settings.updateBinary) {
let updater = new BinaryUpdater(env.paths, win);
win.webContents.send("binaryLock", {lock: true, placeholder: `Checking for a new version of ytdl...`})
updater.checkUpdate().finally(() => { win.webContents.send("binaryLock", {lock: false}) });
}
ipcMain.handle('videoAction', async (event, args) => {
switch (args.action) {
case "stop":
queryManager.stopSingle(args.identifier);
break;
case "open":
queryManager.openVideo(args);
break;
case "download":
if (args.all) queryManager.downloadAllVideos(args)
else queryManager.downloadVideo(args);
break;
case "entry":
queryManager.manage(args.url);
break;
case "info":
queryManager.showInfo(args.identifier);
break;
case "downloadInfo":
queryManager.saveInfo(args.identifier);
break;
case "getSize":
return queryManager.getVideoSize(args.identifier, args.formatLabel);
case "size":
queryManager.startSizeQuery(args.identifier, args.formatLabel, args.clicked)
break;
case "setSubtitles":
env.setSubtitles(args.value);
break;
case "audioOnly":
queryManager.setAudioOnly(args.identifier, args.value);
break;
case "audioQuality":
queryManager.setAudioQuality(args.identifier, args.value);
break;
case "downloadable":
return await queryManager.isDownloadable(args.identifier);
}
});
}
}
//Register shortcuts
function registerShortcuts() {
globalShortcut.register('CommandOrControl+Shift+D', () => {
win.webContents.openDevTools()
})
globalShortcut.register('CommandOrControl+Shift+F', () => {
win.webContents.send('flushCache')
})
}
function checkAppUpdate() {
if(env.settings.updateApplication && process.argv[2] !== '--dev') {
if (process.platform === "darwin") {
autoUpdater.checkForUpdates().then((result) => {
if(app.getVersion() !== result.updateInfo.version) {
win.webContents.send('toast', {type: "update", msg: `Update ${result.updateInfo.releaseName} is out now! <br> <a target="_blank" href="https://github.com/jely2002/youtube-dl-gui/releases/latest">Download on GitHub</a>`});
}
})
} else if (process.platform === "win32" || process.platform === "linux") {
autoUpdater.checkForUpdatesAndNotify()
}
}
}
function sendLogToRenderer(log, isErr) {
win.webContents.send("log", {log: log, isErr: isErr});
}
//Creates the input menu to show on right click
const InputMenu = Menu.buildFromTemplate(
[{
label: 'Cut',
role: 'cut',
}, {
label: 'Copy',
role: 'copy',
}, {
label: 'Paste',
role: 'paste',
}, {
type: 'separator',
}, {
label: 'Select all',
role: 'selectall',
},
]
);
//Opens the input menu when ordered from renderer process
ipcMain.handle('openInputMenu', () => {
InputMenu.popup(win);
})
//Return the platform to the renderer process
ipcMain.handle("platform", () => {
return process.platform;
})
//Handle titlebar click events from the renderer process
ipcMain.handle('titlebarClick', (event, arg) => {
if(arg === 'close') {
win.close()
} else if(arg === "minimize") {
win.minimize()
} else if(arg === "maximize") {
if(win.isMaximized()) win.unmaximize();
else win.maximize();
}
})
//Show a dialog to select a folder, and return the selected value.
ipcMain.handle('downloadFolder', async (event) => {
await dialog.showOpenDialog(win, {
defaultPath: env.paths.downloadPath,
buttonLabel: "Set download location",
properties: [
'openDirectory',
'createDirectory'
]
}).then(result => {
if(result.filePaths[0] != null) env.paths.downloadPath = result.filePaths[0];
});
});
ipcMain.handle('messageBox', (event, args) => {
dialog.showMessageBoxSync(win, {
title: args.title,
message: args.message,
type: "none",
buttons: [],
}) ;
});
//Show a dialog to select a file, and return the selected value.
ipcMain.handle('cookieFile', async (event,clear) => {
if(clear === true) {
env.settings.cookiePath = null;
env.settings.save();
return;
} else if(clear === "get") {
return env.settings.cookiePath;
}
let result = await dialog.showOpenDialog(win, {
buttonLabel: "Select file",
defaultPath: (env.settings.cookiePath != null) ? env.settings.cookiePath : env.paths.downloadPath,
properties: [
'openFile',
'createDirectory'
],
filters: [
{ name: "txt", extensions: ["txt"] },
{ name: "All Files", extensions: ["*"] },
],
});
if(result.filePaths[0] != null) {
env.settings.cookiePath = result.filePaths[0];
env.settings.save();
}
return result.filePaths[0];
})