-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
543 lines (432 loc) · 13.9 KB
/
app.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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
'use strict';
const Log = require('homey-log').Log;
const YahooWeather = require('./node-yahoo-weather');
const moment = require('moment');
let defaultLocation = {
latitude: undefined,
longitude: undefined,
};
const language = Homey.manager('i18n').getLanguage();
module.exports.init = function init() {
// Create location promise
const locationPromise = new Promise((resolve, reject) => {
// Ask Homey for current location
Homey.manager('geolocation').getLocation((err, location) => {
// Reject or resolve the promise
if (err) reject(err);
else {
// Store as default
if (typeof location.latitude !== 'undefined' && typeof location.longitude !== 'undefined') {
console.log(`Yahoo Weather: found location data, lat ${location.latitude} and lng ${location.longitude}`);
// Make copy of value to prevent disappearing through reference
defaultLocation = JSON.parse(JSON.stringify(location));
// Resolve
resolve({ latitude: location.latitude, longitude: location.longitude });
}
}
});
});
// Listen for changes in weather on current location
listenForWeatherChanges(locationPromise);
// Start listening for incoming speech events
listenForSpeechEvents(locationPromise);
};
/**
* Listen for weather changes and trigger flows
* when detected.
* @param locationPromise
*/
function listenForWeatherChanges(locationPromise) {
// Wait for location data to be fetched
Promise.all([locationPromise]).then(data => {
// Make copy of location object
const location = JSON.parse(JSON.stringify(checkLocation(data[0])));
// Check for valid location
if (location) {
console.log('Yahoo Weather: start listening for weather changes...');
// Create yahoo weather api instance
const yahooAPI = new YahooWeather({
temp_metric: 'c',
latitude: location.latitude,
longitude: location.longitude,
polling: true,
});
// Listen for weather changes
yahooAPI.on('wind_chill', value => {
// Trigger wind chill flow(degrees)
Homey.manager('flow').trigger('wind_chill', {
degrees: parseFloat(value),
});
})
.on('wind_direction', value => {
// Trigger wind direction flow (degrees)
Homey.manager('flow').trigger('wind_direction', {
degrees: parseFloat(value),
});
})
.on('wind_speed', value => {
// Trigger wind speed flow (kph)
Homey.manager('flow').trigger('wind_speed', {
kph: parseFloat(value),
});
})
.on('atmosphere_humidity', value => {
// Trigger atmosphere humidity flow (mb)
Homey.manager('flow').trigger('atmosphere_humidity', {
percent: parseFloat(value),
});
})
.on('atmosphere_pressure', value => {
// Trigger atmosphere pressure flow (percentage)
Homey.manager('flow').trigger('atmosphere_pressure', {
mb: parseFloat(value),
});
})
.on('atmosphere_visibility', value => {
// Trigger atmosphere visibility flow (km)
Homey.manager('flow').trigger('atmosphere_visibility', {
km: parseFloat(value),
});
})
.on('astronomy_sunrise', value => {
// Trigger atmosphere sunrise flow (hour)
Homey.manager('flow').trigger('astronomy_sunrise', {
astronomy_sunrise: moment(value, ['h:mm A']).format('HH:mm'),
});
})
.on('astronomy_sunset', value => {
// Trigger atmosphere sunset flow (hour)
Homey.manager('flow').trigger('astronomy_sunset', {
astronomy_sunset: moment(value, ['h:mm A']).format('HH:mm'),
});
})
.on('temperature', value => {
// Trigger temperature flow (degrees Celsius)
Homey.manager('flow').trigger('temperature', {
temperature: parseFloat(value),
});
});
// When triggered, get latest structure data and check if status is home or not
Homey.manager('flow').on('condition.atmosphere_rising', (callback, args) => {
// Check for proper incoming arguments
if (args != null && args.status) {
yahooAPI.get('atmosphere_rising', (err, result) => {
// Parse result
let status = 'steady';
if (parseInt(result, 10) === 0) status = 'steady';
else if (parseInt(result, 10) === 1) status = 'rising';
else if (parseInt(result, 10) === 2) status = 'falling';
// Callback result
callback(err, (status === args.status));
});
} else {
callback(true, false);
}
});
Homey.manager('flow').on('condition.temperature', temperature);
Homey.manager('flow').on('condition.wind_speed', windspeed);
}
});
}
function temperature(callback, args) {
console.log('temp check!');
if (temperature > args.variable) {
callback(null, true);
}
else callback(null, false);
}
function windspeed(callback, args) {
console.log('winspeed check!');
if (windspeed > args.variable) {
callback(null, true);
}
else callback(null, false);
}
/**
* Start listening for incoming speech events
* @param locationPromise Promise object that needs
* to be resolved before calls can be made to yahoo
* api (lat lon is needed).
*/
function listenForSpeechEvents(locationPromise) {
console.log('Yahoo Weather: start listening for speech events...');
// Listen on speech input
Homey.manager('speech-input').on('speech', (speech, callback) => {
if (speech.allZones && speech.allZones.length > 0) {
return callback(new Error("user is asking about a zone, not a location"));
}
return callback(null, true);
})
// Listen on winning speech input
Homey.manager('speech-input').on('speechMatch', speech => {
console.log('Yahoo Weather: incoming speech event');
console.log(speech);
console.log(speech.times);
// Create options object for creating response
const options = {
weatherRequest: false,
temperatureRequest: false,
date: 'current',
language: language,
dateTranscript: __('general.current')
};
// Say something to indicate processing
if (Math.round(Math.random()) === 1) {
speech.say(__('general.wait1'));
} else {
speech.say(__('general.wait2'));
}
// If no response after 10 seconds abort
const timeout = setTimeout(() => {
options.abort = true;
speech.say(__('general.yahoo_timeout'));
}, 10000);
// Parse speech triggers to options
if (!options.abort) {
parseSpeech(speech, options);
} else {
clearTimeout(timeout);
}
console.log('Yahoo Weather: parsing speech object done, fetching weather data information...');
if (!options.abort) {
// Fetch weather data
fetchWeatherData(locationPromise, speech, options).then(data => {
console.log('Yahoo Weather: fetching weather data done');
// Clear timeout we have got a response
clearTimeout(timeout);
// Use received data to create response to speech request
prepareResponse(speech, options, data);
console.log('Yahoo Weather: prepare response done');
}).catch(err => {
console.log('Error fetching weather data: ', err);
clearTimeout(timeout);
});
} else {
clearTimeout(timeout);
}
});
}
/**
* Parse the found speech triggers into a usable
* options object in order to create an accurate
* response.
* @param speech
* @param options
*/
function parseSpeech(speech, options) {
//set options based on speech info
const requestType = (speech.matches.weatherRequest) ? 'weatherRequest' : 'temperatureRequest';
options[requestType] = true;
//store location if present
if (speech.matches[requestType].LOCATION)
options.location = speech.matches[requestType].LOCATION;
//parse time
parseSpeechTime(speech, options);
}
/**
* Parse the time object provided by the speech
* object, this in order to give accurate and timely
* data to the user.
* @param speech
* @param options
*/
function parseSpeechTime(speech, options) {
// Multiple times
if (speech.times.length > 1) {
// Let user know this cant be handled yet
say(__('general.confused'), {}, speech);
options.abort = true;
} else if (speech.times.length > 0) {
// Parse data in usable date
if (speech.times[0].time.future ) {
options.date = moment(speech.times[0].time.future).format('DD MMM YYYY');
options.dateTranscript = speech.times[0].transcript;
// Check if the parsed date is today, then use today mode
if (options.date === moment().format('DD MMM YYYY')) {
options.date = 'today';
options.dateTranscript = __('general.today');
}
} else if (speech.times[0].time.past && moment(speech.times[0].time.past).format('DD MMM YYYY') === moment().format('DD MMM YYYY') ) {
//today
options.date = 'today';
options.dateTranscript = __('general.today');
} else {
//in the past
// Let user know this cant be handled yet
say(__('general.confused'), {}, speech);
options.abort = true;
}
}
}
/**
* Fetch the weather data from the Yahoo api
* @param locationPromise Promise to wait fore before
* making a request.
* @param speech
* @param options
* @returns {Promise}
*/
function fetchWeatherData(locationPromise, speech, options) {
return new Promise((resolve, reject) => {
// Wait for location data to be fetched
Promise.all([locationPromise]).then(locationData => {
// Make copy of location object
const location = JSON.parse(JSON.stringify(checkLocation(locationData[0])));
// Check for valid location
if (location) {
// Remove Homey location if alternative is provided
if (options.location) {
location.latitude = undefined;
location.longitude = undefined;
}
// Create yahoo weather api instance
const yahooAPI = new YahooWeather({
temp_metric: 'c',
latitude: location.latitude,
longitude: location.longitude,
location: options.location,
});
// Fetch weather data
yahooAPI.fetchData().then(data => {
// Resolve promise with formatted data
resolve(data);
}).catch(err => {
// Handle unknown location
if (err && (err.message === 'converting location to woeid' || err.message === 'no data')) {
options.abort = true;
say(__('general.no_data_on_location'), {}, speech);
} else if (err === 'no_info_location') {
options.abort = true;
speech.say(__('general.no_data_on_location'));
} else {
options.abort = true;
say(__('general.error'), {}, speech);
}
reject(err);
});
} else {
options.abort = true;
say(__('general.error'), {}, speech);
}
});
});
}
/**
* Prepare the data for creating the response,
* select data according to request of user
* @param speech
* @param options
* @param data
*/
function prepareResponse(speech, options, data) {
// Get forecast for specified date
switch (options.date) {
case 'current':
// Let Homey say response
say(createResponse(options, data.current), options, speech);
break;
case 'today':
// Let Homey say response
say(createResponse(options, data.forecasts[0]), options, speech);
break;
default:
// Loop over forecasts to see if matching date is available
let x;
for (x in data.forecasts) {
if (data.forecasts[x].date === options.date) {
break;
}
}
// Let Homey say response
say(createResponse(options, data.forecasts[x]), options, speech);
}
}
/**
* Create the response for the users request
* @param options
* @param data
* @returns {*} String that Homey will pronounce
*/
function createResponse(options, data) {
console.log('Yahoo Weather: creating response...');
if (options.weatherRequest) {
//add some variation to the responses
let form;
// Check whether adjective is present
if (data.text.adjective && data.text.adjective[options.language]
&& data.text.noun && data.text.noun[options.language]) {
form = (Math.round(Math.random()) === 1) ? 'adjective' : 'noun';
} else if (data.text.adjective && data.text.adjective[options.language]) {
form = 'adjective';
} else {
form = 'noun';
}
const responseProperties = {
weather: data.text[form][options.language],
moment: options.dateTranscript,
location: (options.location) ? ` ${__('general.in')} ${options.location}` : ""
}
// Check if asked for forecast or right now
if (options.date === 'current') {
responseProperties.prefix = (data.text[form].plural) ? __('general.are') : __('general.is');
responseProperties.temperature = data.temperature;
return __(`weather.current.${form}`, responseProperties);
} else{
// Create sentence for today or date
responseProperties.prefix = (data.text[form].plural) ? __('general.will_plural') : __('general.will_singular');
responseProperties.low = data.low;
responseProperties.high = data.high;
return __(`weather.date.${form}`, responseProperties);
}
} else if (options.temperatureRequest) {
if (options.date === 'current') {
return __('temperature.current', {
temperature: data.temperature,
location: (options.location) ? ` ${__('general.in')} ${options.location}` : "",
});
} else {
return __('temperature.date', {
prefix: (options.date === 'today') ? __('general.ranges') : __('general.will_range'),
moment: options.dateTranscript,
location: (options.location) ? ` ${__('general.in')} ${options.location}` : "",
low: data.low,
high: data.high,
});
}
}
return __('general.no_forecast');
}
/**
* Takes a string and options object and
* makes Homey speak the response, also used
* for post-processing the created response.
* @param text
* @param options
* @param speech
*/
function say(text, options, speech) {
console.log(`Yahoo Weather: let Homey say: ${text}`);
// Make Homey talk!
speech.say(text);
}
/**
* Checks location object,
* returns location object if
* valid, or defaultLocation object
* of false if everything fails.
* @param location
* @returns {*}
*/
function checkLocation(location) {
// Check valid location
if ((typeof location.latitude === 'undefined'
|| typeof location.longitude === 'undefined')
) {
if (typeof defaultLocation.latitude !== 'undefined'
&& typeof defaultLocation.longitude !== 'undefined') {
return defaultLocation;
}
return false;
}
return location;
}