-
Notifications
You must be signed in to change notification settings - Fork 1
/
yr.js
45 lines (43 loc) · 1.29 KB
/
yr.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
const fetch = require('node-fetch');
const xml2json = require('xml2json');
const osloYrURL = 'http://www.yr.no/sted/Norge/Oslo/Oslo/Oslo/varsel.xml';
module.exports = (res, imorgen) => {
fetch(osloYrURL)
.then(response => response.text())
.then(response => JSON.parse(xml2json.toJson(response)))
.then(data => {
const perioder = data.weatherdata.forecast.tabular.time;
if (imorgen) {
let subset = perioder;
while (subset[0].period !== "0") {
subset.shift();
}
return subset.slice(0,4);
}
return perioder.slice(0,2);
})
.then(perioder =>
perioder.reduce((sum, periode) => sum + Number(periode.precipitation.value), 0)
)
.then(precipitation => {
if (precipitation < 1) {
res.json({
messages: [
{text: "Ser ut til å bli fint vær! ☀️"}
]
});
} else if (precipitation >=1 && precipitation < 3) {
res.json({
messages: [
{text: `Kan være greit å ha med paraply i ${imorgen ? 'morgen' : 'dag'}, det ser ut til at det skal regne litt! ☔`}
]
});
} else if (precipitation > 3) {
res.json({
messages: [
{text: `Ta frem allværsjakken og paraplyen, i ${imorgen ? 'morgen' : 'dag'} blir det regnvær! ☔`}
]
});
}
});
}