-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarksky-net.js
80 lines (69 loc) · 2.03 KB
/
darksky-net.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
'use strict';
const req = require('request');
const moment = require('moment');
const queryString = require('query-string');
class DarkSkyNET {
constructor(apiKey) {
this.apiKey = apiKey;
this.long = null;
this.lat = null;
this.t = null;
this.query = {}
}
longitude(long) {
!long ? Error('long value not provided.') : long;
this.long = long;
return this;
}
latitude(lat) {
!lat ? Error('lat value not provided.') : lat;
this.lat = lat;
return this;
}
time(time) {
if (!time) {
return this;
} else {
this.t = moment(time).format('YYYY-MM-DDTHH:mm:ss');
return this;
}
}
units(unit) {
!unit ? null : this.query.units = unit;
return this;
}
language(lang){
!lang ? null : this.query.lang = lang;
return this;
}
exclude(blocks){
!blocks ? null : this.query.exclude = blocks;
return this;
}
extendHourly(param){
param ? this.query.extend = 'hourly' : null;
return this ;
}
generateReqUrl() {
this.url = `https://api.darksky.net/forecast/${this.apiKey}/${this.lat},${this.long}`;
this.t ? this.url += `,${this.t}` : this.url;
this.query ? this.url += `?${queryString.stringify(this.query)}` : this.url;
}
get() {
return new Promise((resolve, reject) => {
this.generateReqUrl();
req(this.url, (err, res, body) => {
if (!err && res.statusCode == 200) {
resolve(body);
} else {
if(res === undefined || res === null) {
reject(`Script Error: ${err} \nAPI Response: res undefined`);
} else {
reject(`Script Error: ${err} \nAPI Response: ${res.statusCode} :: ${res.statusMessage}`);
}
}
})
})
}
}
module.exports = DarkSkyNET