-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
268 lines (199 loc) · 10.2 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
/* jshint node: true */
"use strict";
var Service;
var Characteristic;
var AlarmState;
const http = require('http');
module.exports = function(homebridge) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
AlarmState = homebridge.hap.Characteristic.SecuritySystemCurrentState;
homebridge.registerAccessory("homebridge-http-security-system", "HTTPSecuritySystem", HttpSecuritySystemAccessory);
};
function HttpSecuritySystemAccessory(log, config) {
this.log = log;
this.version = require('./package.json').version;
log("HTTPSecuritySystem version " + this.version);
this.name = config.name;
this.controlURL = config['controlURL'];
this.statusPollInMs = config['statusPollInMs'];
log(" name: " + this.name);
log(" controlURL: " + this.controlURL);
log("statusPollInMs: " + this.statusPollInMs);
this.initService();
}
HttpSecuritySystemAccessory.prototype = {
monitorAlarmState: function() {
let url = this.controlURL + '/STATUS';
let req = http.get(url, res => {
let recv_data = '';
res.on('data', chunk => { recv_data += chunk});
res.on('end', () => {
// recv_data contains state info.... {"alarmStatus":"Disarmed"}
let newState = JSON.parse(recv_data).alarmStatus;
/*
let newState = AlarmState.DISARMED;
if (state == "Disarmed") {
newState = AlarmState.DISARMED;
} else if (state == "Stay Armed") {
newState = AlarmState.STAY_ARM;
} else if (state == "Away Armed") {
newState = AlarmState.AWAY_ARM;
} else if (state == "Night Armed") {
newState = AlarmState.NIGHT_ARM;
} else if (state == "Triggered") {
newState = AlarmState.ALARM_TRIGGERED;
}
*/
/*
this.log(this.name + ' Pre Monitor: Status Update: ' + this.alarmStateToString(newState) + ' (' + newState + ')');
this.log(this.name + ' Pre Monitor: CurrentState: ' + this.alarmStateToString(this.currentState));
this.log(this.name + ' Pre Monitor: TargetState: ' + this.alarmStateToString(this.targetState));
*/
/*
STAY_ARM = 0;
AWAY_ARM = 1;
NIGHT_ARM = 2;
DISARMED = 3;
ALARM_TRIGGERED = 4;
*/
if (this.currentState != newState){
//this.log(this.name + ' currentState: ' + this.currentState + ' newState: ' + newState);
this.log(this.name + ' Pre Monitor: NewState: ' + this.alarmStateToString(newState) + ' (' + newState + ')');
this.log(this.name + ' Pre Monitor: CurrentState: ' + this.alarmStateToString(this.currentState));
this.log(this.name + ' Pre Monitor: TargetState: ' + this.alarmStateToString(this.targetState));
this.currentState = newState;
this.currentAlarmState.updateValue(this.currentState);
//Check if Alarm is changing state from external activation if so update target state
if(this.initialising && newState != AlarmState.DISARMED){
//We have initialised and the Alarm is already armed update target state
this.log(this.name + ' Initial Status is now Armed');
this.targetState = newState;
this.targetAlarmState.updateValue(this.targetState);
} else if(this.targetState == AlarmState.DISARMED && newState != AlarmState.DISARMED) {
this.log(this.name + ' was Disarmed but now Armed');
this.targetState = newState;
this.targetAlarmState.updateValue(this.targetState);
} else if(this.targetState != AlarmState.DISARMED && newState == AlarmState.DISARMED) {
this.log(this.name + ' was Armed but now Disarmed');
this.targetState = AlarmState.DISARMED;
this.targetAlarmState.updateValue(this.targetState);
} else {
this.log(this.name + ' State Changed by HomeKit');
this.log(this.name + ' newState:' + newState);
//this.log(this.name + ' targetState:' + this.targetState);
}
}
/*
this.log(this.name + ' Post Monitor: CurrentState: ' + this.alarmStateToString(this.currentState));
this.log(this.name + ' Post Monitor: TargetState: ' + this.alarmStateToString(this.targetState));
*/
//Clear initialising flag first time this runs
this.initialising = false;
setTimeout(this.monitorAlarmState.bind(this), this.statusPollInMs);
});
});
req.on('error', err => {
this.currentState = AlarmState.DISARMED;
this.log("Error in monitorAlarmState: "+ err.message);
setTimeout(this.monitorAlarmState.bind(this), this.statusPollInMs);
})
},
alarmStateToString: function(state) {
/*
STAY_ARM = 0;
AWAY_ARM = 1;
NIGHT_ARM = 2;
DISARMED = 3;
ALARM_TRIGGERED = 4;
this.log(this.name + "stateToString: TEST STAY_ARM (" + AlarmState.STAY_ARM + ")");
this.log(this.name + "stateToString: TEST AWAY_ARM (" + AlarmState.AWAY_ARM + ")");
this.log(this.name + "stateToString: TEST NIGHT_ARM (" + AlarmState.NIGHT_ARM + ")");
this.log(this.name + "stateToString: TEST DISARM (" + AlarmState.DISARMED + ")");
this.log(this.name + "stateToString: TEST TRIGGERED (" + AlarmState.ALARM_TRIGGERED + ")");
*/
switch (state) {
case AlarmState.DISARMED:
return "DISARMED";
case AlarmState.AWAY_ARM:
return "AWAY_ARM";
case AlarmState.STAY_ARM:
return "STAY_ARM";
case AlarmState.NIGHT_ARM:
return "NIGHT_ARM";
case AlarmState.ALARM_TRIGGERED:
return "TRIGGERED";
default:
this.log(this.name + "stateToString: UNKNOWN STATE (" + state + ")");
return "UNKNOWN";
}
},
initService: function() {
this.securitySystem = new Service.SecuritySystem(this.name,this.name);
this.currentAlarmState = this.securitySystem.getCharacteristic(Characteristic.SecuritySystemCurrentState);
this.currentAlarmState.on('get', this.getState.bind(this));
this.targetAlarmState = this.securitySystem.getCharacteristic(Characteristic.SecuritySystemTargetState);
this.targetAlarmState.on('set', this.setTargetState.bind(this));
this.targetAlarmState.on('get', this.getTargetState.bind(this));
/*
Use updateCharacteristic if you want to change the state of a characteristic without triggering the set handler.
eg.
this.service.updateCharacteristic(Characteristic.SecuritySystemCurrentState, Characteristic.SecuritySystemCurrentState.DISARMED);
*/
this.service = new Service.AccessoryInformation();
this.service
.setCharacteristic(Characteristic.Manufacturer, "PlasmaSoft")
.setCharacteristic(Characteristic.Model, "Generic HTTP Security System")
.setCharacteristic(Characteristic.SerialNumber, "Version 1.0.0");
//For an unknown reason the very first status lookup fails
//Setting an init variable so we know we have just started and can set the states correctly
this.initialising = true;
//Set all states to closed
this.currentState = AlarmState.DISARMED;
this.targetState = AlarmState.DISARMED;
this.log(" Initial State: Disarmed");
this.currentAlarmState.updateValue(this.currentState);
this.targetAlarmState.updateValue(this.targetState);
//Trigger Monitoring
this.monitorAlarmState();
},
getTargetState: function(callback) {
//GET ALARM STATE
this.log(this.name + " getTargetState: " + this.alarmStateToString(this.targetState));
callback(null, this.targetState);
},
setTargetState: function(state, callback) {
if(this.currentState != state){
this.log(this.name + " currentState: " + this.alarmStateToString(this.currentState));
this.log(this.name + " setTargetState: " + this.alarmStateToString(state));
//this.activateAlarm();
//Build Activate Alarm URL from base URL and State
let url = this.controlURL + '/' + this.alarmStateToString(state);
let req = http.get(url, res => {
let recv_data = '';
res.on('data', chunk => { recv_data += chunk});
res.on('end', () => {
// recv_data contains state info.... {"result":"Success"}
let result = JSON.parse(recv_data).result;
this.log('Activate ' + this.name + ' request: ' + result);
});
});
req.on('error', err => {
this.log("Error in activateAlarm: "+ err.message);
})
this.targetState = state;
this.targetAlarmState.updateValue(this.targetState);
} else {
this.log(this.name + " Ignoring request to " + this.alarmStateToString(state) + " as already in this state");
}
callback();
return true;
},
getState: function(callback) {
this.log(this.name + " getState: " + this.alarmStateToString(this.currentState));
callback(null, this.currentState);
},
getServices: function() {
return [this.service, this.securitySystem];
}
};