-
Notifications
You must be signed in to change notification settings - Fork 690
/
main.js
executable file
·291 lines (264 loc) · 8.43 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
const electron = require("electron");
// Child Process for keyword spotter
const { spawn, exec } = require("child_process");
// Smart mirror remote
const remote = require("./remote.js");
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
// Prevent the monitor from going to sleep.
const powerSaveBlocker = electron.powerSaveBlocker;
powerSaveBlocker.start("prevent-display-sleep");
// process the plugin location info
const loader = require("./app/js/loader.js");
// used to get free port for background process socket.io communications
const getPort = require("get-port");
// Launching the mirror in dev mode
const DevelopmentMode = process.argv.includes("dev");
const usepm2 = process.argv.includes("usepm2");
//var atomScreen = null;
// Load the smart mirror config
let config;
let firstRun = false;
let kwsProcess = null;
let quitting = false;
try {
config = require("./config.json");
} catch (e) {
let error = "Unknown Error";
config = require("./remote/.config.default.json");
firstRun = true;
if (typeof e.code !== "undefined" && e.code === "MODULE_NOT_FOUND") {
error =
"Initial startup detected\nPlease configure your mirror by opening a browser with the remote address shown below...";
} else if (typeof e.message !== "undefined") {
//console.log(e)
error =
"Syntax Error. \nLooks like there's an error in your config file: " +
e.message +
"\n" +
"Protip: You might want to paste your config file into a JavaScript validator like http://jshint.com/";
}
console.log(error);
}
// 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;
function createWindow() {
app.commandLine.appendSwitch("autoplay-policy", "no-user-gesture-required");
app.commandLine.appendSwitch("disable-http-cache");
// Get the displays and render the mirror on a secondary screen if it exists
var atomScreen = null;
if (electron.screen == undefined) {
atomScreen = electron.remote.screen;
} else {
atomScreen = electron.screen;
}
var displays = atomScreen.getAllDisplays();
var externalDisplay = null;
for (var i in displays) {
if (displays[i].bounds.x > 0 || displays[i].bounds.y > 0) {
externalDisplay = displays[i];
break;
}
}
const { width, height } = atomScreen.getPrimaryDisplay().workAreaSize;
var browserWindowOptions = {
width: width,
height: height,
icon: "favicon.ico",
kiosk: true,
autoHideMenuBar: true,
darkTheme: true,
backgroundColor: "#00000001",
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false,
},
};
if (externalDisplay) {
browserWindowOptions.x = width; //+ 2; //externalDisplay.bounds.x + 50
browserWindowOptions.y = height; //externalDisplay.bounds.y + 50
console.log(
"display size=" + browserWindowOptions.x + "+" + browserWindowOptions.y
);
}
// Create the browser window.
mainWindow = new BrowserWindow(browserWindowOptions);
// load the plugins found and customize the plugin layout
var fn = loader.loadPluginInfo(__dirname + "/index.html", config);
// and load the updated index.html of the app.
mainWindow.loadURL("file://" + __dirname + fn);
// Open the DevTools if run with "npm start dev"
if (DevelopmentMode) {
mainWindow.webContents.openDevTools();
}
// 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;
});
}
function startSonus(port) {
// Initilize the keyword spotter
kwsProcess = spawn("node", ["./sonus.js", port], { detached: false });
// Handel messages from node
kwsProcess.stderr.on("data", function (data) {
var message = data.toString();
console.error("ERROR", message.substring(4));
});
kwsProcess.stdout.on("data", function (data) {
var message = data.toString();
if (message.startsWith("!h:")) {
mainWindow.webContents.send("hotword", true);
} else if (message.startsWith("!p:")) {
mainWindow.webContents.send("partial-results", message.substring(4));
} else if (message.startsWith("!f:")) {
mainWindow.webContents.send("final-results", message.substring(4));
} else {
console.error(message.substring(3));
}
});
// if we receive a closed event from the keyword spotter
kwsProcess.on("close", function () {
// if main process is not ending
if (quitting == false) {
// restart it
startSonus(config.communications_port);
}
});
}
// Initilize the keyword spotter
if (config && config.speech && !firstRun) {
// get the sonus communications socket port
getPort({ port: getPort.makeRange(9000, 9500) }).then((port) => {
global.sonusSocket = port;
config.communications_port = port;
startSonus(config.communications_port);
});
}
if ((config.remote && config.remote.enabled) || firstRun) {
remote.start(config);
// Deturmine the local IP address
const interfaces = require("os").networkInterfaces();
let addresses = [];
for (let k in interfaces) {
for (let k2 in interfaces[k]) {
let address = interfaces[k][k2];
if (address.family === "IPv4" && !address.internal) {
addresses.push(address.address);
}
}
}
console.log(
"Remote listening on http://%s:%d",
addresses[0],
config.remote.port
);
remote.on("command", function (command) {
mainWindow.webContents.send("final-results", command);
});
remote.on("connected", function () {
mainWindow.webContents.send("connected");
});
remote.on("disconnected", function () {
mainWindow.webContents.send("disconnected");
});
remote.on("devtools", function (open) {
if (open) {
mainWindow.webContents.openDevTools();
} else {
mainWindow.webContents.closeDevTools();
}
});
remote.on("kiosk", function () {
if (mainWindow.isKiosk()) {
mainWindow.setKiosk(false);
} else {
mainWindow.setKiosk(true);
}
});
remote.on("reload", function () {
mainWindow.reload();
});
remote.on("wakeUp", function () {
mainWindow.webContents.send("remoteWakeUp", true);
});
remote.on("sleep", function () {
mainWindow.webContents.send("remoteSleep", true);
});
remote.on("relaunch", function (newConfig) {
console.log("Relaunching...");
// rebuild the html file plugin position info, from the NEW config data
if (!usepm2) {
loader.loadPluginInfo(__dirname + "/index.html", newConfig);
app.relaunch();
}
app.quit();
});
}
// Motion detection
var mtnProcess = null;
if (config.motion && config.motion.enabled) {
if (config.motion.enabled == "pin") {
// use npm to start for sudo needed by raspio
mtnProcess = spawn("npm", ["run", "motion"], { detached: false });
}
// don't need npm, just launch script
else mtnProcess = spawn("node", ["./motion.js"], { detached: false });
// Handel messages from node
mtnProcess.stderr.on("data", function (data) {
var message = data.toString();
console.error("ERROR", message.substring(4));
});
mtnProcess.stdout.on("data", function (data) {
var message = data.toString();
if (message.startsWith("!s:")) {
console.log(message.substring(3));
mainWindow.webContents.send("motionstart", true);
} else if (message.startsWith("!e:")) {
console.log(message.substring(3));
mainWindow.webContents.send("motionend", true);
} else if (message.startsWith("!c:")) {
console.log(message.substring(3));
mainWindow.webContents.send("calibrated", true);
} else if (message.startsWith("!E:")) {
console.log(message.substring(3));
mainWindow.webContents.send("Error", message.substring(3));
mtnProcess.kill();
} else {
console.error(message);
}
});
}
// 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", createWindow);
// Quit when all windows are closed.
app.on("window-all-closed", function () {
app.quit();
});
// No matter how the app is quit, we should clean up after ourselvs
app.on("will-quit", function () {
if (kwsProcess) {
quitting = true;
kwsProcess.kill();
}
// While cleaning up we should turn the screen back on in the event
// the program exits before the screen is woken up
if (mtnProcess) {
mtnProcess.kill();
}
if (
config.autoTimer &&
config.autoTimer.mode !== "disabled" &&
config.autoTimer.wakeCmd
) {
exec(config.autoTimer.wakeCmd).kill();
}
});