forked from phenotypic/homebridge-web-garage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
187 lines (162 loc) · 6.4 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
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-web-garage', 'GarageDoorOpener', GarageDoorOpener)
}
function GarageDoorOpener (log, config) {
this.log = log
this.name = config.name
this.apiroute = config.apiroute
this.pollInterval = config.pollInterval || 300
this.port = config.port || 2000
this.requestArray = ['targetDoorState', 'currentDoorState', 'obstructionDetected']
this.autoLock = config.autoLock || false
this.autoLockDelay = config.autoLockDelay || 10
this.autoReset = config.autoReset || false
this.autoResetDelay = config.autoResetDelay || 5
this.manufacturer = config.manufacturer || packageJson.author.name
this.serial = config.serial || packageJson.version
this.model = config.model || packageJson.name
this.firmware = config.firmware || packageJson.version
this.username = config.username || null
this.password = config.password || null
this.timeout = config.timeout || 3000
this.http_method = config.http_method || 'GET'
if (this.username != null && this.password != null) {
this.auth = {
user: this.username,
pass: this.password
}
}
this.server = http.createServer(function (request, response) {
var baseURL = 'http://' + request.headers.host + '/'
var url = new URL(request.url, baseURL)
if (this.requestArray.includes(url.pathname.substr(1))) {
this.log.debug('Handling request')
response.end('Handling request')
this._httpHandler(url.pathname.substr(1), url.searchParams.get('value'))
} 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.GarageDoorOpener(this.name)
}
GarageDoorOpener.prototype = {
identify: function (callback) {
this.log('Identify requested!')
callback()
},
_getStatus: function (callback) {
var url = this.apiroute + '/status'
this.log.debug('Getting status: %s', url)
this._httpRequest(url, '', 'GET', function (error, response, responseBody) {
if (error) {
this.log.warn('Error getting status: %s', error.message)
this.service.getCharacteristic(Characteristic.CurrentDoorState).updateValue(new Error('Error getting status'))
this.retryStatus()
callback(error)
} else {
this.log.debug('Device response: %s', responseBody)
var json = JSON.parse(responseBody)
this.service.getCharacteristic(Characteristic.CurrentDoorState).updateValue(json.currentDoorState)
this.log.debug('Updated currentDoorState to: %s', json.currentDoorState)
this.service.getCharacteristic(Characteristic.TargetDoorState).updateValue(json.targetDoorState)
this.log.debug('Updated targetDoorState to: %s', json.targetDoorState)
this.service.getCharacteristic(Characteristic.ObstructionDetected).updateValue(0)
callback()
}
}.bind(this))
},
_httpHandler: function (characteristic, value) {
switch (characteristic) {
case 'currentDoorState':
this.service.getCharacteristic(Characteristic.CurrentDoorState).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
break
case 'targetDoorState':
this.service.getCharacteristic(Characteristic.TargetDoorState).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
if (parseInt(value) === 0 && this.autoLock) {
this.autoLockFunction()
}
break
case 'obstructionDetected':
this.service.getCharacteristic(Characteristic.ObstructionDetected).updateValue(value)
this.log('Updated %s to: %s', characteristic, value)
if (parseInt(value) === 1 && this.autoReset) {
this.autoResetFunction()
}
break
default:
this.log.warn('Unknown characteristic "%s" with value "%s"', characteristic, value)
}
},
_httpRequest: function (url, body, method, callback) {
request({
url: url,
body: body,
method: this.http_method,
timeout: this.timeout,
rejectUnauthorized: false,
auth: this.auth
},
function (error, response, body) {
callback(error, response, body)
})
},
setTargetDoorState: function (value, callback) {
var url = this.apiroute + '/setTargetDoorState?value=' + value
this.log.debug('Setting targetDoorState: %s', url)
this._httpRequest(url, '', this.http_method, function (error, response, responseBody) {
if (error) {
this.log.warn('Error setting targetDoorState: %s', error.message)
callback(error)
} else {
this.log('Set targetDoorState to: %s', value)
if (value === 0 && this.autoLock) {
this.autoLockFunction()
}
callback()
}
}.bind(this))
},
autoLockFunction: function () {
this.log('Waiting %s seconds for autolock', this.autoLockDelay)
setTimeout(() => {
this.service.setCharacteristic(Characteristic.TargetDoorState, 1)
this.log('Autolocking...')
}, this.autoLockDelay * 1000)
},
autoResetFunction: function () {
this.log('Waiting %s seconds to autoreset obstruction detection', this.autoResetDelay)
setTimeout(() => {
this.service.getCharacteristic(Characteristic.ObstructionDetected).updateValue(0)
this.log('Autoreset obstruction detection')
}, this.autoResetDelay * 1000)
},
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.TargetDoorState)
.on('set', this.setTargetDoorState.bind(this))
this._getStatus(function () {})
setInterval(function () {
this._getStatus(function () {})
}.bind(this), this.pollInterval * 1000)
return [this.informationService, this.service]
}
}