forked from bitfocus/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron.js
300 lines (259 loc) · 6.55 KB
/
electron.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
var electron = require('electron')
const { ipcMain } = require('electron')
var app = electron.app
var BrowserWindow = electron.BrowserWindow
var path = require('path')
var url = require('url')
var system = require('./app.js')
var fs = require('fs')
var exec = require('child_process').exec
const { init, showReportDialog, configureScope } = require('@sentry/electron')
const systeminformation = require('systeminformation')
// Ensure there isn't another instance of companion running already
var lock = app.requestSingleInstanceLock()
if (!lock) {
electron.dialog.showErrorBox(
'Multiple instances',
'Another instance is already running. Please close the other instance first.'
)
app.quit()
return
}
let skeleton_info = {}
system.emit('skeleton-info-info', function (info) {
// Assume this happens synchronously
skeleton_info = info
})
if (process.env.DEVELOPER === undefined) {
console.log('Configuring sentry error reporting')
init({
dsn: 'https://[email protected]/8',
release: `companion@${skeleton_info.appBuild || skeleton_info.appVersion}`,
beforeSend(event) {
if (event.exception) {
showReportDialog()
}
return event
},
})
} else {
console.log('Sentry error reporting is disabled')
}
var window
var tray = null
function createWindow() {
window = new BrowserWindow({
show: false,
width: 400,
height: 470,
minHeight: 600,
minWidth: 440,
maxHeight: 380,
frame: false,
resizable: false,
icon: path.join(__dirname, 'assets/icon.png'),
webPreferences: {
pageVisibility: true,
nodeIntegration: true,
contextIsolation: true,
preload: path.join(__dirname, 'window-preload.js'),
},
})
window
.loadURL(
url.format({
pathname: path.join(__dirname, 'window.html'),
protocol: 'file:',
slashes: true,
})
)
.then(() => {
window.webContents.setBackgroundThrottling(false)
})
ipcMain.on('info', function () {
if (window) {
window.webContents.send('info', skeleton_info)
}
})
ipcMain.on('skeleton-close', function (req, cb) {
system.emit('exit')
})
ipcMain.on('skeleton-minimize', function (req, cb) {
window.hide()
})
ipcMain.on('skeleton-launch-gui', function () {
launchUI()
})
ipcMain.on('skeleton-bind-ip', function (e, msg) {
console.log('changed bind ip:', msg)
system.emit('skeleton-bind-ip', msg)
})
ipcMain.on('skeleton-bind-port', function (e, msg) {
console.log('changed bind port:', msg)
system.emit('skeleton-bind-port', msg)
})
ipcMain.on('skeleton-start-minimised', function (e, msg) {
console.log('changed start minimized:', msg)
system.emit('skeleton-start-minimised', msg)
})
ipcMain.once('skeleton-ready', function () {
system.ready(!process.env.DEVELOPER)
})
ipcMain.on('network-interfaces:get', function () {
systeminformation.networkInterfaces().then(function (list) {
const interfaces = [
{ id: '0.0.0.0', label: 'All Interfaces: 0.0.0.0' },
{ id: '127.0.0.1', label: 'localhost: 127.0.0.1' },
]
for (const obj of list) {
if (obj.ip4 && !obj.internal) {
let label = `${obj.iface}: ${obj.ip4}`
if (obj.type && obj.type !== 'unknown') label += ` (${obj.type})`
interfaces.push({
id: obj.ip4,
label: label,
})
}
}
if (window) {
window.webContents.send('network-interfaces:get', interfaces)
}
})
})
system.on('skeleton-ip-unavail', function () {})
system.on('skeleton-info', function (key, val) {
skeleton_info[key] = val
if (window) {
window.webContents.send('info', skeleton_info)
}
})
system.on('restart', function () {
app.relaunch()
app.exit()
})
window.on('closed', function () {
window = null
})
window.on('ready-to-show', function () {
if (!skeleton_info.startMinimised) {
showWindow()
}
})
try {
let configDir = app.getPath('appData')
if (process.env.COMPANION_CONFIG_BASEDIR !== undefined) {
configDir = process.env.COMPANION_CONFIG_BASEDIR
}
system.emit('skeleton-info', 'configDir', configDir)
configureScope(function (scope) {
var machidFile = path.join(configDir, '/companion/machid')
var machid = fs.readFileSync(machidFile).toString().trim()
scope.setUser({ id: machid })
scope.setExtra('build', skeleton_info.appBuild)
})
} catch (e) {
console.log('Error reading BUILD and/or package info: ', e)
}
}
function createTray() {
tray = new electron.Tray(
process.platform == 'darwin'
? path.join(__dirname, 'assets', 'trayTemplate.png')
: path.join(__dirname, 'assets', 'icon.png')
)
tray.setIgnoreDoubleClickEvents(true)
if (process.platform !== 'darwin') {
tray.on('click', toggleWindow)
}
const menu = new electron.Menu()
menu.append(
new electron.MenuItem({
label: 'Show/Hide window',
click: toggleWindow,
})
)
menu.append(
new electron.MenuItem({
label: 'Launch GUI',
click: launchUI,
})
)
menu.append(
new electron.MenuItem({
label: 'Scan USB Devices',
click: scanUsb,
})
)
menu.append(
new electron.MenuItem({
label: 'Quit',
click: trayQuit,
})
)
tray.setContextMenu(menu)
}
function launchUI() {
var isWin = process.platform == 'win32'
var isMac = process.platform == 'darwin'
var isLinux = process.platform == 'linux'
if (skeleton_info.appLaunch.match(/http/)) {
if (isWin) {
exec('start ' + skeleton_info.appLaunch, function callback(error, stdout, stderr) {})
} else if (isMac) {
exec('open ' + skeleton_info.appLaunch, function callback(error, stdout, stderr) {})
} else if (isLinux) {
exec('xdg-open ' + skeleton_info.appLaunch, function callback(error, stdout, stderr) {})
}
}
}
function trayQuit() {
electron.dialog
.showMessageBox(undefined, {
title: 'Companion',
message: 'Are you sure you want to quit Companion?',
buttons: ['Quit', 'Cancel'],
})
.then((v) => {
if (v.response === 0) {
system.emit('exit')
}
})
}
function scanUsb() {
system.emit('devices_reenumerate')
}
function toggleWindow() {
if (window.isVisible()) {
window.hide()
} else {
showWindow()
}
}
function showWindow() {
window.show()
window.focus()
}
app.whenReady().then(function () {
createTray()
createWindow()
electron.powerMonitor.on('suspend', () => {
system.emit('skeleton-power', 'suspend')
})
electron.powerMonitor.on('resume', () => {
system.emit('skeleton-power', 'resume')
})
electron.powerMonitor.on('on-ac', () => {
system.emit('skeleton-power', 'ac')
})
electron.powerMonitor.on('on-battery', () => {
system.emit('skeleton-power', 'battery')
})
})
app.on('window-all-closed', function () {
app.quit()
})
app.on('activate', function () {
if (window === null) {
createWindow()
}
})