forked from mjordan/islandora_workbench_desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
268 lines (232 loc) · 9.45 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
// Modules to control application life and create native browser window
const {ipcMain, dialog, app, BrowserWindow, Menu, net} = require('electron')
const path = require('path')
const yaml = require('js-yaml');
const fs = require('fs');
const Store = require('electron-store');
const store = new Store();
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
const menu_template = [{
label: 'Application',
submenu: [
{ label: 'Set path to workbench', click: function () { openWorkbenchPathDialog() } },
{ label: 'Return to main window', accelerator: 'CmdOrCtrl+M', click: function () { mainWindow.loadURL('file://' + path.join(__dirname, 'renderer/index.html'));} },
{ label: 'View log file', accelerator: 'CmdOrCtrl+L', click: function () { mainWindow.loadURL('file://' + path.join(__dirname, 'workbench.log'));} },
{ label: 'Clear main window', click: function () { mainWindow.loadURL('file://' + path.join(__dirname, 'renderer/index.html'));} },
{ label: 'Quit', accelerator: 'CmdOrCtrl+Q', role: 'quit' }
]},
{
label: 'Task',
submenu: [
{ label: 'Choose configuration file', accelerator: 'CmdOrCtrl+F', click: function () { openConfigFileDialog() } },
{ label: 'Edit a configuration file (not implemented yet!)', enabled: false },
{ label: 'Edit a CSV file (not implemented yet!)', enabled: false },
]}
]
function openWorkbenchPathDialog () {
dialog.showOpenDialog(null, { properties: ['openFile'] }, (filePaths) => { store.set('workbench.path-to-workbench', filePaths[0]); } )
}
function openConfigFileDialog () {
dialog.showOpenDialog(null, { properties: ['openFile'], filters: [{ name: 'YAML', extensions: ['yaml', 'yml'] }] }, (filePaths) => { store.set('workbench.current-config-file', filePaths[0]); } )
}
function openCSVFileDialog () {
// Functionality not yet complete.
}
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1000,
height: 600,
show: false,
icon: __dirname + '/assets/islandora_workbench_desktop_icon.png',
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true
}
})
mainWindow.loadFile('renderer/index.html')
// Execute workbench.
const ipc = ipcMain
ipc.on('asynchronous-message', function (event, arg) {
if (typeof store.get('workbench.current-config-file') == "undefined") {
event.sender.send('workbench-config-file', 'No configuration file selected.')
} else {
var config = yaml.safeLoad(fs.readFileSync(store.get('workbench.current-config-file'), 'utf8'));
}
var workbenchArgs = ['--config', store.get('workbench.current-config-file')]
// Issue #10.
ping_islandora(config).then((jsonApiJson) => {
let {PythonShell} = require('python-shell');
if (arg == 'check') {
workbenchArgs = ['--config', store.get('workbench.current-config-file'), '--check']
}
let options = {
mode: 'text',
pythonOptions: ['-u'],
args: workbenchArgs
}
if (arg == 'check') {
event.sender.send('workbench-config-file', 'Checking configuration file ' +
store.get('workbench.current-config-file') + ' for "' + config.task + '" task and data.')
} else {
event.sender.send('workbench-config-file', 'Running task using configuration file ' +
store.get('workbench.current-config-file') + ' for "' + config.task + '" task.')
}
let shell = new PythonShell(store.get('workbench.path-to-workbench'), options);
shell.on('message', function (message) {
event.sender.send('asynchronous-reply', message)
});
shell.on('close', function (message) {
if (arg == 'check') {
event.sender.send('workbench-exit', 'Islandora Workbench has finished checking configuration for "' +
config.task + '" task and data.')
} else {
event.sender.send('workbench-exit', 'Islandora Workbench has finished "' + config.task + '" task.')
}
});
}).catch(e => dialog.showMessageBoxSync(mainWindow, { type: 'warning', message: "Workbench can't connect to Islandora.",
detail: e.toString(), buttons: ['OK']}));
});
let editorWindow;
ipc.on('add-editor-window', () => {
if (!editorWindow) {
editorWindow = new BrowserWindow({
width: 1000,
height: 600,
icon: __dirname + '/assets/islandora_workbench_desktop_icon.png',
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true
}
});
editorWindow.loadFile(path.join('renderer','editor.html'));
// FOR DEBUGGING. REMOVE BEFORE PR.
editorWindow.webContents.openDevTools();
// Clean up the window when closed.
editorWindow.on('closed', () => {
editorWindow = null;
});
ipc.on('run-workbench', (event, configPath, check = false) => {
runWorkbench(configPath, check);
});
}
});
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
mainWindow.on('ready-to-show', function() {
mainWindow.show();
mainWindow.focus();
});
}
/**
* Returs a promise with JSON:API object if we can connect; otherwise catch the error.
*/
async function ping_islandora(config) {
let jsonApiPrefix = config.host + '/jsonapi/';
let jsonAPIAuth = config.username + ':' + config.password;
var http = require('http');
request = await new Promise((resolve, reject) => {
const req = http.get(jsonApiPrefix, {auth: jsonAPIAuth.toString('base64')}, function (res) {
const { statusCode } = res;
const contentType = res.headers['content-type'];
let error;
if (statusCode !== 200) {
error = new Error('Request Failed.\n' +
`Status Code: ${statusCode}`);
} else if (!/^application\/(vnd\.api\+)?json/.test(contentType)) {
error = new Error('Invalid content-type.\n' +
`Expected application/json but received ${contentType}`);
}
if (error) {
console.error(error.message);
// Consume response data to free up memory
res.resume();
reject(error);
}
res.setEncoding('utf8');
let rawData = '';
res.on('data', (chunk) => { rawData += chunk; });
res.on('end', () => {
try {
const parsedData = JSON.parse(rawData);
resolve(parsedData);
} catch (e) {
console.error(e.message);
reject(e);
}
});
}).on('error', (e) => {
console.error(`Got error: ${e.message}`);
reject(e);
});
});
console.log("DEBUG: Reached end of ping_islandora function.")
return request;
}
async function runWorkbench(configPath, check = false) {
let config = yaml.safeLoad(fs.readFileSync(configPath, 'utf8'));
ping_islandora(config).then((jsonApiJson) => {
let {PythonShell} = require('python-shell');
let workbenchArgs = ['--config', configPath];
if (check) {
workbenchArgs.push('--check');
}
let options = {
mode: 'text',
pythonOptions: ['-u'],
args: workbenchArgs
}
if (check) {
mainWindow.send('workbench-config-file', 'Checking configuration file ' +
configPath + ' for "' + config.task + '" task and data.')
} else {
mainWindow.send('workbench-config-file', 'Running task using configuration file ' +
configPath + ' for "' + config.task + '" task.')
}
let shell = new PythonShell(store.get('workbench.path-to-workbench'), options);
shell.on('message', function (message) {
mainWindow.send('asynchronous-reply', message)
});
shell.on('close', function (message) {
if (check) {
mainWindow.send('workbench-exit', 'Islandora Workbench has finished checking configuration for "' +
config.task + '" task and data.')
dialog.showMessageBox({
type: 'info',
title: 'Check Completed',
message: 'Islandora Workbench has finished checking configuration for "' +
config.task + '" task and data.'
});
} else {
mainWindow.send('workbench-exit', 'Islandora Workbench has finished "' + config.task + '" task.')
}
});
}).catch(e => dialog.showMessageBoxSync(mainWindow, { type: 'warning', message: "Workbench can't connect to Islandora.",
detail: e.toString(), buttons: ['OK']}));
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', function () {
const menu = Menu.buildFromTemplate(menu_template)
Menu.setApplicationMenu(menu)
createWindow()
})
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') app.quit()
})
app.on('activate', function () {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) createWindow()
})