-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.js
235 lines (196 loc) · 6.71 KB
/
app.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
const bonjour = require("bonjour")();
const config = require("./config");
const exec = require("child_process").exec;
const fs = require('fs');
const Gpio = require("onoff").Gpio;
const os = require('os');
const LocalStorage = require('node-localstorage').LocalStorage;
const pjson = require('./package.json');
const server = require('http').createServer();
const tallyio = require('socket.io-client');
const { v4: uuidv4 } = require('uuid');
const ifaces = os.networkInterfaces();
const sessionio = require('socket.io')(server);
const programLed = new Gpio(config.programGpio, 'out');
const previewLed = new Gpio(config.previewGpio, 'out');
var localStorage = new LocalStorage('./tmp');
var TallySocket;
var lastState;
var deviceId;
if (localStorage.getItem('devId')) {
deviceId = localStorage.getItem('devId');
console.log("Set device ID " + deviceId);
}
if (localStorage.getItem('camera')) {
config.camera = parseInt(localStorage.getItem('camera'));
if (isNaN(config.camera)) {
config.camera = 1;
localStorage.setItem('camera', 1);
}
} else {
config.camera = 1;
localStorage.setItem('camera', 1);
}
const setDevId = function() {
console.log("Generating new ID");
var newid = uuidv4();
localStorage.setItem('devId', newid);
return newid;
}
const getDevId = function() {
if (!deviceId || deviceId === null) {
deviceId = setDevId();
}
return deviceId;
}
const updateTally = function() {
programLed.write(0);
previewLed.write(0);
if (!lastState.programSourceIds || !lastState.previewSourceIds)
return;
if (lastState.programSourceIds.includes(config.camera)) {
programLed.write(1);
} else if (lastState.previewSourceIds.includes(config.camera)) {
previewLed.write(1);
}
}
const exitHandler = function(options, exitCode) {
programLed.write(0);
previewLed.write(0);
if (options.cleanup) console.log('clean');
if (exitCode || exitCode === 0) console.log(exitCode);
if (options.exit) process.exit();
}
// Based on https://github.com/fourcube/detect-rpi
const getPiModel = function() {
var cpuInfo;
try {
cpuInfo = fs.readFileSync('/proc/cpuinfo', { encoding: 'utf8' });
} catch (e) {
// if this fails, this is probably not a pi
return false;
}
var model = cpuInfo
.split('\n')
.map(line => line.replace(/\t/g, ''))
.filter(line => line.length > 0)
.map(line => line.split(':'))
.map(pair => pair.map(entry => entry.trim()))
.filter(pair => pair[0] === 'Hardware')
if (!model || model.length == 0) {
return false;
}
return model[0][1];
}
const publishDevice = function() {
bonjour.publish({
name: os.hostname(),
type: "dsft-tally-pi",
port: 3778,
txt: {
id: getDevId(),
version: pjson.version,
hardware: getPiModel(),
camera: config.camera
}
});
}
const republishDevice = function() {
bonjour.unpublishAll(function(err) {
publishDevice();
})
}
// Generate and set a unique hostname if default hostname is being used
if (os.hostname() == "atem-tally" || os.hostname() == "raspberrypi") {
var shortid = getDevId().substring(0, 8);
exec("sudo hostnamectl set-hostname atem-tally-" + shortid, (err, stdout, stderr) => {
if (err) {
console.error(`Error: ${err}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
});
exec("sudo reboot", (err, stdout, stderr) => {
if (err) {
console.error(`Error: ${err}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
});
}
server.listen(3778);
publishDevice();
//do something when app is closing
process.on('exit', exitHandler.bind(null, { cleanup: true }));
process.on('SIGINT', exitHandler.bind(null, { exit: true }));
process.on('SIGUSR1', exitHandler.bind(null, { exit: true }));
process.on('SIGUSR2', exitHandler.bind(null, { exit: true }));
process.on('uncaughtException', exitHandler.bind(null, { exit: true }));
programLed.write(1);
previewLed.write(1);
sessionio.on('connection', (socket) => {
socket.on('pi_host_connect', function(msg) {
if (TallySocket) {
console.log("Already have an active connection");
return;
}
var host = msg;
TallySocket = new tallyio(host);
TallySocket.on('connect', function() {
console.log("Connected to server ");
programLed.write(0);
previewLed.write(0);
});
TallySocket.on('update_tally', function(msg) {
lastState = msg;
updateTally();
});
TallySocket.on('call', function(msg) {
programLed.write(0);
setTimeout(() => { programLed.write(1); }, 250);
setTimeout(() => { programLed.write(0); }, 500);
setTimeout(() => { programLed.write(1); }, 750);
setTimeout(() => { programLed.write(0); }, 1000);
setTimeout(() => { updateTally(); }, 1000);
});
TallySocket.on('set_remote', function(msg) {
if (msg.devId == getDevId() || msg.devId == '*') {
if (msg.camera) {
config.camera = msg.camera;
localStorage.setItem('camera', msg.camera);
updateTally();
republishDevice();
}
if (msg.identify) {
programLed.write(0);
setTimeout(() => { programLed.write(1); }, 250);
setTimeout(() => { programLed.write(0); }, 500);
setTimeout(() => { programLed.write(1); }, 750);
setTimeout(() => { programLed.write(0); }, 1000);
setTimeout(() => { programLed.write(1); }, 1250);
setTimeout(() => { programLed.write(0); }, 1500);
setTimeout(() => { programLed.write(1); }, 1750);
setTimeout(() => { updateTally(); }, 2000);
}
}
});
TallySocket.on('stop_tally', function(msg) {
console.log(msg);
Object.keys(ifaces).forEach(function(ifname) {
ifaces[ifname].forEach(function(iface) {
if (iface.address == msg) {
TallySocket.disconnect();
}
});
});
});
TallySocket.on('disconnect', function() {
console.log("Disconnected from server");
programLed.write(1);
previewLed.write(1);
TallySocket = null;
});
});
});