forked from lp4so/homebridge-eedomus-thermostat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
330 lines (285 loc) · 11.5 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
330
var Service, Characteristic
const packageJson = require('./package.json')
const request = require('request')
const ip = require('ip')
const http = require('http')
module.exports = function (homebridge) {
Service = homebridge.hap.Service
Characteristic = homebridge.hap.Characteristic
homebridge.registerAccessory('homebridge-eedomus-thermostat', 'Thermostat', Thermostat)
}
function Thermostat (log, config) {
this.log = log
this.name = config.name
this.apiroute = config.apiroute || 'api.eedomus.com'
this.pollInterval = config.pollInterval || 300
this.heatOnly = true
this.listener = config.listener || false
this.port = config.port || 2000
this.requestArray = ['targetHeatingCoolingState', 'targetTemperature', 'coolingThresholdTemperature', 'heatingThresholdTemperature']
this.manufacturer = config.manufacturer || packageJson.author.name
this.serial = config.serial || this.apiroute
this.model = config.model || packageJson.name
this.firmware = config.firmware || packageJson.version
this.thermostatid = config.thermostatid
this.heaterid = config.heaterid
this.thermometerid = config.thermometerid
this.apiuser = config.apiuser || null
this.apisecret = config.apisecret || null
this.timeout = config.timeout || 3000
this.http_method = config.http_method || 'GET'
this.temperatureDisplayUnits = config.temperatureDisplayUnits || 0
this.maxTemp = config.maxTemp || 25
this.minTemp = config.minTemp || 16
if (this.listener) {
this.server = http.createServer(function (request, response) {
var parts = request.url.split('/')
var partOne = parts[parts.length - 2]
var partTwo = parts[parts.length - 1]
if (parts.length === 3 && this.requestArray.includes(partOne)) {
this.log('Handling request: %s', request.url)
response.end('Handling request')
this._httpHandler(partOne, partTwo)
} else {
this.log.warn('Invalid request: %s', request.url)
response.end('Invalid request')
}
}.bind(this))
this.server.listen(this.port, function () {
this.log('Listen server: http://%s:%s', ip.address(), this.port)
}.bind(this))
}
this.service = new Service.Thermostat(this.name)
}
Thermostat.prototype = {
identify: function (callback) {
this.log('Identify requested!')
callback()
},
_httpRequest: function (url, body, method, callback) {
request({
url: url,
body: body,
method: this.http_method,
timeout: this.timeout,
rejectUnauthorized: false,
agent: false,
pool: {maxSockets: Infinity},
auth: this.auth
},
function (error, response, body) {
callback(error, response, body)
})
},
_getStatus: function (callback) {
var url = this.apiroute + '/get?api_user=' + this.apiuser + '&api_secret=' + this.apisecret + '&action=periph.value&periph_id='
var heaterurl = url + this.heaterid
var thermometerurl = url + this.thermometerid
var thermostaturl = url + this.thermostatid
this.log.debug('Getting heater status: %s', heaterurl)
this._httpRequest(heaterurl, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error getting heater status: %s', error.message)
this.service.getCharacteristic(Characteristic.CurrentHeatingCoolingState).updateValue(new Error('Polling failed'))
callback(error)
}
else {
this.log.debug('Device response: %s', responseBody)
var json = JSON.parse(responseBody)
var rescurrentHeatingCoolingState = json.body.last_value
if(rescurrentHeatingCoolingState > 20){
rescurrentHeatingCoolingState = 1
}
else{
rescurrentHeatingCoolingState = 0
}
this.service.getCharacteristic(Characteristic.CurrentHeatingCoolingState).updateValue(rescurrentHeatingCoolingState)
this.log('Updated CurrentHeatingCoolingState to: %s', rescurrentHeatingCoolingState)
callback()
}
}.bind(this))
this.log.debug('Getting heater status: %s', thermometerurl)
this._httpRequest(thermometerurl, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error getting thermometer status: %s', error.message)
this.service.getCharacteristic(Characteristic.CurrentTemperature).updateValue(new Error('Polling failed'))
callback(error)
}
else {
this.log.debug('Device response: %s', responseBody)
var json = JSON.parse(responseBody)
this.service.getCharacteristic(Characteristic.CurrentTemperature).updateValue(json.body.last_value)
this.log('Updated CurrentTemperature to: %s', json.body.last_value)
callback()
}
}.bind(this))
this.log.debug('Getting thermostat status: %s', thermostaturl)
this._httpRequest(thermostaturl, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error getting thermostat status: %s', error.message)
this.service.getCharacteristic(Characteristic.TargetHeatingCoolingState).updateValue(new Error('Polling failed'))
callback(error)
}
else {
this.log.debug('Device response: %s', responseBody)
var json = JSON.parse(responseBody)
var resTargetHeatingCoolingState = json.body.last_value
var tgTemp = 0
var tgState = 0
if(resTargetHeatingCoolingState > 5 && resTargetHeatingCoolingState <= 30){
tgTemp = resTargetHeatingCoolingState
tgState = 1
}
else if(resTargetHeatingCoolingState == 5 || resTargetHeatingCoolingState == 'pause'){
tgTemp = 5
tgState = 0
}
else{
callback()
}
if(tgTemp > 5){
this.service.getCharacteristic(Characteristic.TargetTemperature).updateValue(tgTemp)
this.log('Updated TargetTemperature to: %s', tgTemp)
}
this.service.getCharacteristic(Characteristic.TargetHeatingCoolingState).updateValue(tgState)
this.log('Updated TargetHeatingCoolingState to: %s', tgState)
callback()
}
}.bind(this))
},
_httpHandler: function (characteristic, value) {
switch (characteristic) {
case 'targetHeatingCoolingState':
this.service.getCharacteristic(Characteristic.TargetHeatingCoolingState).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
break
case 'targetTemperature':
this.service.getCharacteristic(Characteristic.TargetTemperature).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
break
case 'coolingThresholdTemperature':
this.service.getCharacteristic(Characteristic.CoolingThresholdTemperature).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
break
case 'heatingThresholdTemperature':
this.service.getCharacteristic(Characteristic.HeatingThresholdTemperature).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
break
default:
this.log.warn('Unknown characteristic "%s" with value "%s"', characteristic, value)
}
},
setTargetHeatingCoolingState: function (value, callback) {
var thvalue = 0
if(value == 0 || value == 2){
thvalue = 'pause'
}
if(value == 1 || value == 3){
thvalue = 'resume'
}
var url = this.apiroute + '/set?api_user=' + this.apiuser + '&api_secret=' + this.apisecret + '&action=periph.value&periph_id=' + this.thermostatid + '&value=' + thvalue
this.log.debug('Setting targetHeatingCoolingState: %s', url)
this._httpRequest(url, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error setting targetHeatingCoolingState: %s', error.message)
callback(error)
} else {
this.log('Set targetHeatingCoolingState to: %s', value)
this.service.getCharacteristic(Characteristic.CurrentHeatingCoolingState).updateValue(value)
callback()
}
}.bind(this))
},
setTargetTemperature: function (value, callback) {
value = Math.round(value)
var url = this.apiroute + '/set?api_user=' + this.apiuser + '&api_secret=' + this.apisecret + '&action=periph.value&periph_id=' + this.thermostatid + '&value=' + value
this.log.debug('Setting targetTemperature: %s', url)
this._httpRequest(url, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error setting targetTemperature: %s', error.message)
callback(error)
} else {
this.log('Set targetTemperature to: %s', value)
callback()
}
}.bind(this))
},
setCoolingThresholdTemperature: function (value, callback) {
value = value.toFixed(1)
var url = this.apiroute + '/coolingThresholdTemperature/' + value
this.log.debug('Setting coolingThresholdTemperature: %s', url)
this._httpRequest(url, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error setting coolingThresholdTemperature: %s', error.message)
callback(error)
} else {
this.log('Set coolingThresholdTemperature to: %s', value)
callback()
}
}.bind(this))
},
setHeatingThresholdTemperature: function (value, callback) {
value = value.toFixed(1)
var url = this.apiroute + '/heatingThresholdTemperature/' + value
this.log.debug('Setting heatingThresholdTemperature: %s', url)
this._httpRequest(url, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error setting heatingThresholdTemperature: %s', error.message)
callback(error)
} else {
this.log('Set heatingThresholdTemperature to: %s', value)
callback()
}
}.bind(this))
},
getServices: function () {
this.informationService = new Service.AccessoryInformation()
this.informationService
.setCharacteristic(Characteristic.Manufacturer, this.manufacturer)
.setCharacteristic(Characteristic.Model, this.model)
.setCharacteristic(Characteristic.SerialNumber, this.serial)
.setCharacteristic(Characteristic.FirmwareRevision, this.firmware)
this.service.getCharacteristic(Characteristic.TemperatureDisplayUnits).updateValue(this.temperatureDisplayUnits)
this.service
.getCharacteristic(Characteristic.TargetHeatingCoolingState)
.on('set', this.setTargetHeatingCoolingState.bind(this))
this.service
.getCharacteristic(Characteristic.TargetTemperature)
.on('set', this.setTargetTemperature.bind(this))
.setProps({
minValue: this.minTemp,
maxValue: this.maxTemp,
minStep: 1
})
if (this.heatOnly) {
this.service.getCharacteristic(Characteristic.TargetHeatingCoolingState).setProps({
minValue: 0,
maxValue: 1,
validValues: [0,1]
});
}
if (this.temperatureThresholds) {
this.service
.getCharacteristic(Characteristic.CoolingThresholdTemperature)
.on('set', this.setCoolingThresholdTemperature.bind(this))
.setProps({
minValue: this.minTemp,
maxValue: this.maxTemp,
minStep: 0.5
})
this.service
.getCharacteristic(Characteristic.HeatingThresholdTemperature)
.on('set', this.setHeatingThresholdTemperature.bind(this))
.setProps({
minValue: this.minTemp,
maxValue: this.maxTemp,
minStep: 0.5
})
}
this._getStatus(function () {})
setInterval(function () {
this._getStatus(function () {})
}.bind(this), this.pollInterval * 1000)
return [this.informationService, this.service]
}
}