forked from poooi/poi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
278 lines (254 loc) · 8.49 KB
/
app.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
const { app, BrowserWindow, ipcMain, nativeImage, shell } = require('electron')
const electronRemote = require('@electron/remote/main')
const path = require('path-extra')
// Environment
global.POI_VERSION = app.getVersion()
global.ROOT = __dirname
global.EXECROOT = path.join(process.execPath, '..')
global.APPDATA_PATH = path.join(app.getPath('appData'), 'poi')
global.EXROOT = global.APPDATA_PATH
global.DEFAULT_CACHE_PATH = path.join(global.EXROOT, 'MyCache')
global.DEFAULT_SCREENSHOT_PATH =
process.platform === 'darwin'
? path.join(app.getPath('home'), 'Pictures', 'Poi')
: path.join(global.APPDATA_PATH, 'screenshots')
global.MODULE_PATH = path.join(global.ROOT, 'node_modules')
const { ROOT } = global
const poiIconPath = path.join(
ROOT,
'assets',
'icons',
process.platform === 'linux' ? 'poi_32x32.png' : 'poi.ico',
)
electronRemote.initialize()
require('./lib/module-path').setAllowedPath([global.ROOT, global.APPDATA_PATH])
const config = require('./lib/config')
const proxy = require('./lib/proxy')
const shortcut = require('./lib/shortcut')
const { warn, error } = require('./lib/utils')
const dbg = require('./lib/debug')
require('./lib/updater')
proxy.setMaxListeners(30)
require('./lib/tray')
// Disable HA
if (config.get('poi.misc.disablehwaccel', false)) {
app.commandLine.appendSwitch('disable-software-rasterizer')
app.disableHardwareAcceleration()
}
// check safe mode config
if (config.get('poi.misc.safemode', false)) {
warn('Entering SAFE MODE according to config.')
global.isSafeMode = true
config.set('poi.misc.safemode')
}
// Add shortcut to start menu when os is windows
app.setAppUserModelId('org.poooi.poi')
if (process.platform === 'win32' && config.get('poi.misc.shortcut', true)) {
const shortcutPath =
app.getPath('appData') + '\\Microsoft\\Windows\\Start Menu\\Programs\\poi.lnk'
const targetPath = app.getPath('exe')
const argPath = app.getAppPath()
const option = {
target: targetPath,
args: argPath,
appUserModelId: 'org.poooi.poi',
description: 'poi the KanColle Browser Tool',
}
if (!ROOT.includes('.asar')) {
Object.assign(option, {
icon: path.join(ROOT, 'assets', 'icons', 'poi.ico'),
iconIndex: 0,
})
}
shell.writeShortcutLink(shortcutPath, option)
const safeModeShortcutPath =
app.getPath('appData') + '\\Microsoft\\Windows\\Start Menu\\Programs\\poi (safe mode).lnk'
const safeModeOption = Object.assign({}, option)
Object.assign(safeModeOption, {
description: 'poi the KanColle Browser Tool (safe mode)',
args: `${argPath} --safe`,
appUserModelId: 'org.poooi.poi.safe',
})
shell.writeShortcutLink(safeModeShortcutPath, safeModeOption)
}
if (dbg.isEnabled()) {
global.SERVER_HOSTNAME = '127.0.0.1:17027'
} else {
global.SERVER_HOSTNAME = 'api.poi.moe'
process.env.NODE_ENV = 'production'
if (config.get('poi.misc.exceptionReporting')) {
const { init } = require('./lib/sentry')
init({
build: global.LATEST_COMMIT,
paths: [global.ROOT, global.APPDATA_PATH],
})
}
}
let mainWindow
global.mainWindow = mainWindow = null
// enable audio autoplay
// https://github.com/electron/electron/issues/13525#issuecomment-410923391
app.commandLine.appendSwitch('autoplay-policy', 'no-user-gesture-required')
// Polyfill for webview iframe isolation
app.commandLine.appendSwitch('site-isolation-trial-opt-out', false)
app.commandLine.appendSwitch('disable-features', 'CalculateNativeWinOcclusion')
// Cache size
const cacheSize = parseInt(config.get('poi.misc.cache.size'))
if (Number.isInteger(cacheSize)) {
app.commandLine.appendSwitch('disk-cache-size', `${1048576 * cacheSize}`)
}
app.on('window-all-closed', () => {
shortcut.unregister()
app.quit()
})
// Single instance
const getLock = app.requestSingleInstanceLock()
if (!getLock) {
error('Another instance is running, exiting')
app.quit()
} else {
app.on('second-instance', () => {
if (mainWindow) {
if (mainWindow.isMinimized()) {
mainWindow.restore()
}
mainWindow.focus()
}
})
}
app.on('ready', () => {
require('electron-react-titlebar/main').initialize()
const { screen } = require('electron')
shortcut.register()
const { workArea } = screen.getPrimaryDisplay()
let { x, y, width, height } = config.get('poi.window', workArea)
const validate = (n, min, range) => n != null && n >= min && n < min + range
const withinDisplay = (d) => {
const wa = d.workArea
return validate(x, wa.x, wa.width) && validate(y, wa.y, wa.height)
}
if (!screen.getAllDisplays().some(withinDisplay)) {
x = workArea.x
y = workArea.y
}
if (width == null) {
width = workArea.width
}
if (height == null) {
height = workArea.height
}
global.mainWindow = mainWindow = new BrowserWindow({
x: x,
y: y,
width: width,
height: height,
title: 'poi',
icon: poiIconPath,
resizable: config.get('poi.content.resizable', true),
alwaysOnTop: config.get('poi.content.alwaysOnTop', false),
// FIXME: titlebarStyle and transparent: https://github.com/electron/electron/issues/14129
titleBarStyle: process.platform === 'darwin' ? 'hiddenInset' : null,
transparent: process.platform === 'darwin',
frame: !config.get(
'poi.appearance.customtitlebar',
process.platform === 'win32' || process.platform === 'linux',
),
enableLargerThanScreen: true,
maximizable: config.get('poi.content.resizable', true),
fullscreenable: config.get('poi.content.resizable', true),
webPreferences: {
plugins: true,
webviewTag: true,
nodeIntegration: true,
nodeIntegrationInWorker: true,
nodeIntegrationInSubFrames: true,
nativeWindowOpen: true,
zoomFactor: config.get('poi.appearance.zoom', 1),
enableRemoteModule: true,
contextIsolation: false,
spellcheck: false,
// experimentalFeatures: true,
},
backgroundColor: '#00000000',
})
electronRemote.enable(mainWindow.webContents)
mainWindow.webContents.addListener('did-attach-webview', (e, webContent) => {
electronRemote.enable(webContent)
})
// Default menu
if (process.platform === 'darwin') {
const { renderMainTouchbar } = require('./lib/touchbar')
renderMainTouchbar()
if (/electron$/i.test(process.argv[0])) {
const icon = nativeImage.createFromPath(`${ROOT}/assets/icons/poi.png`)
app.dock.setIcon(icon)
}
} else {
mainWindow.setMenu(null)
}
mainWindow.loadURL(`file://${__dirname}/index.html${dbg.isEnabled() ? '?react_perf' : ''}`)
if (config.get('poi.window.isMaximized', false)) {
mainWindow.maximize()
}
if (config.get('poi.window.isFullScreen', false)) {
mainWindow.setFullScreen(true)
}
if (dbg.isEnabled()) {
mainWindow.openDevTools({
mode: 'detach',
})
}
// Never wants navigate
mainWindow.webContents.on('will-navigate', (e) => {
e.preventDefault()
})
mainWindow.on('closed', () => {
// Close all sub window
require('./lib/window').closeWindows()
mainWindow = null
})
// display config
const handleScreenStatusChange = () => {
mainWindow.webContents.send('screen-status-changed', screen.getAllDisplays())
}
ipcMain.on('displays::get-all', (e) => {
e.returnValue = screen.getAllDisplays()
})
ipcMain.on('displays::remove-all-listeners', () => {
screen.removeListener('display-added', handleScreenStatusChange)
screen.removeListener('display-removed', handleScreenStatusChange)
screen.removeListener('display-metrics-changed', handleScreenStatusChange)
})
screen.addListener('display-added', handleScreenStatusChange)
screen.addListener('display-removed', handleScreenStatusChange)
screen.addListener('display-metrics-changed', handleScreenStatusChange)
// devtool
if (config.get('poi.devtool.enable', false)) {
require('./lib/devtool')
}
})
// http basic auth
app.on('login', (event, webContents, request, authInfo, callback) => {
event.preventDefault()
mainWindow.webContents.send('http-basic-auth', 'login')
ipcMain.once('basic-auth-info', (event, usr, pwd) => {
callback(usr, pwd)
})
})
ipcMain.on('refresh-shortcut', () => {
shortcut.unregister()
shortcut.register()
})
const { createHash } = require('crypto')
app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
const trusted = config.get('poi.misc.trustedCerts', [])
const hash = createHash('sha256').update(certificate.data).digest('base64')
if (trusted.includes(hash)) {
event.preventDefault()
callback(true)
}
})
// Uncaught error
process.on('uncaughtException', (e) => {
error(e.stack)
})