mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
118 lines
2 KiB
JavaScript
118 lines
2 KiB
JavaScript
'use strict'
|
|
|
|
// DB Busradar NRW app does not allow selecting specific modes of transport to filter results,
|
|
// so the bitmasks had to be determined by querying some stations and looking at the results..
|
|
const products = [
|
|
{
|
|
id: 'nationalExpress',
|
|
mode: 'train',
|
|
bitmasks: [1],
|
|
name: 'InterCityExpress',
|
|
short: 'ICE',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'national',
|
|
mode: 'train',
|
|
bitmasks: [2],
|
|
name: 'InterCity & EuroCity',
|
|
short: 'IC/EC',
|
|
default: true
|
|
},
|
|
// 4: not always used, could not be confirmed..
|
|
{
|
|
id: 'regionalExp',
|
|
mode: 'train',
|
|
bitmasks: [4],
|
|
name: 'Regionalexpress',
|
|
short: 'RE',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'regional',
|
|
mode: 'train',
|
|
bitmasks: [8],
|
|
name: 'Regionalzug',
|
|
short: 'RB/RE',
|
|
default: true
|
|
},
|
|
// 16: often appears together with 8 even when there are only S-Bahn trains at the station
|
|
{
|
|
id: 'suburban',
|
|
mode: 'train',
|
|
bitmasks: [16],
|
|
name: 'S-Bahn',
|
|
short: 'S',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'bus',
|
|
mode: 'bus',
|
|
bitmasks: [32],
|
|
name: 'Bus',
|
|
short: 'Bus',
|
|
default: true
|
|
},
|
|
// 64, 128, 256: could not be confirmed
|
|
{
|
|
id: 'ferry',
|
|
mode: 'watercraft',
|
|
bitmasks: [64],
|
|
name: 'Ferry',
|
|
short: 'F',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'subway',
|
|
mode: 'train',
|
|
bitmasks: [128],
|
|
name: 'U-Bahn',
|
|
short: 'U',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'tram',
|
|
mode: 'train',
|
|
bitmasks: [256],
|
|
name: 'Tram',
|
|
short: 'T',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'taxi',
|
|
mode: 'taxi',
|
|
bitmasks: [512],
|
|
name: 'AnrufSammelTaxi',
|
|
short: 'AST',
|
|
default: true
|
|
}
|
|
]
|
|
|
|
const transformReqBody = (body) => {
|
|
body.client = {
|
|
id: 'DB-REGIO',
|
|
name: 'DB Busradar NRW',
|
|
os: 'Android 9',
|
|
type: 'AND',
|
|
v: 100021
|
|
}
|
|
body.ext = 'DB.REGIO.1'
|
|
body.ver = '1.10'
|
|
body.auth = {type: 'AID', aid: 'OGBAqytjHhCvr0J4'}
|
|
return body
|
|
}
|
|
|
|
const dbBusradarNrwProfile = {
|
|
locale: 'de-DE',
|
|
timezone: 'Europe/Berlin',
|
|
endpoint: 'https://db-regio.hafas.de/bin/hci/mgate.exe',
|
|
transformReqBody,
|
|
|
|
products: products,
|
|
|
|
trip: true,
|
|
radar: true
|
|
}
|
|
|
|
module.exports = dbBusradarNrwProfile
|
|
|