1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-13 18:30:54 +01:00
upscayl/main/index.js

290 lines
7.5 KiB
JavaScript
Raw Normal View History

2022-08-15 06:53:14 +02:00
// Native
2022-08-23 16:17:16 +02:00
const { join, parse } = require("path");
2022-08-15 06:53:14 +02:00
const { format } = require("url");
2022-08-16 04:17:27 +02:00
const { spawn } = require("child_process");
2022-08-15 06:53:14 +02:00
const fs = require("fs");
2022-08-18 11:53:23 +02:00
const sizeOf = require("image-size");
2022-08-21 17:11:11 +02:00
const { autoUpdater } = require("electron-updater");
2022-08-26 03:15:43 +02:00
const { getPlatform } = require("./getPlatform");
2022-08-15 06:53:14 +02:00
2022-08-16 04:17:27 +02:00
const { execPath, modelsPath } = require("./binaries");
2022-08-15 06:53:14 +02:00
// Packages
2022-08-17 04:37:50 +02:00
const {
BrowserWindow,
app,
ipcMain,
dialog,
ipcRenderer,
2022-08-18 11:53:23 +02:00
shell,
2022-08-17 04:37:50 +02:00
} = require("electron");
2022-08-15 06:53:14 +02:00
const isDev = require("electron-is-dev");
const prepareNext = require("electron-next");
2022-08-22 10:31:16 +02:00
const commands = require("./commands");
2022-08-15 06:53:14 +02:00
// Prepare the renderer once the app is ready
2022-08-17 13:36:19 +02:00
let mainWindow;
2022-08-15 06:53:14 +02:00
app.on("ready", async () => {
await prepareNext("./renderer");
2022-09-07 04:31:28 +02:00
console.log("🚀 Icon Path: ", join(__dirname, "icon.png"));
console.log("🚀 Development Mode? :", isDev);
console.log("🚀 RS Executable Path: ", execPath);
console.log("🚀 Models: ", modelsPath);
2022-08-17 13:36:19 +02:00
mainWindow = new BrowserWindow({
2022-08-24 04:31:43 +02:00
icon: join(__dirname, "build", "icon.png"),
2022-08-15 09:06:31 +02:00
width: 1100,
2022-08-23 15:17:34 +02:00
height: 700,
2022-08-18 11:53:23 +02:00
minHeight: 500,
minWidth: 500,
show: false,
2022-08-28 01:49:19 +02:00
backgroundColor: "#171717",
2022-08-15 06:53:14 +02:00
webPreferences: {
2022-08-23 14:19:29 +02:00
devTools: isDev,
2022-08-15 06:53:14 +02:00
autoHideMenuBar: true,
2022-08-16 04:17:27 +02:00
nodeIntegration: true,
2022-08-18 11:53:23 +02:00
webSecurity: false,
2022-08-15 06:53:14 +02:00
preload: join(__dirname, "preload.js"),
},
});
const url = isDev
? "http://localhost:8000"
: format({
pathname: join(__dirname, "../renderer/out/index.html"),
protocol: "file:",
slashes: true,
});
mainWindow.setMenuBarVisibility(false);
mainWindow.loadURL(url);
2022-08-18 11:53:23 +02:00
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url);
return { action: "deny" };
});
2022-08-21 17:11:11 +02:00
2022-08-30 10:45:06 +02:00
mainWindow.once("ready-to-show", () => {
mainWindow.show();
});
2022-08-21 17:11:11 +02:00
if (!isDev) {
autoUpdater.checkForUpdates();
2022-08-23 05:13:08 +02:00
}
2022-08-15 06:53:14 +02:00
});
// Quit the app once all windows are closed
app.on("window-all-closed", app.quit);
2022-08-15 09:21:12 +02:00
// ! DONT FORGET TO RESTART THE APP WHEN YOU CHANGE CODE HERE
2022-08-18 11:53:23 +02:00
ipcMain.handle(commands.SELECT_FILE, async () => {
2022-08-16 04:17:27 +02:00
const { canceled, filePaths } = await dialog.showOpenDialog({
properties: ["openFile", "multiSelections"],
});
2022-08-15 12:12:48 +02:00
if (canceled) {
2022-08-16 04:17:27 +02:00
console.log("operation cancelled");
return "cancelled";
} else {
console.log(filePaths[0]);
2022-08-29 15:41:59 +02:00
// CREATE input AND upscaled FOLDER
return filePaths[0];
}
2022-08-18 11:53:23 +02:00
});
2022-08-29 15:41:59 +02:00
ipcMain.handle(commands.SELECT_FOLDER, async (event, message) => {
const { canceled, filePaths } = await dialog.showOpenDialog({
properties: ["openDirectory"],
});
if (canceled) {
console.log("operation cancelled");
return "cancelled";
2022-08-18 11:53:23 +02:00
} else {
2022-08-29 15:41:59 +02:00
console.log(filePaths[0]);
return filePaths[0];
}
2022-08-18 11:53:23 +02:00
});
2022-08-16 04:17:27 +02:00
2022-09-10 16:52:53 +02:00
ipcMain.on(commands.SHARPEN, async (event, payload) => {
const model = payload.model;
const scale = payload.scaleFactor;
let inputDir = payload.imagePath.match(/(.*)[\/\\]/)[1] || "";
let outputDir = "./sharpened";
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir);
}
// COPY IMAGE TO TMP FOLDER
const platform = getPlatform();
const fullfileName =
platform === "win"
? payload.imagePath.split("\\").slice(-1)[0]
: payload.imagePath.split("/").slice(-1)[0];
const fileName = parse(fullfileName).name;
const fileExt = parse(fullfileName).ext;
const inputFile = inputDir + "/" + fullfileName;
const outFile = outputDir + "/" + fileName + "_sharpen" + fileExt;
fs.copyFile(inputFile, outFile, (err) => {
if (err) throw err;
});
// UPSCALE
if (fs.existsSync(outFile)) {
// If already upscayled, just output that file
return outFile;
} else {
let upscayl = spawn(
2022-09-11 09:30:50 +02:00
execPath + "-realsr",
2022-09-10 16:52:53 +02:00
[
"-i",
inputDir + "/" + fullfileName,
"-o",
outFile,
"-s",
4,
"-x",
"-m",
modelsPath + "/" + model,
],
{
cwd: null,
detached: false,
}
);
let failed = false;
upscayl.stderr.on("data", (stderr) => {
console.log(stderr.toString());
stderr = stderr.toString();
mainWindow.webContents.send(commands.SHARPEN_PROGRESS, stderr.toString());
if (stderr.includes("invalid gpu") || stderr.includes("failed")) {
failed = true;
return null;
}
});
// Send done comamnd when
upscayl.on("close", (code) => {
if (failed !== true) {
console.log("Done upscaling");
return outFile;
}
});
}
});
2022-08-18 11:53:23 +02:00
ipcMain.on(commands.UPSCAYL, async (event, payload) => {
const model = payload.model;
const scale = payload.scaleFactor;
2022-09-10 16:52:53 +02:00
const sharpen = payload.sharpen;
2022-08-23 15:17:34 +02:00
2022-08-18 11:53:23 +02:00
let inputDir = payload.imagePath.match(/(.*)[\/\\]/)[1] || "";
2022-08-29 15:41:59 +02:00
let outputDir = payload.outputPath;
2022-09-10 16:52:53 +02:00
2022-09-07 04:31:28 +02:00
console.log("🚀 => ipcMain => outputDir", outputDir);
2022-08-18 11:53:23 +02:00
// COPY IMAGE TO TMP FOLDER
const platform = getPlatform();
const fullfileName =
platform === "win"
? payload.imagePath.split("\\").slice(-1)[0]
: payload.imagePath.split("/").slice(-1)[0];
const fileName = parse(fullfileName).name;
const fileExt = parse(fullfileName).ext;
2022-08-30 10:45:06 +02:00
const outFile =
outputDir + "/" + fileName + "_upscayled_" + scale + "x_" + model + fileExt;
2022-08-17 13:36:19 +02:00
// UPSCALE
2022-08-29 15:41:59 +02:00
if (fs.existsSync(outFile)) {
2022-09-07 04:31:28 +02:00
// If already upscayled, just output that file
2022-08-30 10:45:06 +02:00
mainWindow.webContents.send(commands.UPSCAYL_DONE, outFile);
} else {
2022-09-01 16:58:11 +02:00
let upscayl = model.includes("realesrgan")
? spawn(
execPath + "-realesrgan",
[
"-i",
inputDir + "/" + fullfileName,
"-o",
outFile,
"-s",
scale === 2 ? 4 : scale,
"-m",
modelsPath,
"-n",
model,
],
{
cwd: null,
detached: false,
}
)
: spawn(
execPath + "-realsr",
[
"-i",
inputDir + "/" + fullfileName,
"-o",
outFile,
"-s",
4,
"-x",
"-m",
modelsPath + "/" + model,
],
{
cwd: null,
detached: false,
}
);
2022-08-30 10:45:06 +02:00
2022-08-29 15:41:59 +02:00
let failed = false;
upscayl.stderr.on("data", (stderr) => {
console.log(stderr.toString());
stderr = stderr.toString();
2022-09-07 04:31:28 +02:00
mainWindow.webContents.send(commands.UPSCAYL_PROGRESS, stderr.toString());
if (stderr.includes("invalid gpu") || stderr.includes("failed")) {
2022-08-29 15:41:59 +02:00
failed = true;
2022-09-07 04:31:28 +02:00
return;
2022-08-29 15:41:59 +02:00
}
});
2022-08-30 10:45:06 +02:00
2022-09-07 04:31:28 +02:00
// Send done comamnd when
2022-08-29 15:41:59 +02:00
upscayl.on("close", (code) => {
if (failed !== true) {
console.log("Done upscaling");
2022-08-30 10:45:06 +02:00
mainWindow.webContents.send(commands.UPSCAYL_DONE, outFile);
2022-08-29 15:41:59 +02:00
}
});
}
2022-08-18 11:53:23 +02:00
});
2022-08-21 17:11:11 +02:00
2022-08-30 10:45:06 +02:00
// ! AUTO UPDATE STUFF
2022-08-21 17:11:11 +02:00
autoUpdater.on("update-available", (_event, releaseNotes, releaseName) => {
const dialogOpts = {
2022-08-23 05:13:08 +02:00
type: "info",
buttons: ["Ok"],
title: "Application Update",
message: process.platform === "win32" ? releaseNotes : releaseName,
detail: "A new version is being downloaded.",
};
dialog.showMessageBox(dialogOpts, (response) => {});
});
2022-08-21 17:11:11 +02:00
autoUpdater.on("update-downloaded", (_event, releaseNotes, releaseName) => {
const dialogOpts = {
2022-08-23 05:13:08 +02:00
type: "info",
buttons: ["Restart", "Later"],
title: "Application Update",
message: process.platform === "win32" ? releaseNotes : releaseName,
detail:
"A new version has been downloaded. Restart the application to apply the updates.",
2022-08-21 17:11:11 +02:00
};
dialog.showMessageBox(dialogOpts).then((returnValue) => {
2022-08-23 05:13:08 +02:00
if (returnValue.response === 0) autoUpdater.quitAndInstall();
});
2022-08-21 17:11:11 +02:00
});