2020-02-06 16:25:21 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2020-02-06 16:25:21 +01:00
|
|
|
const products = require('./products')
|
|
|
|
|
|
|
|
const vsnProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2020-02-06 16:25:21 +01:00
|
|
|
locale: 'de-DE',
|
|
|
|
timezone: 'Europe/Berlin',
|
|
|
|
// https://gist.github.com/n0emis/3b6887572793f4f54da9d83b30548332#file-haf_config_base-properties-L31
|
|
|
|
// https://runkit.com/derhuerst/hafas-decrypt-encrypted-mac-salt
|
2021-04-18 19:02:54 +02:00
|
|
|
salt: Buffer.from('SP31mBufSyCLmNxp', 'utf8'),
|
2020-02-06 16:25:21 +01:00
|
|
|
addMicMac: true,
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
refreshJourneyUseOutReconL: true,
|
2020-02-06 16:25:21 +01:00
|
|
|
trip: true,
|
|
|
|
radar: true,
|
|
|
|
reachableFrom: true,
|
|
|
|
departuresGetPasslist: false,
|
|
|
|
departuresStbFltrEquiv: false
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = vsnProfile
|