db-vendo-client/p/oebb/index.js

87 lines
2.3 KiB
JavaScript
Raw Normal View History

2017-12-18 23:24:11 +01:00
'use strict'
// todo: https://gist.github.com/anonymous/a5fc856bc80ae7364721943243f934f4#file-haf_config_base-properties-L5
// todo: https://gist.github.com/anonymous/a5fc856bc80ae7364721943243f934f4#file-haf_config_base-properties-L47-L234
2017-12-29 10:01:02 +01:00
const _parseLocation = require('../../parse/location')
const _createParseMovement = require('../../parse/movement')
2017-12-26 00:58:12 +01:00
const products = require('./products')
2017-12-26 00:58:12 +01:00
2017-12-18 23:24:11 +01:00
const transformReqBody = (body) => {
2017-12-29 10:01:02 +01:00
// todo: necessary headers?
body.client = {
type: 'IPA',
id: 'OEBB',
v: '6000500',
name: 'oebbIPAD_ADHOC',
os: 'iOS 10.3.3'
}
2017-12-18 23:24:11 +01:00
// todo: https://gist.github.com/anonymous/a5fc856bc80ae7364721943243f934f4#file-haf_config_base-properties-L33 shows 1.16
2017-12-29 10:01:02 +01:00
body.ver = '1.16'
body.auth = {aid: 'OWDL4fE4ixNiPBBm'}
body.lang = 'de'
2017-12-18 23:24:11 +01:00
return body
}
const parseLocation = (profile, opt, data, l) => {
// ÖBB has some 'stations' **in austria** with no departures/products,
// like station entrances, that are actually POIs.
const res = _parseLocation(profile, opt, data, l)
if (
2018-07-10 23:32:34 +02:00
(res.type === 'station' || res.type === 'stop') &&
!res.products &&
res.name &&
res.id && res.id.length !== 7
) {
return Object.assign({
2017-12-29 10:01:02 +01:00
type: 'location',
id: res.id,
name: res.name
}, res.location)
2017-12-29 10:01:02 +01:00
}
return res
}
2018-06-26 12:25:30 +02:00
const createParseMovement = (profile, opt, data) => {
const _parseMovement = _createParseMovement(profile, opt, data)
2017-12-29 10:01:02 +01:00
const parseMovement = (m) => {
const res = _parseMovement(m)
// filter out POIs
// todo: make use of them, as some of them specify fare zones
res.nextStops = res.nextStops.filter(st => {
const s = st.stop || {}
if (s.station) {
s = s.station
2018-12-06 11:38:46 +01:00
if (s.station.type === 'stop' || s.station.type === 'station') return true
}
return s.type === 'stop' || s.type === 'station'
})
res.frames = res.frames.filter((f) => {
return f.origin.type !== 'location' && f.destination.type !== 'location'
})
2017-12-29 10:01:02 +01:00
return res
}
return parseMovement
}
2017-12-18 23:24:11 +01:00
const oebbProfile = {
locale: 'de-AT',
timezone: 'Europe/Vienna',
// todo: there is also https://beta.verkehrsauskunft.at/bin/mgate.exe
endpoint: 'http://fahrplan.oebb.at/bin/mgate.exe',
2017-12-26 00:58:12 +01:00
transformReqBody,
products: products,
2017-12-26 00:58:12 +01:00
2017-12-29 10:01:02 +01:00
parseLocation,
parseMovement: createParseMovement,
trip: true,
2018-08-26 18:35:27 +02:00
radar: true,
reachableFrom: true
2017-12-18 23:24:11 +01:00
}
module.exports = oebbProfile