-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
312 lines (251 loc) · 11.1 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
var Service, Characteristic;
var request = require("request");
var pollingtoevent = require("polling-to-event");
const wifiradio = require('wifiradio');
module.exports = function (homebridge) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
homebridge.registerAccessory("homebridge-frontier-silicone", "frontier-silicon", HttpAccessory);
};
function HttpAccessory(log, config) {
this.log = log;
// url info
this.ip = config["ip"];
this.on_url = this.ip;
this.on_body = this.ip;
this.off_url = this.ip;
this.off_body = this.ip;
this.status_url = "/fsapi/GET/netRemote.sys.power?pin=1234";
this.status_on = "FS_OK 1";
this.status_off = "FS_OK 0";
this.brightness_url = config["brightness_url"];
this.brightnesslvl_url = config["brightnesslvl_url"];
this.http_method = config["http_method"] || "GET";
this.http_brightness_method = config["http_brightness_method"] || this.http_method;
this.username = config["username"] || "";
this.password = config["password"] || "";
this.sendimmediately = config["sendimmediately"] || "";
this.service = config["service"] || "Switch";
this.name = config["name"];
this.brightnessHandling = config["brightnessHandling"] || "no";
this.switchHandling = "yes";
//realtime polling info
this.state = false;
this.currentlevel = 0;
this.enableSet = true;
var that = this;
// Status Polling, if you want to add additional services that don't use switch handling you can add something like this || (this.service=="Smoke" || this.service=="Motion"))
if (this.status_url && this.switchHandling === "realtime") {
var powerurl = this.status_url;
var statusemitter = pollingtoevent(function (done) {
}, { longpolling: true, interval: 300, longpollEventName: "statuspoll" });
function compareStates(customStatus, stateData) {
var objectsEqual = true;
for (var param in customStatus) {
if (!stateData.hasOwnProperty(param) || customStatus[param] !== stateData[param]) {
objectsEqual = false;
break;
}
}
// that.log("Equal", objectsEqual);
return objectsEqual;
}
statusemitter.on("statuspoll", function (responseBody) {
var binaryState;
this.log("Status Config On", this.status_on);
var customStatusOn = this.status_on;
var customStatusOff = this.status_off;
var statusOn, statusOff;
// Check to see if custom states are a json object and if so compare to see if either one matches the state response
const radio = new wifiradio(this.ip, "1234");
radio.getPower() .then(function(response) {
if (response == "1") {
binaryState = 1;
}
// else binaryState = 0;
if (response == "0") {
binaryState = 0;
}
console.log(response);
callback(null, binaryState);
})
that.state = binaryState > 0;
that.log(that.service, "received power", that.status_url, "state is currently", binaryState);
// switch used to easily add additonal services
that.enableSet = false;
switch (that.service) {
case "Switch":
if (that.switchService) {
that.switchService.getCharacteristic(Characteristic.On)
.setValue(that.state);
}
break;
case "Light":
if (that.lightbulbService) {
that.lightbulbService.getCharacteristic(Characteristic.On)
.setValue(that.state);
}
break;
}
that.enableSet = true;
});
}
// Brightness Polling
if (this.brightnesslvl_url && this.brightnessHandling === "realtime") {
var brightnessurl = this.brightnesslvl_url;
var levelemitter = pollingtoevent(function (done) {
that.httpRequest(brightnessurl, "", "GET", that.username, that.password, that.sendimmediately, function (error, response, responseBody) {
if (error) {
that.log("HTTP get power function failed: %s", error.message);
return;
} else {
done(null, responseBody);
}
}) // set longer polling as slider takes longer to set value
}, { longpolling: true, interval: 300, longpollEventName: "levelpoll" });
levelemitter.on("levelpoll", function (responseBody) {
that.currentlevel = parseInt(responseBody);
that.enableSet = false;
if (that.lightbulbService) {
that.log(that.service, "received brightness", that.brightnesslvl_url, "level is currently", that.currentlevel);
that.lightbulbService.getCharacteristic(Characteristic.Brightness)
.setValue(that.currentlevel);
}
that.enableSet = true;
});
}
}
HttpAccessory.prototype = {
setPowerState: function (powerState, callback) {
this.log("Power On", powerState);
if (this.enableSet === true) {
var url;
var body;
if (!this.on_url || !this.off_url) {
this.log.warn("No IP adress defined");
callback(new Error("No power IP defined."));
return;
}
const radio = new wifiradio(this.ip, "1234");
if (powerState) {
radio.setPower(1);
body = this.on_body;
this.log("Setting power state to on");
} else {
radio.setPower(0);
this.log("Setting power state to off");
}
callback();
}
},
getPowerState: function (callback) {
if (!this.status_url) {
this.log.warn("Ignoring request; No status url defined.");
callback(new Error("No status url defined."));
return;
}
var url = this.status_url;
this.log("Getting power state");
var binaryState;
this.log("Status Config On", this.status_on);
var customStatusOn = this.status_on;
var customStatusOff = this.status_off;
var statusOn, statusOff;
// Check to see if custom states are a json object and if so compare to see if either one matches the state response
const radio = new wifiradio(this.ip, "1234");
radio.getPower() .then(function(response) {
if (response == "1") {
binaryState = 1;
}
// else binaryState = 0;
if (response == "0") {
binaryState = 0;
}
console.log(response);
callback(null, binaryState);
})
//var powerOn = binaryState = 0;
this.log("Power state is currently %s", binaryState);
},
identify: function (callback) {
this.log("Identify requested!");
callback(); // success
},
getServices: function () {
var that = this;
// you can OPTIONALLY create an information service if you wish to override
// the default values for things like serial number, model, etc.
var informationService = new Service.AccessoryInformation();
informationService
.setCharacteristic(Characteristic.Manufacturer, "Boike Damhuis")
.setCharacteristic(Characteristic.Model, "0.0.8")
.setCharacteristic(Characteristic.SerialNumber, "8PC00CAM4B");
switch (this.service) {
case "Switch":
this.switchService = new Service.Switch(this.name);
switch (this.switchHandling) {
//Power Polling
case "yes":
this.switchService
.getCharacteristic(Characteristic.On)
.on("get", this.getPowerState.bind(this))
.on("set", this.setPowerState.bind(this));
break;
case "realtime":
this.switchService
.getCharacteristic(Characteristic.On)
.on("get", function (callback) {
callback(null, that.state)
})
.on("set", this.setPowerState.bind(this));
break;
default :
this.switchService
.getCharacteristic(Characteristic.On)
.on("set", this.setPowerState.bind(this));
break;
}
return [this.switchService];
case "Light":
this.lightbulbService = new Service.Lightbulb(this.name);
switch (this.switchHandling) {
//Power Polling
case "yes" :
this.lightbulbService
.getCharacteristic(Characteristic.On)
.on("get", this.getPowerState.bind(this))
.on("set", this.setPowerState.bind(this));
break;
case "realtime":
this.lightbulbService
.getCharacteristic(Characteristic.On)
.on("get", function (callback) {
callback(null, that.state)
})
.on("set", this.setPowerState.bind(this));
break;
default:
this.lightbulbService
.getCharacteristic(Characteristic.On)
.on("set", this.setPowerState.bind(this));
break;
}
// Brightness Polling
if (this.brightnessHandling === "realtime") {
this.lightbulbService
.addCharacteristic(new Characteristic.Brightness())
.on("get", function (callback) {
callback(null, that.currentlevel)
})
.on("set", this.setBrightness.bind(this));
} else if (this.brightnessHandling === "yes") {
this.lightbulbService
.addCharacteristic(new Characteristic.Brightness())
.on("get", this.getBrightness.bind(this))
.on("set", this.setBrightness.bind(this));
}
return [informationService, this.lightbulbService];
break;
}
}
};