thedesk/app/main.js

199 lines
5.7 KiB
JavaScript
Raw Normal View History

2018-01-28 23:22:43 +11:00
'use strict';
// Electronのモジュール
const electron = require("electron");
const fs = require("fs");
2018-02-19 04:41:25 +11:00
const dialog = require('electron').dialog;
var Jimp = require("jimp");
2018-01-28 23:22:43 +11:00
// アプリケーションをコントロールするモジュール
const app = electron.app;
// ウィンドウを作成するモジュール
const BrowserWindow = electron.BrowserWindow;
const {
download
} = require('electron-dl');
const openAboutWindow = require('about-window').default;
const join = require('path').join;
// メインウィンドウはGCされないようにグローバル宣言
let mainWindow;
var info_path = join(app.getPath("userData"), "window-size.json");
var window_size;
try {
window_size = JSON.parse(fs.readFileSync(info_path, 'utf8'));
} catch (e) {
window_size = {
width: 1000,
height: 750
}; // デフォルトバリュー
}
// 全てのウィンドウが閉じたら終了
app.on('window-all-closed', function() {
if (process.platform != 'darwin') {
app.quit();
}
});
function createWindow() {
// メイン画面の表示。ウィンドウの幅、高さを指定できる
mainWindow = new BrowserWindow(window_size);
electron.session.defaultSession.clearCache(() => {})
2018-02-18 16:43:11 +11:00
if(process.argv){
if(process.argv[1]){
var m = process.argv[1].match(/([a-zA-Z0-9]+)\/\?[a-zA-Z-0-9]+=([a-zA-Z-0-9]+)/);
if(m){
var mode=m[1];
var code=m[2];
mainWindow.loadURL('file://' + __dirname + '/index.html?mode='+mode+'&code='+code);
}else{
//mainWindow.loadURL('file://' + __dirname + '/index.html?mode=A&code=B');
mainWindow.loadURL('file://' + __dirname + '/index.html');
}
}else{
mainWindow.loadURL('file://' + __dirname + '/index.html');
}
}else{
mainWindow.loadURL('file://' + __dirname + '/index.html');
}
2018-01-28 23:22:43 +11:00
// ウィンドウが閉じられたらアプリも終了
mainWindow.on('closed', function() {
mainWindow = null;
});
mainWindow.on('close', function() {
fs.writeFileSync(info_path, JSON.stringify(mainWindow.getBounds()));
});
}
// Electronの初期化完了後に実行
app.on('ready', createWindow);
var ipc = electron.ipcMain;
ipc.on('update', function(e, x, y) {
var window = new BrowserWindow({
width: 600,
2018-02-18 16:43:11 +11:00
height: 400,
2018-01-28 23:22:43 +11:00
"transparent": false, // ウィンドウの背景を透過
"frame": false, // 枠の無いウィンドウ
"resizable": false
});
window.loadURL('file://' + __dirname + '/update.html');
return "true"
})
ipc.on('nano', function(e, x, y) {
var window = new BrowserWindow({
width: 300,
height: 100,
"transparent": true, // ウィンドウの背景を透過
"frame": false, // 枠の無いウィンドウ
"resizable": false
});
window.loadURL('file://' + __dirname + '/nano.html');
window.setAlwaysOnTop(true);
window.setPosition(0, 0);
return "true"
})
ipc.on('download-btn', (e, args) => {
2018-02-17 00:08:43 +11:00
if(args=="true"){
2018-02-18 05:44:20 +11:00
dialog.showSaveDialog(null, {
title: '保存',
properties: ['openFile', 'createDirectory'],
defaultPath: 'TheDesk-win32-x64.zip'
}, (savedFiles) => {
2018-02-24 03:02:44 +11:00
console.log(savedFiles);
2018-02-18 18:29:06 +11:00
var m = savedFiles.match(/(.+)\\(.+)$/);
2018-02-24 03:02:44 +11:00
if(isExistFile(savedFiles)){
2018-02-18 18:29:06 +11:00
fs.statSync(savedFiles);
fs.unlink(savedFiles);
}
2018-02-24 03:02:44 +11:00
console.log(m[1]+":"+savedFiles)
2018-02-18 18:29:06 +11:00
dl(m[1],savedFiles);
2018-02-18 05:44:20 +11:00
});
2018-02-17 00:08:43 +11:00
}else{
dl();
}
});
2018-02-24 03:02:44 +11:00
function isExistFile(file) {
try {
fs.statSync(file);
return true
} catch(err) {
if(err.code === 'ENOENT') return false
}
}
2018-02-18 18:29:06 +11:00
function dl(files,fullname){
2018-02-18 05:44:20 +11:00
console.log(files);
2018-01-28 23:22:43 +11:00
mainWindow.webContents.send('comp', "ダウンロードを開始します。");
const opts = {
2018-02-17 00:08:43 +11:00
directory:files,
2018-01-28 23:22:43 +11:00
openFolderWhenDone: true,
onProgress: function(e) {
mainWindow.webContents.send('prog', e);
},
2018-02-17 00:08:43 +11:00
saveAs: false
2018-01-28 23:22:43 +11:00
};
download(BrowserWindow.getFocusedWindow(),
2018-02-10 02:43:15 +11:00
'https://dl.thedesk.top/TheDesk-win32-x64.zip', opts)
2018-01-28 23:22:43 +11:00
.then(dl => {
mainWindow.webContents.send('comp', "ダウンロードが完了しました。");
app.quit();
})
.catch(console.error);
2018-02-17 00:08:43 +11:00
}
ipc.on('general-dl', (e, args) => {
console.log(args)
mainWindow.webContents.send('general-dl-message', "ダウンロードを開始します。");
const opts = {
directory: app.getPath('home')+"\\Pictures\\TheDesk",
openFolderWhenDone: true,
onProgress: function(e) {
mainWindow.webContents.send('general-dl-prog', e);
},
saveAs: false
};
download(BrowserWindow.getFocusedWindow(),
args, opts)
.then(dl => {
mainWindow.webContents.send('general-dl-message', "ダウンロードが完了しました。");
})
.catch(console.error);
2018-01-28 23:22:43 +11:00
});
ipc.on('quit', (e, args) => {
app.quit();
});
ipc.on('about', (e, args) => {
openAboutWindow({
icon_path: join(__dirname, 'desk.png'),
2018-02-17 00:08:43 +11:00
copyright: 'Copyright (c) TheDesk on Mastodon 2018 & Cutls.com 2015 All Rights Reserved. CDN provided by AWS CloudFront.',
license: 'This work is licensed under TheDesk LICENSE. See also GitHub.',
2018-01-28 23:22:43 +11:00
description: 'ここに表示されているバージョンは内部バージョンで、一般的に使われている愛称とは異なります。',
bug_report_url: 'https://cutls.com/report',
css_path: join(__dirname, './css/about.css'),
adjust_window_size: true
});
2018-02-18 16:43:11 +11:00
});
ipc.on('column-del', (e, args) => {
const options = {
type: 'info',
title: 'カラム削除',
message: "カラムを削除しますか?",
buttons: ['はい', 'いいえ']
}
dialog.showMessageBox(options, function(index) {
mainWindow.webContents.send('column-del-reply', index);
})
});
2018-02-19 04:41:25 +11:00
ipc.on('bmp-image', (e, args) => {
var m = args.match(/(.+)\\(.+)\.(.+)$/);
Jimp.read(args, function (err, lenna) {
if (err) throw err;
lenna.getBase64(Jimp.MIME_PNG, function (err, src) {
mainWindow.webContents.send('bmp-img-comp', src);
});
});
});
2018-02-18 16:43:11 +11:00
app.setAsDefaultProtocolClient('thedesk')