thedesk/app/main/dl.js

129 lines
3.1 KiB
JavaScript
Raw Normal View History

2019-06-15 19:52:28 +10:00
function dl(mainWindow, lang_path, base, dirname) {
2019-05-19 17:39:30 +10:00
const electron = require("electron");
const shell = electron.shell;
2019-04-03 14:59:29 +11:00
const fs = require("fs");
2019-05-19 17:39:30 +10:00
const { download } = require('electron-dl');
const BrowserWindow = electron.BrowserWindow;
const dialog = electron.dialog;
2019-04-03 14:59:29 +11:00
var updatewin = null;
2019-05-19 17:39:30 +10:00
var ipc = electron.ipcMain;
const app = electron.app;
const join = require('path').join;
ipc.on('update', function (e, x, y) {
2019-04-03 14:59:29 +11:00
2019-05-19 17:39:30 +10:00
var platform = process.platform;
var bit = process.arch;
if (platform != "others") {
updatewin = new BrowserWindow({
2019-05-19 20:24:27 +10:00
webPreferences: {
2019-06-15 19:52:28 +10:00
webviewTag: false,
nodeIntegration: false,
contextIsolation: true,
2019-06-16 00:07:18 +10:00
preload: join(dirname,"js", "platform", "preload.js")
2019-05-19 20:24:27 +10:00
},
2019-05-19 17:39:30 +10:00
width: 600,
height: 400,
"transparent": false, // ウィンドウの背景を透過
2019-06-16 02:08:10 +10:00
"frame": false, // 枠の無いウィンドウ
"resizable": false
2019-05-19 17:39:30 +10:00
});
2019-06-22 00:24:28 +10:00
//updatewin.openDevTools()
2019-05-19 17:39:30 +10:00
var lang = fs.readFileSync(lang_path, 'utf8');
updatewin.loadURL(base + lang + '/update.html');
return "true"
} else {
return false;
}
})
//アプデDL
2019-04-03 14:59:29 +11:00
ipc.on('download-btn', (e, args) => {
2019-06-15 19:52:28 +10:00
function dl(url, file, dir, e) {
2019-05-19 17:39:30 +10:00
e.sender.webContents.send('mess', "ダウンロードを開始します。");
const opts = {
directory: dir,
openFolderWhenDone: true,
2019-06-16 00:07:18 +10:00
onProgress: function (event) {
2019-06-22 00:24:28 +10:00
e.sender.webContents.send('prog', event);
},
saveAs: false
};
download(updatewin,
url, opts)
.then(dl => {
e.sender.webContents.send('mess', "ダウンロードが完了しました。");
app.quit();
})
.catch(console.error);
}
2019-04-03 14:59:29 +11:00
var platform = process.platform;
var bit = process.arch;
dialog.showSaveDialog(null, {
title: 'Save',
defaultPath: app.getPath('home') + "/" + args[1]
}, (savedFiles) => {
console.log(savedFiles);
if (!savedFiles) {
return false;
}
if (platform == "win32") {
var m = savedFiles.match(/(.+)\\(.+)$/);
} else {
var m = savedFiles.match(/(.+)\/(.+)$/);
}
//console.log(m);
if (isExistFile(savedFiles)) {
fs.unlinkSync(savedFiles);
}
dl(args[0], args[1], m[1], e);
2019-04-03 14:59:29 +11:00
});
});
function isExistFile(file) {
try {
fs.statSync(file);
return true
} catch (err) {
if (err.code === 'ENOENT') return false
}
}
2019-06-16 00:07:18 +10:00
ipc.on('general-dl', (event, args) => {
2019-05-19 17:39:30 +10:00
2019-04-03 14:59:29 +11:00
var name = "";
var platform = process.platform;
var bit = process.arch;
if (args[1] == "") {
if (platform == "win32") {
var dir = app.getPath('home') + "\\Pictures\\TheDesk";
} else if (platform == "linux" || platform == "darwin") {
var dir = app.getPath('home') + "/Pictures/TheDesk";
}
} else {
var dir = args[1];
}
const opts = {
directory: dir,
filename: name,
openFolderWhenDone: false,
2019-05-19 17:39:30 +10:00
onProgress: function (e) {
2019-06-16 00:07:18 +10:00
event.sender.webContents.send('general-dl-prog', e);
2019-04-03 14:59:29 +11:00
},
saveAs: false
};
download(BrowserWindow.getFocusedWindow(),
2019-05-19 17:39:30 +10:00
args[0], opts)
2019-04-03 14:59:29 +11:00
.then(dl => {
2019-06-16 00:07:18 +10:00
event.sender.webContents.send('general-dl-message', dir);
2019-04-03 14:59:29 +11:00
})
.catch(console.error);
2019-05-19 17:39:30 +10:00
});
ipc.on('open-finder', (e, folder) => {
2019-04-03 14:59:29 +11:00
shell.showItemInFolder(folder)
2019-05-19 17:39:30 +10:00
});
2019-04-03 14:59:29 +11:00
}
exports.dl = dl;