db-vendo-client/p/sbahn-muenchen/index.js
2020-09-15 11:36:24 +02:00

33 lines
712 B
JavaScript

'use strict'
const products = require('./products')
const transformReqBody = (ctx, body) => {
body.client = {type: 'IPH', id: 'DB-REGIO-MVV', name: 'MuenchenNavigator', v: '5010100'}
body.ext = 'DB.R15.12.a'
body.ver = '1.21'
body.auth = {type: 'AID', aid: 'd491MVVhz9ZZts23'}
return body
}
const sBahnMunichProfile = {
locale: 'de-DE',
timezone: 'Europe/Berlin',
endpoint: 'https://s-bahn-muenchen.hafas.de/bin/540/mgate.exe',
salt: Buffer.from('ggnvMVV8RTt67gh1', 'utf8'),
addMicMac: true,
transformReqBody,
products,
departuresGetPasslist: false,
departuresStbFltrEquiv: false,
trip: true,
radar: true,
refreshJourney: true,
reachableFrom: true
}
module.exports = sBahnMunichProfile