forked from home-assistant/homebridge-homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
235 lines (205 loc) · 9.45 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
'use strict';
let Service;
let Characteristic;
const url = require('url');
const request = require('request');
const EventSource = require('eventsource');
const communicationError = new Error('Can not communicate with Home Assistant.');
let HomeAssistantAlarmControlPanel;
let HomeAssistantBinarySensorFactory;
let HomeAssistantCoverFactory;
let HomeAssistantFan;
let HomeAssistantLight;
let HomeAssistantLock;
let HomeAssistantMediaPlayer;
let HomeAssistantSensorFactory;
let HomeAssistantSwitch;
let HomeAssistantDeviceTrackerFactory;
let HomeAssistantClimate;
function HomeAssistantPlatform(log, config, api) {
// auth info
this.host = config.host;
this.password = config.password;
this.supportedTypes = config.supported_types || ['alarm_control_panel', 'automation', 'binary_sensor', 'climate', 'cover', 'device_tracker', 'fan', 'group', 'input_boolean', 'light', 'lock', 'media_player', 'remote', 'scene', 'sensor', 'switch', 'script'];
this.foundAccessories = [];
this.logging = config.logging !== undefined ? config.logging : true;
this.verify_ssl = config.verify_ssl !== undefined ? config.verify_ssl : true;
this.log = log;
if (config.default_visibility === 'hidden' || config.default_visibility === 'visible') {
this.defaultVisibility = config.default_visibility;
} else {
this.defaultVisibility = 'visible';
this.log.error('Please set default_visibility in config.json to "hidden" or "visible".');
}
if (api) {
// Save the API object as plugin needs to register new accessory via this object.
this.api = api;
}
const es = new EventSource(`${config.host}/api/stream?api_password=${encodeURIComponent(this.password)}`);
es.addEventListener('message', (e) => {
if (this.logging) {
this.log(`Received event: ${e.data}`);
}
if (e.data === 'ping') {
return;
}
const data = JSON.parse(e.data);
if (data.event_type !== 'state_changed') {
return;
}
const numAccessories = this.foundAccessories.length;
for (let i = 0; i < numAccessories; i++) {
const accessory = this.foundAccessories[i];
if (accessory.entity_id === data.data.entity_id && accessory.onEvent) {
accessory.onEvent(data.data.old_state, data.data.new_state);
}
}
});
}
HomeAssistantPlatform.prototype = {
request(method, path, options, callback) {
const requestURL = `${this.host}/api${path}`;
/* eslint-disable no-param-reassign */
options = options || {};
options.query = options.query || {};
/* eslint-enable no-param-reassign */
const reqOpts = {
url: url.parse(requestURL),
method: method || 'GET',
qs: options.query,
body: JSON.stringify(options.body),
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
'x-ha-access': this.password,
},
rejectUnauthorized: this.verify_ssl,
};
request(reqOpts, (error, response, body) => {
if (error) {
callback(error, response);
return;
}
if (response.statusCode === 401) {
callback(new Error('You are not authenticated'), response);
return;
}
callback(error, response, JSON.parse(body));
});
},
fetchState(entityID, callback) {
this.request('GET', `/states/${entityID}`, {}, (error, response, data) => {
if (error) {
callback(null);
} else {
callback(data);
}
});
},
callService(domain, service, serviceData, callback) {
const options = {};
options.body = serviceData;
this.request('POST', `/services/${domain}/${service}`, options, (error, response, data) => {
if (error) {
callback(null);
} else {
callback(data);
}
});
},
accessories(callback) {
this.log('Fetching HomeAssistant devices.');
const that = this;
this.request('GET', '/states', {}, (error, response, data) => {
if (error) {
that.log(`Failed getting devices: ${error}. Retrying...`);
setTimeout(() => { that.accessories(callback); }, 5000);
return;
}
for (let i = 0; i < data.length; i++) {
const entity = data[i];
const entityType = entity.entity_id.split('.')[0];
/* eslint-disable no-continue */
// ignore devices that are not in the list of supported types
if (that.supportedTypes.indexOf(entityType) === -1) {
continue;
}
// if default behavior is visible, then ignore hidden devices
if (this.defaultVisibility === 'visible' && entity.attributes.homebridge_hidden) {
continue;
}
/* eslint-enable no-continue */
// support providing custom names
if (entity.attributes && entity.attributes.homebridge_name) {
entity.attributes.friendly_name = entity.attributes.homebridge_name;
}
let accessory = null;
if (this.defaultVisibility === 'visible' || (this.defaultVisibility === 'hidden' && entity.attributes.homebridge_visible)) {
if (entityType === 'light') {
accessory = new HomeAssistantLight(that.log, entity, that);
} else if (entityType === 'switch') {
accessory = new HomeAssistantSwitch(that.log, entity, that);
} else if (entityType === 'lock') {
accessory = new HomeAssistantLock(that.log, entity, that);
} else if (entityType === 'garage_door') {
that.log.error('Garage_doors are no longer supported by homebridge-homeassistant. Please upgrade to a newer version of Home Assistant to continue using this entity (with the new cover component).');
} else if (entityType === 'scene') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'scene');
} else if (entityType === 'script') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'script');
} else if (entityType === 'rollershutter') {
that.log.error('Rollershutters are no longer supported by homebridge-homeassistant. Please upgrade to a newer version of Home Assistant to continue using this entity (with the new cover component).');
} else if (entityType === 'input_boolean') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'input_boolean');
} else if (entityType === 'fan') {
accessory = new HomeAssistantFan(that.log, entity, that);
} else if (entityType === 'cover') {
accessory = HomeAssistantCoverFactory(that.log, entity, that);
} else if (entityType === 'sensor') {
accessory = HomeAssistantSensorFactory(that.log, entity, that);
} else if (entityType === 'device_tracker') {
accessory = HomeAssistantDeviceTrackerFactory(that.log, entity, that);
} else if (entityType === 'climate') {
accessory = new HomeAssistantClimate(that.log, entity, that);
} else if (entityType === 'media_player' && entity.attributes && entity.attributes.supported_features) {
accessory = new HomeAssistantMediaPlayer(that.log, entity, that);
} else if (entityType === 'binary_sensor' && entity.attributes && entity.attributes.device_class) {
accessory = HomeAssistantBinarySensorFactory(that.log, entity, that);
} else if (entityType === 'group') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'group');
} else if (entityType === 'alarm_control_panel') {
accessory = new HomeAssistantAlarmControlPanel(that.log, entity, that);
} else if (entityType === 'remote') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'remote');
} else if (entityType === 'automation') {
accessory = new HomeAssistantSwitch(that.log, entity, that, 'automation');
}
}
if (accessory) {
that.foundAccessories.push(accessory);
}
}
callback(that.foundAccessories);
});
},
};
function HomebridgeHomeAssistant(homebridge) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
/* eslint-disable global-require */
HomeAssistantLight = require('./accessories/light')(Service, Characteristic, communicationError);
HomeAssistantSwitch = require('./accessories/switch')(Service, Characteristic, communicationError);
HomeAssistantLock = require('./accessories/lock')(Service, Characteristic, communicationError);
HomeAssistantMediaPlayer = require('./accessories/media_player')(Service, Characteristic, communicationError);
HomeAssistantFan = require('./accessories/fan')(Service, Characteristic, communicationError);
HomeAssistantCoverFactory = require('./accessories/cover')(Service, Characteristic, communicationError);
HomeAssistantSensorFactory = require('./accessories/sensor')(Service, Characteristic, communicationError);
HomeAssistantBinarySensorFactory = require('./accessories/binary_sensor')(Service, Characteristic, communicationError);
HomeAssistantDeviceTrackerFactory = require('./accessories/device_tracker')(Service, Characteristic, communicationError);
HomeAssistantClimate = require('./accessories/climate')(Service, Characteristic, communicationError);
HomeAssistantAlarmControlPanel = require('./accessories/alarm_control_panel')(Service, Characteristic, communicationError);
/* eslint-enable global-require */
homebridge.registerPlatform('homebridge-homeassistant', 'HomeAssistant', HomeAssistantPlatform, false);
}
module.exports = HomebridgeHomeAssistant;
module.exports.platform = HomeAssistantPlatform;