-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
258 lines (233 loc) · 7.3 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
// modules
const pug = require('electron-pug')({pretty: true});
const url = require('url');
const path = require('path');
const fs = require('fs');
const {app, BrowserWindow, Menu, MenuItem, ipcMain, ipcRenderer} = require('electron');
const async = require('async');
//Rest Ingest endpoint for logging analytics requests
const ingestor = require("./lib/services/ingestor")();
console.log('what ' + ingestor.emitter);
// controllers
const projectController = require('./lib/controllers/projectController');
const rokuController = require('./lib/controllers/rokuController');
const toolController = require('./lib/controllers/toolController');
const analyticsController = require('./lib/controllers/analyticsController')();
console.log(analyticsController);
// DB config
const db = require('./lib/config/database')
let mainWindow;
let mainMenuTemplate = [
{
label: 'File',
submenu: [
{role: 'minimize'},
{
label: 'Quit',
accelerator: process.platform == 'darwin' ? 'Command+Q' : 'Ctrl+Q',
click() {
app.quit();
}
}
]
},
{
label: 'Projects',
submenu: [
{
label: 'Add',
accelerator: process.platform == 'darwin' ? 'Command+A' : 'Ctrl+A',
click() {
projectController.createAddProjectWindow();
}
}
]
},
{
label: 'Rokus',
submenu: [
{
label: 'Add',
click() {
rokuController.createAddRokuWindow();
}
}
]
}
];
// fix menu spacing on mac
if( process.platform == 'darwin' ) {
mainMenuTemplate.unshift({});
}
// add dev tools if not in production
if( process.env.NODE_ENV !== 'production' ) {
mainMenuTemplate.push({
label: 'development',
submenu: [
{
label: 'toogle dev tools',
accelerator: process.platform == 'darwin' ? 'Command+I' : 'Ctrl+I',
click(item, focusedWindow) {
focusedWindow.toggleDevTools();
}
},
{
role: 'reload'
},
{
label: 'Test',
// to quickly test dev functions
click() {
console.log('test')
}
}
]
})
}
app.on('ready', () => {
// async gather init data
async.parallel({
projects: (callback) => {
db.Projects.find()
.exec(callback);
},
rokus: (callback) => {
db.Rokus.find()
.exec(callback);
},
keyLogs: (callback) => {
db.KeyLogLists.find()
.sort({'date_created': 1})
.exec(callback);
},
}, function(err, results){
projectController.checkGitBranches(results.projects);
// create new window
mainWindow = new BrowserWindow({
width: 800,
height: 620,
icon: path.join(__dirname, 'assets', 'images', 'rokusuite_icon.ico')
});
mainWindow.webContents.openDevTools();
analyticsController.init(mainWindow, ingestor);
mainWindow.init_data = {
projects: results.projects,
rokus: results.rokus,
key_logs: results.keyLogs
};
// load html file into app
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'views', 'mainWindow.pug'),
protocol: 'file:',
slashes: true
}));
// quit app on close
mainWindow.on('closed', () => app.quit());
// build menu from template
const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
// insert Menu
Menu.setApplicationMenu(mainMenu);
});
});
// handle new project
ipcMain.on('new_project', (e, new_project_data) => {
// save
projectController.saveNewProject(new_project_data)
.then((new_project) => {
// update main window
mainWindow.webContents.send('new_project', new_project);
})
.catch((err) => {
// update main window
mainWindow.webContents.send('error', err);
});
});
// handle new roku
ipcMain.on('new_roku_data', (e, new_roku_data) => {
// save
rokuController.saveNewRoku(new_roku_data)
.then((new_roku) => {
// update main window
mainWindow.init_data.rokus.push(new_roku);
mainWindow.reload();
})
.catch((err) => {
// update main window
mainWindow.webContents.send('error', err);
});
});
// handle deploy
ipcMain.on('deploy_data', (e, deploy_data) => {
rokuController.deploy(deploy_data, mainWindow)
.then((deploy_status) => {
// update main window
mainWindow.webContents.send('deploy_status', deploy_status);
})
.catch((err) => {
// update main window
mainWindow.webContents.send('error', err);
});
});
// handle key logger toggle
ipcMain.on('key_logger', (e, key_logger) => {
if( key_logger.open ) {
toolController.openLoggerWindow();
} else {
toolController.closeLoggerWindow();
}
});
ipcMain.on('analytics_listen', e => {
analyticsController.listen();
});
ipcMain.on('analytics_ignore', e => {
analyticsController.ignore();
});
// handle updating key window from main
ipcMain.on('key_log', (e, key) => {
toolController.updateKeyLog(key);
});
// how to handle new key log list
ipcMain.on('key_log_data', (e, key_log_data) => {
toolController.saveKeyLogList(key_log_data)
.then((new_key_log) => {
// update main window
// mainWindow.webContents.send('new_project', new_project);
})
.catch((err) => {
// update main window
mainWindow.webContents.send('error', err);
});
});
// auto deploy
ipcMain.on('auto_deploy_data', (e, auto_deploy_data) => {
console.log('auto deploy', auto_deploy_data);
projectController.autoDeploy(auto_deploy_data, mainWindow);
});
ipcMain.on('removal_data', (e, removal_data) => {
// check type of removal and have controller remove element from db then send notification or error
if( removal_data.element === 'project' ) {
projectController.remove(removal_data._id)
.then((success_msg) => {
mainWindow.webContents.send('notificationData', {title: 'Project', msg: 'removed'});
})
.catch((err) => {
mainWindow.webContents.send('error', err);
});
} else if( removal_data.element === 'roku' ) {
rokuController.remove(removal_data._id)
.then((success_msg) => {
mainWindow.webContents.send('notificationData', {title: 'Roku', msg: 'removed'});
})
.catch((err) => {
mainWindow.webContents.send('error', err);
});
} else if( removal_data.element === 'log' ) {
toolController.remove(removal_data._id)
.then((success_msg) => {
mainWindow.webContents.send('notificationData', {title: 'Key Log', msg: 'removed'});
})
.catch((err) => {
mainWindow.webContents.send('error', err);
});
}
});