forked from bitfocus/companion-module-extron-smx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
329 lines (285 loc) · 6.92 KB
/
index.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
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
var tcp = require('../../tcp');
var instance_skel = require('../../instance_skel');
var TelnetSocket = require('../../telnet');
var debug;
var log;
function instance(system, id, config) {
var self = this;
// Request id counter
self.request_id = 0;
self.login = false;
// super-constructor
instance_skel.apply(this, arguments);
self.status(1,'Initializing');
self.actions(); // export actions
return self;
}
instance.prototype.updateConfig = function(config) {
var self = this;
self.config = config;
self.init_tcp();
};
instance.prototype.incomingData = function(data) {
var self = this;
debug(data);
// Match part of the copyright response from unit when a connection is made.
// Send Info request to SMX which should reply with Matrix setup, eg: "V8X4 A8X4"
if (self.login === false && data.match("Extron Electronics")) {
self.status(self.STATUS_WARNING,'Logging in');
self.socket.write("I"+ "\n");
}
if (self.login === false && data.match("Password:")) {
self.status(self.STATUS_WARNING,'Logging in');
self.socket.write(""+ "\n");
}
// Match first letter of expected response from unit.
// Match heartbeat response
else if (self.login === false && data.match(/V|SMX/)) {
self.login = true;
self.status(self.STATUS_OK);
debug("logged in");
}
else if (self.login === false && data.match('login incorrect')) {
self.log('error', "incorrect username/password (expected no password)");
self.status(self.STATUS_ERROR, 'Incorrect user/pass');
}
// Heatbeat to keep connection alive.
if (self.login === true) {
clearInterval(self.heartbeat_interval);
var beat_period = 180; // Seconds
self.heartbeat_interval = setInterval(heartbeat, beat_period * 1000);
function heartbeat() {
self.login = false;
self.status(self.STATUS_WARNING,'Checking Connection');
self.socket.write("1I"+ "\n"); // should respond with Switcher description (short) eg: Inf01*SMX
debug("Checking Connection");
}
}
else {
debug("data nologin", data);
}
};
instance.prototype.init = function() {
var self = this;
debug = self.debug;
log = self.log;
self.init_tcp();
};
instance.prototype.init_tcp = function() {
var self = this;
var receivebuffer = '';
if (self.socket !== undefined) {
self.socket.destroy();
delete self.socket;
self.login = false;
}
if (self.config.host) {
self.socket = new TelnetSocket(self.config.host, 23);
self.socket.on('status_change', function (status, message) {
if (status !== self.STATUS_OK) {
self.status(status, message);
}
});
self.socket.on('error', function (err) {
debug("Network error", err);
self.log('error',"Network error: " + err.message);
});
self.socket.on('connect', function () {
debug("Connected");
self.login = false;
});
self.socket.on('error', function (err) {
debug("Network error", err);
self.log('error',"Network error: " + err.message);
self.login = false;
});
// if we get any data, display it to stdout
self.socket.on("data", function(buffer) {
var indata = buffer.toString("utf8");
self.incomingData(indata);
});
self.socket.on("iac", function(type, info) {
// tell remote we WONT do anything we're asked to DO
if (type == 'DO') {
socket.write(new Buffer([ 255, 252, info ]));
}
// tell the remote DONT do whatever they WILL offer
if (type == 'WILL') {
socket.write(new Buffer([ 255, 254, info ]));
}
});
}
};
instance.prototype.CHOICES_TYPE = [
{ label: 'Audio & Video', id: '!' },
{ label: 'Video only', id: '%' },
{ label: 'Audio only', id: '$'}
]
// Return config fields for web config
instance.prototype.config_fields = function () {
var self = this;
return [
{
type: 'text',
id: 'info',
width: 12,
label: 'Information',
value: 'This will establish a telnet connection to the SMX'
},
{
type: 'textinput',
id: 'host',
label: 'SMX IP address',
width: 12,
default: '192.168.254.254',
regex: self.REGEX_IP
}
]
};
// When module gets deleted
instance.prototype.destroy = function() {
var self = this;
clearInterval (self.heartbeat_interval); //Stop Heartbeat
if (self.socket !== undefined) {
self.socket.destroy();
}
debug("destroy", self.id);;
};
instance.prototype.actions = function(system) {
var self = this;
var actions = {
'route': {
label: 'Route input to output',
options: [{
type: 'textinput',
label: 'plane',
id: 'plane',
regex: self.REGEX_NUMBER
}, {
type: 'textinput',
label: 'input',
id: 'input',
regex: self.REGEX_NUMBER
}, {
type: 'textinput',
label: 'output',
id: 'output',
regex: self.REGEX_NUMBER
}, {
type: 'dropdown',
label: 'type',
id: 'type',
choices: self.CHOICES_TYPE,
default: '!'
}]
},
'inputToAll': {
label: 'Route input to all outputs',
options: [{
type: 'textinput',
label: 'plane',
id: 'plane',
regex: self.REGEX_NUMBER
}, {
type: 'textinput',
label: 'input',
id: 'input',
regex: self.REGEX_NUMBER
}, {
type: 'dropdown',
label: 'type',
id: 'type',
choices: self.CHOICES_TYPE,
default: '!'
}]
},
'recallPlaneP': {
label: 'Recall plane preset',
options: [{
type: 'textinput',
label: 'plane',
id: 'plane',
regex: self.REGEX_NUMBER
}, {
type: 'textinput',
label: 'preset',
id: 'preset',
regex: self.REGEX_NUMBER
}]
},
'recallGlobalP': {
label: 'Recall global preset',
options: [{
type: 'textinput',
label: 'preset',
id: 'preset',
regex: self.REGEX_NUMBER
}]
},
'savePlaneP': {
label: 'Save plane preset',
options: [{
type: 'textinput',
label: 'plane',
id: 'plane',
regex: self.REGEX_NUMBER
}, {
type: 'textinput',
label: 'preset',
id: 'preset',
regex: self.REGEX_NUMBER
}]
},
'saveGlobalP': {
label: 'Save global preset',
options: [{
type: 'textinput',
label: 'preset',
id: 'preset',
regex: self.REGEX_NUMBER
}]
}
};
self.setActions(actions);
}
instance.prototype.action = function(action) {
var self = this;
var id = action.action;
var opt = action.options;
var cmd;
switch (id) {
case 'route':
cmd = opt.plane +'*'+ opt.input +'*'+ opt.output + opt.type;
break;
case 'inputToAll':
cmd = opt.plane +'*'+ opt.input +'*'+ opt.type;
break;
case 'recallPlaneP':
cmd = opt.plane +'*'+ opt.preset +'*0.';
break;
case 'recallGlobalP':
cmd = opt.preset +'.';
break;
case 'savePlaneP':
cmd = opt.plane +'*'+ opt.preset +'*0,';
break;
case 'saveGlobalP':
cmd = opt.preset +',';
break;
}
if (cmd !== undefined) {
if (self.tcp !== undefined) {
debug('sending ', cmd, "to", self.tcp.host);
self.tcp.send(cmd);
}
}
if (cmd !== undefined) {
if (self.socket !== undefined && self.socket.connected) {
self.socket.write(cmd+"\n");
} else {
debug('Socket not connected :(');
}
}
};
instance_skel.extendedBy(instance);
exports = module.exports = instance;