-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
575 lines (556 loc) · 19 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
'use strict';
const {
app,
BrowserWindow,
Menu,
ipcMain,
dialog,
powerSaveBlocker,
nativeTheme,
} = require("electron");
const qs = require ("querystring");
const path = require('path');
const fs = require('fs');
const { once } = require('events');
const prompt = require('electron-prompt');//https://www.npmjs.com/package/electron-prompt
// where you import your packages
const mpvAPI = require('node-mpv');
// where you want to initialise the API
var mpv = new mpvAPI();
//const app = electron.app;
var toml = require('toml');
var parsed=null;
var host=null;
var viewerurl=null;
var viewerurl1=null;
var viewerurl2=null;
var mpvstart=null;
var viewerPort=null;
var explorerPort=null;
var serverroot=null;
parsed = toml.parse(fs.readFileSync('config.toml','utf8')); //https://www.tabnine.com/code/javascript/functions/toml/parse
host=parsed.host;
viewerurl=parsed.viewerurl ;
viewerurl1=parsed.viewerurl1;
viewerurl2=parsed.viewerurl2;
mpvstart=parsed.mpvstart;
viewerPort=parsed.viewerPort;
explorerPort=parsed.explorerPort;
serverroot=parsed.serverroot;
let webContents = {};
let browserWindows = {};
let mainWindow0 = null;
let options = {
width: 1050,
height: 660,
webPreferences: {
webSecurity: false, //webSecurity: true,
nodeIntegration: false, //https://www.debugandrelease.com/the-ultimate-electron-guide/
contextIsolation: false,
nativeWindowOpen: true, //not used?
nodeIntegrationInSubFrames: true, //not used?
allowRunningInsecureContent: true, //not used?
enableRemoteModule: true, //not used?
// Load `electron-notification-shim` in rendering view, by requiring it in your preloaded script.
//the path of preload script has to be "absolute path".
//https://github.com/atom/electron/blob/v0.34.3/docs/api/browser-window.md#new-browserwindowoptions
preload: path.join(__dirname, 'preload.js')
},
};
const isMac = process.platform === 'darwin'
app.on('ready', function() {
mainWindow0 = new BrowserWindow(options);
mainWindow0.loadURL(host+'?frame');
//mainWindow.webContents.openDevTools();
// browserWindows[pdfURLHOME]=mainWindow; //don't hide the main window
//https://github.com/atom/electron/blob/v0.34.3/docs/api/ipc-main-process.md#sending-messages
//https://github.com/atom/electron/issues/3440
//http://qiita.com/indometacin/items/018f78757c54a4c2eb5b
ipcMain.on('retrieve', function(event, arg) {
event.sender.send('asynchronous-reply', 'pong');
});
ipcMain.on('retrieve2', function(event, arg) {
// console.log(arg.pdfViewer._location); console.log(arg.pdfViewer.linkService); console.log(arg.url); // prints "ping" console.log(arg.pdfDocument.pdfInfo.fingerprint); // prints "ping"
event.sender.send('asynchronous-reply', 'pong');
});
//20220224 // mainWindow0.webContents.send("incoming",'page=2');//http://stackoverflow.com/questions/30681639/how-to-access-browserwindow-javascript-global-from-main-process-in-electron
// webContents.executeJavaScript("getData();");
//https://github.com/atom/electron/blob/master/docs/api/ipc-main.md
mainWindow0.on('closed', function() {
for (var mthefile in browserWindows){
browserWindows[mthefile].close();
delete browserWindows[mthefile];
};
// delete webContents[pdfURLHOME];
mainWindow0 = null;
});
});
const template = [
// { role: 'appMenu' }
...(isMac ? [{
label: app.name,
submenu: [
{ role: 'about' },
{ type: 'separator' },
{ role: 'services' },
{ type: 'separator' },
{ role: 'hide' },
{ role: 'hideothers' },
{ role: 'unhide' },
{ type: 'separator' },
{ role: 'quit' }
]
}] : []),
// { role: 'fileMenu' }
{
label: 'File',
submenu: [
isMac ? { role: 'close' } : { role: 'quit' }
]
},
// { role: 'editMenu' }
{
label: 'Edit',
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' },
...(isMac ? [
{ role: 'pasteAndMatchStyle' },
{ role: 'delete' },
{ role: 'selectAll' },
{ type: 'separator' },
{
label: 'Speech',
submenu: [
{ role: 'startSpeaking' },
{ role: 'stopSpeaking' }
]
}
] : [
{ role: 'delete' },
{ type: 'separator' },
{ role: 'selectAll' }
])
]
},
// { role: 'viewMenu' }
{
label: 'View',
submenu: [
{ role: 'reload' },
{ role: 'forceReload' },
{ role: 'toggleDevTools' },
{ type: 'separator' },
{ role: 'resetZoom' },
{ role: 'zoomIn', accelerator: 'CommandOrControl+=' }, //https://github.com/electron/electron/issues/15496
{ role: 'zoomOut', accelerator: 'CommandOrControl-_' },
{ type: 'separator' },
{ role: 'togglefullscreen' }
]
},
// { role: 'windowMenu' }
{
label: 'Window',
submenu: [
{ role: 'minimize' },
{ role: 'zoom' },
...(isMac ? [
{ type: 'separator' },
{ role: 'front' },
{ type: 'separator' },
{ role: 'window' }
] : [
{ role: 'close' }
])
]
},
{
label: 'PDF',
submenu: [
{
label: 'Copy link',
accelerator:'ctrl+F9',
click:function(){
var thefile=BrowserWindow.getFocusedWindow()['thefile'];
// console.log('copy current PDF view as bookmark:'+thefile);
BrowserWindow.getFocusedWindow().send("copyBookmark",thefile,'nullhash');
// Object.keys(webContents).map(function(v) {
// console.log("copyBookmark: v="+v+', thefile: '+thefile);
// webContents[v].send("copyBookmark",v,'nullhash');
// });
}
},
{
label: 'Copy TOC',
accelerator:'shift+F9',
click:function(){
BrowserWindow.getFocusedWindow().send("copybmks");
// Object.keys(webContents).map(function(v) {
// console.log("copyBookmark: v="+v+', thefile: '+thefile);
// webContents[v].send("copyBookmark",v,'nullhash');
// });
}
}
]
},
{
label: 'ePub',
submenu: [
{
label: 'Copy link',
accelerator:'ctrl+shift+F9',
click:function(){
console.log('copy current ePub view as bookmark:'); //+app.window.getSelection());
BrowserWindow.getFocusedWindow().send("copyBookmark2");
// Object.keys(webContents).map(function(v) {
// console.log("copyBookmark: v="+v+', thefile: '+thefile);
// webContents[v].send("copyBookmark",v,'nullhash');
// });
}
},
{
label: 'Copy TOC',
accelerator:'alt+F9',
click:function(){
BrowserWindow.getFocusedWindow().send("copybmks2");
// Object.keys(webContents).map(function(v) {
// console.log("copyBookmark: v="+v+', thefile: '+thefile);
// webContents[v].send("copyBookmark",v,'nullhash');
// });
}
}
]
},
{
label: 'Audio/Video',
submenu: [
{
label: 'open',
accelerator:'ctrl+o',
click:function(){
prompt({
title: 'Input audio/vedio stream url',
label: 'URL:',
value: 'https://www.youtube.com/watch?v=MpsVE60iRLM',
inputAttrs: {
type: 'url'
},
type: 'input'
})
.then(async (r) => {
if(r === null) {
console.log('user cancelled');
} else {
console.log('result=', r);
}
// await mpv.start();
await mpv.load(r);
})
.catch(console.error);
// console.log('copy current PDF view as bookmark:'+thefile);
// Object.keys(webContents).map(function(v) {
// console.log("copyBookmark: v="+v+', thefile: '+thefile);
// webContents[v].send("copyBookmark",v,'nullhash');
// });
}
}
]
},
{
label: 'MindMap',
submenu: [
{
label: 'New map',
// accelerator:'ctrl+F9',
click:function(){
var mainWindow = new BrowserWindow({
width: 1400,
height: 2200,
webPreferences: {
nodeIntegration: false,
webSecurity: true,
preload: path.join(__dirname, 'preload.js')
},
});
mainWindow.loadURL(decodeURI(host+viewerurl1));
}
}
]
},
{
role: 'help',
submenu: [
{
label: 'Learn More',
click: async () => {
const { shell } = require('electron')
await shell.openExternal('https://electronjs.org')
}
}
]
}
]
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
//____________________________________________________________________________________________
//____________________________________________________________________________________________
var http = require('http');
var url = require("url");
function copybmk(res,ourl,req) {
// console.log("This is the copybmk page.");
Object.keys(webContents).map(function(v) {
// console.log(v);
webContents[v].send("incoming2",v);
});
//res.writeHead(200, {"Content-Type": "text/plain","Access-Control-Allow-Origin": req.headers.origin});
res.setHeader("Access-Control-Allow-Origin", req.headers.origin);
res.end("This is copybmk page.");
}
function copybmks(res,ourl,req) {
// console.log("This is the copybmks page. ourl="+ourl);
Object.keys(webContents).map(function(v) {
// console.log("copybmks: v="+v);
webContents[v].send("copybmks",v,'nullhash');
});
res.writeHead(200, {"Content-Type": "text/plain","Access-Control-Allow-Origin": req.headers.origin});
// res.writeHead(200, {"Content-Type": "text/plain"});
res.end("This is copybmks page.");
}
function drawmap(res,ourl,req, body) {
var mainWindow = new BrowserWindow({
width: 1400,
height: 2200,
webPreferences: {
nodeIntegration: false,
webSecurity: false, //true,
preload: path.join(__dirname, 'preload.js')
},
});
mainWindow.loadURL(decodeURI(host+viewerurl1));
mainWindow.maximize();
mainWindow.on('closed', function() {
delete mainWindow.webContents;
// delete mainWindow;
});
mainWindow.webContents.on('did-finish-load', function() {
mainWindow.webContents.send("drawmap",body);
});//.finally(function() {webContents[thefile].send("incoming2",'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);});
// res.writeHead(200, {"Content-Type": "text/plain","Access-Control-Allow-Origin": req.headers.origin});
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("This is drawmap page.");
}
function gotobmk2(res,ourl,req) {
console.log("This is the gotobmk2 page."+req.url);
var thefile=ourl.query['bookPath'];
console.log('thefile: '+thefile);
console.log('ourl.query: '+ JSON.stringify(ourl.query));
var mainWindow=null;
if(!(thefile in webContents)){
mainWindow = new BrowserWindow({
width: 1400,
height: 2200,
webPreferences: {
contextIsolation: false,
nodeIntegration: false,
webSecurity: true,
preload: path.join(__dirname, 'preload.js')
},
});
mainWindow['thefile']=thefile;
console.log(host+viewerurl2+'=='+ourl.search.replace('&hash=','#'));//?' + param);
if(ourl.search.startsWith('?bookPath=/'))
mainWindow.loadURL(decodeURI(host+viewerurl2+ourl.search.replace('&hash=','#')));
webContents[thefile]=mainWindow.webContents;
browserWindows[thefile]=mainWindow;
mainWindow.on('closed', function() {
delete webContents[thefile];
delete browserWindows[thefile];
});
mainWindow.webContents.on('did-finish-load', function() {
mainWindow.webContents.send("incoming3",thefile,'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);//
});
}
else
webContents[thefile].send("incoming3",ourl.query['hash']);
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("This is gotobmk page.");
}
function gotobmk(res,ourl,req) {
// console.log("This is the gotobmk page.");
var thefile=ourl.query['file'];
// console.log('thefile: '+thefile);
if(!(thefile in webContents)){
var mainWindow = new BrowserWindow({
width: 1400,
height: 2200,
webPreferences: {
contextIsolation: false,
nodeIntegration: false,
webSecurity: true,
preload: path.join(__dirname, 'preload.js')
},
});
mainWindow['thefile']=thefile;
console.log(host+viewerurl+'=='+ourl.search+'=='+ourl.hash);//?' + param);
if(ourl.search.startsWith('?bookPath=/'))
mainWindow.loadURL(decodeURI(host+viewerurl2+ourl.search));
else if(ourl.search.startsWith('?file=/'))
mainWindow.loadURL(decodeURI(host+viewerurl+ourl.search));
else
mainWindow.loadURL(decodeURI(host+viewerurl+'?file=/'+ourl.search.substring(6)));
webContents[thefile]=mainWindow.webContents;
browserWindows[thefile]=mainWindow;
mainWindow.on('closed', function() {
delete webContents[thefile];
delete browserWindows[thefile];
});
mainWindow.webContents.on('did-finish-load', function() {
if(typeof ourl.query['page'] !== 'undefined'){
// console.log("typeof ourl.query['page'] !== 'undefined'");
mainWindow.webContents.send("incoming",thefile,'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);//
}else if(ourl.query['nameddest']!== 'undefined'){
// console.log("ourl.query['nameddest'] : "+ourl.query['nameddest']);
mainWindow.webContents.send("incoming",thefile,ourl.query['nameddest']);//
}
// mainWindow.webContents.send("incoming2",'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);
// mainWindow.webContents.send('pagechange');
});//.finally(function() {webContents[thefile].send("incoming2",'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);});
}else{
if(typeof ourl.query['page'] !== 'undefined'){
// console.log("typeof ourl.query['page'] !== 'undefined'");
webContents[thefile].send("incoming2",'page='+ourl.query['page']+'&zoom='+ourl.query['zoom']);
}else if(ourl.query['explicitDest']!== 'undefined'){
webContents[thefile].send("incoming2",ourl.query['explicitDest']);
}else if(ourl.query['bookPath']!== 'undefined'){
}else if(ourl.query['nameddest']!== 'undefined'){
webContents[thefile].send("incoming2",ourl.query['nameddest']);
}
}
// Object.keys(ourl.query).map(function(v) { console.log(v+':'+ourl.query[v]); });
// Object.keys(webContents).map(function(v) { console.log(v); });
// webContents.send("incoming",res);
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("This is gotobmk page.");
}
function gotompv(res,ourl,req) {
var thefile=ourl.query['file'];
var thestart=ourl.query['start'];
console.log('thefile: '+thefile);
console.log('thestart: '+thestart);
console.log('isRunning : '+mpv.isRunning());
// await mpv.start();
// await mpv.load('ytdl://www.youtube.com/watch?v=MpsVE60iRLM');
if(mpv.isRunning()){
mpv.getProperty('filename')
.then((property) => {
console.log('filename ' + property);
}).catch((error)=>{
console.log(error);
console.log("Maybe the mpv player could not be started; Maybe the video file does not exist or couldn't be loaded");
mpv.load('https://www.youtube.com/watch?v='+thefile);
})
}else{
mpv = new mpvAPI();
mpv.start([mpvstart])
mpv.load('https://www.youtube.com/watch?v='+thefile);
}
mpv.goToPosition(parseFloat(thestart));
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("This is gotompv page.");
}
function route(pathname, res, ourl, req) {
var handle = {};
//copyXXX 的動作理論上由 ui 直接操作比較直觀,未來應該不會在此實作
handle["/copybmk"] = copybmk;
handle["/copybmks"] = copybmks;
// gotoXXX 的動作在此實作相當合理,未來會支援更多種類
handle["/gotobmk"] = gotobmk;
handle["/gotobmk2"] = gotobmk2;
handle["/gotompv"] = gotompv;
if (typeof handle[pathname] === 'function') {
return handle[pathname](res,ourl, req);
} else {
// console.log("404 Not Found " + pathname);
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("404 Not Found " + pathname);
}
}
function route2(pathname, res, ourl, req, body) {
var handle = {};
handle["/drawmap"] = drawmap;
if (typeof handle[pathname] === 'function') {
return handle[pathname](res,ourl, req, body);
} else {
// console.log("404 Not Found " + pathname);
res.writeHead(200, {"Content-Type": "text/plain"});
res.end("404 Not Found " + pathname);
}
}
http.createServer(function (request, response) {
if (request.method == 'POST') { //https://stackoverflow.com/questions/12006417/node-js-server-that-accepts-post-requests
var body = ''
request.on('data', function(data) {
body += data
// console.log('Partial body: ' + body)
})
request.on('end', function() {
console.log('Body: ' + JSON.stringify(JSON.parse(body)))
var ourl = url.parse(request.url,true);
route2(ourl.pathname,response,ourl,request,body)
// response.writeHead(200, {'Content-Type': 'text/html'}) //, "Access-Control-Allow-Origin": request.headers.origin})
// response.end('post received')
})
} else {
console.log('request.url: ' + request.url);
var ourl = url.parse(request.url,true);
route(ourl.pathname,response,ourl,request);
}
}).listen(viewerPort, '127.0.0.1');
// console.log("### Starting local server");
var WebServer = require("./webserver.js").WebServer;
var server = new WebServer();
server.port = explorerPort;
server.viewerPort=viewerPort;
server.root = serverroot;
server.viewerurl=host+viewerurl;
server.viewerurl2=host+viewerurl2;
server.start();
mpv.start([mpvstart])
// .then(() => {
// return mpv.load('https://www.youtube.com/watch?v=MpsVE60iRLM');
// })
// .then(() => {
// return mpv.getDuration();
// })
// .then((duration) => {
// console.log(duration);
// // return mpv.getProperty('someProperty');
// })
// // .then((property) => {
// // console.log(property);
// // })
// // catches all possible errors from above
.catch((error) => {
// Maybe the mpv player could not be started
// Maybe the video file does not exist or couldn't be loaded
// Maybe someProperty is not a valid property
console.log(error);
})
// var someAsyncFunction = asnyc () => {
// try{
// await mpv.start();
// await mpv.load('ytdl://www.youtube.com/watch?v=MpsVE60iRLM');
// console.log(await mpv.getDuration());
// console.log(await mpv.getProperty('someProperty'));
// }
// catch (error) {
// // Maybe the mpv player could not be started
// // Maybe the video file does not exist or couldn't be loaded
// // Maybe someProperty is not a valid property
// console.log(error);
// }
// }