forked from arirobinson/MMM-HASS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_helper.js
171 lines (141 loc) · 4.27 KB
/
node_helper.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
'use strict';
/* Magic Mirror
* Module: MMM-HASS
*
* Simple transposition of Benjamin Roesner´s MMM-FHEM
* to use it with home assistant
*
* GNU GPL v3.0
*/
const NodeHelper = require('node_helper');
var request = require('request');
var _ = require('underscore');
module.exports = NodeHelper.create({
start: function() {
this.config = {};
},
buildHassUrl: function(config, urlpath) {
var self = this;
var url = config.host;
if (config.port) {
url += ':' + config.port;
}
url += urlpath;
if (config.apipassword) {
url = '?api_password=' + config.apipassword;
}
if (config.https) {
url = 'https://' + url;
} else {
url = 'http://' + url;
}
self.clogger(url);
return url
},
buildHassDeviceUrl: function(devicename, config) {
var self = this;
var urlpath = '/api/states/' + devicename
return self.buildHassUrl(config, urlpath);
},
buildHassEventUrl: function(domain, service, config) {
var self = this;
var urlpath = '/api/services/' + domain + '/' + service;
return self.buildHassUrl(config, urlpath);
},
buildHassAuthorizationHeader: function(config) {
if(config.hassiotoken) {
if(config.token) {
return { 'Authorization' : 'Bearer ' + config.token };
} else {
return { 'Authorization' : 'Bearer ' + process.env.HASSIO_TOKEN };
}
}
},
clogger: function(logentry) {
if(config.debuglogging) {
console.log(logentry);
}
},
sendHassEvent: function(config, domain, service, params) {
var self = this;
var urlstr = self.buildHassEventUrl(domain, service, config);
var post_options = {
url: urlstr,
method: 'POST',
json: params
};
post_options.headers = self.buildHassAuthorizationHeader(config);
var post_req = request(post_options, function(error, response, body) {
self.clogger('Response: ' + response.statusCode);
});
},
getHassReadings: function(config, callback) {
var self = this;
self.clogger(config.devices);
var structuredData = _.each(config.devices, function(device) {
var outDevice = {};
self.clogger(device);
var readings = device.deviceReadings;
var urls = [];
// First, build a list of url for all the readings
//
readings.forEach(function(element, index, array) {
var url = self.buildHassDeviceUrl(element.sensor, config);
self.clogger('Request URL: ' + url);
urls.push(url);
});
self.clogger(urls);
var completed_requests = 0;
// Then, get all the json for the device
//
var i;
for (i in urls) {
var get_options = {
url: urls[i],
json: true
};
get_options.headers = self.buildHassAuthorizationHeader(config);
request(get_options, function(error, response, body) {
completed_requests++;
self.clogger(error);
self.clogger(body);
outDevice[body.entity_id] = body.state;
if (completed_requests == urls.length) {
// All requests done for the device, process responses array
// to retrieve all the states
outDevice.label = device.deviceLabel;
self.clogger(outDevice);
callback(outDevice);
}
});
}
});
},
// Subclass socketNotificationReceived received.
socketNotificationReceived: function(notification, payload) {
if (notification === 'GETDATA') {
var self = this;
self.config = payload;
var structuredData = {};
var completed_devices = 0;
this.getHassReadings(this.config, function(device) {
completed_devices++;
structuredData[device.label] = device;
if (completed_devices == self.config.devices.length) {
self.sendSocketNotification('DATARECEIVED', structuredData);
}
});
} else if (notification === 'HASS_1') {
var self = this;
this.sendHassEvent(this.config, 'media_player', 'select_source', {
'entity_id': 'media_player.menjador',
'source': 'Tria asm'
});
} else if (notification === 'HASS_2') {
var self = this;
this.sendHassEvent(this.config, 'switch', 'turn_on', {
'entity_id': 'switch.cuina'
});
}
}
});