-
Notifications
You must be signed in to change notification settings - Fork 147
/
main.js
executable file
·243 lines (208 loc) · 5.81 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
/*
* PiBakery 2.0.0 - The easy to use setup tool for Raspberry Pi
* Copyright (C) 2018 David Ferguson <david@pibakery.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
'use strict'
var isElevated = require('is-elevated')
var electron = require('electron')
var Menu = electron.Menu
var ipcMain = electron.ipcMain
var elevate = require('./lib/elevate')
var electronLocalshortcut = require('electron-localshortcut')
var path = require('path')
var argv = require('yargs')(process.argv).argv
// receive message about starting rootwriter thread
ipcMain.on('rootwriter', function (event, imgPath, drive, socketPath) {
// elevate this process, with the additional command line options
var additionalArguments = [
'--rootwriter',
'--socketpath',
socketPath,
'--imgpath',
imgPath,
'--drive',
drive,
'--require',
__filename
]
elevate.require(additionalArguments, function (error) {
if (error) {
electron.dialog.showErrorBox('Elevation Error', error.message)
//return process.exit(1)
}
})
})
/*
* check for the '--rootwriter' argument, meaning that this shouldn't run the
* full app, and should instead start the rootwriter thread
*/
if (argv.rootwriter) {
launchRootWriter()
return
}
/*
* if it's Linux, and we're not running as root, then elevate the entire app
* rather than just elevating the rootwriter, as linux has additional issues
*/
if (process.platform === 'linux') {
isElevated(function (error, elevated) {
if (error) {
return callback(error)
}
if (!elevated) {
// we're on linux, and not elevated, elevate the entire app
elevate.require([], function (error) {
if (error) {
electron.dialog.showErrorBox('Elevation Error', 'Could not elevate PiBakery, you won\'t be able to write images.')
launchPiBakery()
return
}
return process.exit(0)
})
return
}
// we're elevated, continue as normal
launchPiBakery()
return
})
}
// normal case, just run app as normal
if (process.platform === 'win32' || process.platform === 'darwin') {
launchPiBakery()
}
function launchRootWriter () {
if (process.platform === 'darwin') {
// hide this app in the dock
electron.app.dock.hide()
}
// get the command line arguments
var socketPath = argv.socketpath
var imgPath = argv.imgpath
var drive = argv.drive
drive = JSON.parse(drive)
// launch the rootwriter program
var rootwriter = require('./lib/rootwriter.js')
// connect to the PiBakery program
rootwriter.connect(socketPath, function () {
// once connected, begin the write
rootwriter.write(imgPath, drive, function writeComplete () {
// quit this thread once the write is complete
electron.app.quit()
})
})
// don't run anything else
return
}
function launchPiBakery () {
var mainWindow = new electron.BrowserWindow({
height: 480,
width: 640,
minHeight: 480,
minWidth: 640,
resizable: true,
autoHideMenuBar: true,
title: 'PiBakery'
/* icon: 'app/img/icon.png' */
})
mainWindow.loadURL(path.join('file://', __dirname, '/app/index.html'))
mainWindow.on('closed', function () {
electron.app.quit()
})
electronLocalshortcut.register(mainWindow, 'CommandOrControl+Shift+I', function () {
mainWindow.toggleDevTools()
})
electronLocalshortcut.register(mainWindow, 'CommandOrControl+V', function () {
mainWindow.webContents.send('paste', electron.clipboard.readText())
})
electronLocalshortcut.register(mainWindow, 'CommandOrControl+Shift+Plus', function () {
mainWindow.webContents.send('testBlock')
})
createMenu()
}
function createMenu () {
var template = [
{
label: 'Edit',
submenu: [
{role: 'undo'},
{role: 'redo'},
{type: 'separator'},
{role: 'cut'},
{role: 'copy'},
{role: 'paste'},
{role: 'pasteandmatchstyle'},
{role: 'delete'},
{role: 'selectall'}
]
},
{
role: 'window',
submenu: [
{role: 'minimize'}
]
},
{
role: 'help',
submenu: [
{
label: 'Learn More',
click () { electron.shell.openExternal('https://pibakery.org') }
},
{
label: 'Report Issue',
click () { electron.shell.openExternal('https://github.com/davidferguson/pibakery/issues/') }
}
]
}
]
if (process.platform === 'darwin') {
template.unshift({
label: app.getName(),
submenu: [
{role: 'about'},
{type: 'separator'},
{role: 'services', submenu: []},
{type: 'separator'},
{role: 'hide'},
{role: 'hideothers'},
{role: 'unhide'},
{type: 'separator'},
{role: 'quit'}
]
})
// Edit menu
template[1].submenu.push(
{type: 'separator'},
{
label: 'Speech',
submenu: [
{role: 'startspeaking'},
{role: 'stopspeaking'}
]
}
)
// Window menu
template[3].submenu = [
{role: 'close'},
{role: 'minimize'},
{role: 'zoom'},
{type: 'separator'},
{role: 'front'}
]
}
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
}