-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
427 lines (374 loc) · 9.62 KB
/
index.js
File metadata and controls
427 lines (374 loc) · 9.62 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
var instance_skel = require('../../instance_skel')
var fs = require('fs')
var internal_api = require('./internalAPI')
var actions = require('./actions')
var feedback = require('./feedback')
var presets = require('./presets')
var variables = require('./variables')
const SCClient = require('socketcluster-client')
var debug
var log
/**
* Companion instance class for the Bitfocus Cloud
*
* @extends instance_skel
* @version 1.0.0
* @since 1.0.0
* @author Håkon Nessjøen <haakon@bitfocus.io>
* @author Keith Rocheck <keith.rocheck@gmail.com>
*/
class instance extends instance_skel {
/**
* Create an instance of a videohub module.
*
* @param {EventEmitter} system - the brains of the operation
* @param {string} id - the instance ID
* @param {Object} config - saved user configuration parameters
* @since 1.0.0
*/
constructor(system, id, config) {
super(system, id, config)
Object.assign(this, {
...actions,
...feedback,
...presets,
...variables,
...internal_api,
})
this.clientId = id
this.regions = [];
this.sockets = [];
this.updateIds = [];
this.actions() // export actions
}
/**
* Setup the actions.
*
* @param {EventEmitter} system - the brains of the operation
* @access public
* @since 1.0.0
*/
actions(system) {
this.setActions(this.getActions())
}
/**
* Executes the provided action.
*
* @param {Object} action - the action to be executed
* @access public
* @since 1.0.0
*/
action(action) {
var opt = action.options
switch (action.action) {
case 'push':
this.runAction(action.action, { page: opt.page, bank: opt.bank })
break
case 'release':
this.runAction(action.action, { page: opt.page, bank: opt.bank })
break
}
}
async runAction(action, args) {
if (this.isConnected) {
try {
await this.clientCommand(this.config.remote_id, action, args)
} catch (e) {
this.log('warning', `Error running action: ${action}: ${e.message}`)
}
}
}
/**
* Creates the configuration fields for web config.
*
* @returns {Array} the config fields
* @access public
* @since 1.0.0
*/
config_fields() {
return [
{
type: 'text',
id: 'info',
width: 12,
label: 'Information',
value: 'You will need a Companion Cloud license to use this service.',
},
{
type: 'textinput',
id: 'remote_id',
label: 'Super secret key',
width: 12,
default: 'aaa-bbb-ccc-ddd-eee-fff',
regex: '^[0-9a-z-]+$',
},
...this.regionConfigFields(),
]
}
/**
* Clean up the instance before it is destroyed.
*
* @access public
* @since 1.0.0
*/
destroy() {
this.isRunning = false
this.isConnected = false
if (this.intervalTimer) {
clearInterval(this.intervalTimer)
this.intervalTimer = undefined;
}
this.disconnectAll();
this.debug('destroy', this.id)
}
/**
* Main initialization function called once the module
* is OK to start doing things.
*
* @access public
* @since 1.0.0
*/
init() {
debug = this.debug
log = this.log
this.isRunning = true
this.banks = []
this.isConnected = false
this.initialConnect = false
this.intervalTimer = setInterval(() => this.tick(), 10000)
this.knownIds = {}
this.regions = []
this.initVariables()
this.initFeedbacks()
this.initPresets()
this.checkFeedbacks('main')
this.initRegions()
if (this.config.remote_id) {
this.status(this.STATUS_WARNING, 'Connecting...')
this.init_sockets()
}
}
initRegions() {
this.system.emit('config_get', 'cloud_servers', (regions) => {
try {
console.log("INIT REGIONS: ", regions);
if (regions instanceof Array) {
this.regions = [ ...regions, { id: 'test', label: 'test', hostname: 'no-oslo-cloud1.bitfocus.io' } ];
} else {
console.log('what is', regions)
}
} catch (e) {
console.log('Malformed cloud region', e)
}
})
}
checkStatus() {
let connected = 0;
let disconnected = 0;
this.sockets.forEach(socket => {
if (socket.cloudConnected) {
connected++;
} else {
disconnected++;
}
})
if (connected === 0) {
this.initialConnect = true
this.status(this.STATUS_ERROR, 'Disconnected');
} else if (connected > 0 && disconnected > 0) {
this.status(this.STATUS_WARNING, 'Some connections are not ready');
} else if (connected > 0 && disconnected === 0) {
this.status(this.STATUS_OK);
}
if (connected > 0) {
this.isConnected = true;
} else {
this.isConnected = false;
}
console.log("STATUS: ", { connected, disconnected });
}
regionConfigFields() {
console.log('this.regions', this.regions)
return [{
type: 'dropdown',
multiple: true,
id: 'region',
label: "Cloud region",
choices: this.regions.map((region) => ({
id: region.id,
label: region.label + '(' + region.location + ')',
})),
width: 12,
default: false,
}];
return this.regions.map((region) => ({
type: 'checkbox',
id: 'region_' + region.id,
label: region.label + '(' + region.location + ')',
width: 12,
default: false,
}))
}
async tick() {
debug('TICKING')
if (this.regions.length === 0) {
initRegions();
if (this.regions.length > 0) {
this.init_sockets();
}
}
this.checkStatus();
// TODO: Rewrite
this.sockets.forEach(async (socket) => {
if (socket.cloudConnected) {
try {
const result = await socket.invoke('companion-alive', this.config.remote_id)
if (result) {
if (this.initialConnect) {
//this.status(this.STATUS_OK, 'Connected')
this.isConnected = true
this.initialConnect = false
const banks = await this.clientCommand(this.config.remote_id, 'getBanks', {})
this.banks = banks
this.checkFeedbacks('main')
this.initPresets()
}
}
} catch (e) {
// TODO: check status of all sockets before changing status
if (this.isConnected || this.initialConnect) {
//this.status(this.STATUS_ERROR, 'Connection error')
// Remove region??
this.log('warning', `Connection error: ${e.message}`)
}
}
}
});
}
addSocket(region) {
const socket = SCClient.create({
hostname: region.hostname,
port: 443,
secure: true,
autoReconnectOptions: {
initialDelay: 1000, //milliseconds
randomness: 2000, //milliseconds
multiplier: 1.5, //decimal
maxDelay: 10000, //milliseconds
},
})
this.sockets.push(socket);
debug('adding connection for %o', region.hostname);
;(async () => {
while (this.isRunning && this.sockets.includes(socket)) {
for await (let _event of socket.listener('connect')) {
socket.cloudConnected = true;
this.checkStatus();
// eslint-disable-line
debug('Socket is connected')
try {
await this.tick()
} catch (e) {}
}
await new Promise((resolve) => setTimeout(resolve, 1000))
}
debug('old socket cleaned up');
})()
;(async () => {
while (this.isRunning && this.sockets.includes(socket)) {
for await (let data of socket.subscribe('companion-banks:' + this.config.remote_id)) {
const updateId = data.updateId;
if (this.updateIds.includes(updateId)) {
return;
}
this.updateIds.push(updateId);
if (data.type === 'single') {
try {
this.banks[data.page][data.bank] = data.data
this.checkFeedbacks('main')
this.initPresets()
} catch (e) {}
} else if (data.type === 'full') {
try {
this.banks = data.data
this.checkFeedbacks('main')
this.initPresets()
} catch (e) {}
}
while (this.updateIds.length > 100) {
this.updateIds.shift();
}
}
}
})()
;(async () => {
while (this.isRunning && this.sockets.includes(socket)) {
for await (let data of socket.listener('error')) {
socket.cloudConnected = false
if (this.isConnected) {
this.checkStatus();
//this.status(this.STATUS_ERROR, 'Connection error')
}
this.log('warning', 'Cloud connection error on region ' + region.label)
}
}
})()
}
disconnectAll() {
this.sockets.forEach((socket) => {
socket.killAllChannels()
socket.killAllListeners()
socket.disconnect()
});
this.sockets.length = 0;
this.isConnected = false;
this.initialConnect = true
}
/**
* INTERNAL: use setup data to initalize the tcp socket object.
*
* @access protected
* @since 1.0.0
*/
init_sockets() {
// Regions are not ready, wait for them to be
if (this.regions.length === 0) {
return;
}
this.disconnectAll();
this.initialConnect = true
const regions = this.regions.filter((region) => this.config.region.includes(region.id))
debug('Connecting to %o', regions);
regions.forEach((region) => {
this.addSocket(region);
});
}
/**
* INTERNAL: initialize feedbacks.
*
* @access protected
* @since 1.1.0
*/
initFeedbacks() {
// feedbacks
var feedbacks = this.getFeedbacks()
this.setFeedbackDefinitions(feedbacks)
}
/**
* Process an updated configuration array.
*
* @param {Object} config - the new configuration
* @access public
* @since 1.0.0
*/
updateConfig(config) {
var resetConnection = false
if (this.config.remote_id != config.remote_id) {
// TODO: Reconnect
}
this.config = config
this.status(this.STATUS_WARNING, 'Connecting...')
this.init_sockets()
}
}
exports = module.exports = instance