-
Notifications
You must be signed in to change notification settings - Fork 11
/
node_helper.js
225 lines (184 loc) · 5.38 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
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
'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(devicename, config) {
var url = config.host;
if (config.port) {
url = url + ':' + config.port;
}
url = url + '/api/states/' + devicename;
if (config.apipassword) {
url = url + '?api_password=' + config.apipassword;
}
if(config.debuglogging) {
console.log(url);
}
if (config.https) {
return 'https://' + url;
} else {
return 'http://' + url;
}
},
buildHassEventUrl: function(domain, service, config) {
var url = config.host;
if (config.port) {
url = url + ':' + config.port;
}
url = url + '/api/services/' + domain + '/' + service;
if (config.apipassword) {
url = url + '?api_password=' + config.apipassword;
}
if(config.debuglogging) {
console.log(url);
}
if (config.https) {
return 'https://' + url;
} else {
return 'http://' + url;
}
},
/**
* use fhem alias as label if it is set
* @param {object} device fhem device object
* @return {string}
*/
getDeviceName: function(attributes) {
if (attributes.friendly_name) {
return attributes.friendly_name;
} else {
return attributes.entity_id;
}
},
getReadingsValue: function(readingsName, attributes) {
var values = [];
readingsName.forEach(function(element, index, array) {
var readingName = element;
if (attributes[readingName]) {
values.push(attributes[readingName]);
} else {
values.push('Reading does not exist');
}
});
return values;
},
parseJson: function(index, json) {
var self = this;
if(config.debuglogging) {
console.log(json.attributes);
}
var device = {};
// save value of property 'sensor' an array
var readings = _.pluck(self.config.devices[index].deviceReadings, function(element, index, list) {
return
});
//console.log(readingsName);
device.name = config.devices[index].deviceLabel;
device.values = readings;
return device;
},
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
};
if(config.hassiotoken) {
post_options.headers = { 'Authorization' : 'Bearer ' + process.env.HASSIO_TOKEN };
}
var post_req = request(post_options, function(error, response, body) {
if(config.debuglogging) {
console.log('Response: ' + response.statusCode);
}
});
},
getHassReadings: function(config, callback) {
var self = this;
//console.log(config.devices);
var structuredData = _.each(config.devices, function(device) {
var outDevice = {};
if(config.debuglogging) {
console.log(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.buildHassUrl(element.sensor, config);
console.log('Request URL: ' + url);
urls.push(url);
});
//console.log(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
};
if(config.hassiotoken) {
get_options.headers = { 'Authorization' : 'Bearer ' + process.env.HASSIO_TOKEN };
}
request(get_options, function(error, response, body) {
completed_requests++;
if(config.debuglogging) {
console.log(error);
console.log(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;
console.log(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'
});
}
}
});