-
Notifications
You must be signed in to change notification settings - Fork 0
/
atb.js
57 lines (48 loc) · 1.52 KB
/
atb.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
const request = require('request');
const QuickXML = require('./quickxml');
const minskjermApi = "http://st.atb.no/New/minskjerm/DataHandler.ashx?type=departureTimes&lang={{lang}}";
class ATB {
constructor(lang) {
this.minskjermApi = minskjermApi.replace("{{lang}}", lang);
}
stopsToQueryParam(stops) {
return stops.map((stop) => [
1,
stop.id,
stop.line,
stop.name
].join(',')).join('|');
}
getDepartureTimes(stops, rows, visMode) {
return new Promise((resolve, reject) => {
rows = rows || 5;
visMode = visMode || 2;
const formData = {
terminal: this.stopsToQueryParam(stops),
rows: rows,
visMode: visMode
};
const options = {
url: this.minskjermApi,
method: 'POST',
form: formData
};
try {
request(options, (error, response, body) => {
if (!error && (response.statusCode == 200 || response.statusCode == 304)) {
resolve(QuickXML.xmlToObj(body));
} else {
reject({
error: error,
formData: formData,
status: response ? response.statusCode : 0
});
}
});
} catch(e) {
reject(e.toString());
}
});
}
}
module.exports = ATB;