db-vendo-client/format/station-board-req.js

43 lines
881 B
JavaScript
Raw Permalink Normal View History

2019-10-31 20:08:56 +01:00
const formatStationBoardReq = (ctx, station, type) => {
const {profile, opt} = ctx;
2019-10-31 20:08:56 +01:00
2020-03-09 21:59:17 +01:00
const jnyFltrL = [
profile.formatProductsFilter(ctx, opt.products || {}),
];
2020-03-09 21:59:17 +01:00
if (opt.line !== null) {
jnyFltrL.push({type: 'LINEID', mode: 'INC', value: opt.line});
2020-03-09 21:59:17 +01:00
}
2019-10-31 20:08:56 +01:00
const req = {
type,
date: profile.formatDate(profile, opt.when),
time: profile.formatTime(profile, opt.when),
stbLoc: station,
dirLoc: opt.direction
? profile.formatStation(opt.direction)
: undefined,
2020-03-09 21:59:17 +01:00
jnyFltrL,
dur: opt.duration,
};
if (opt.results !== null) {
req.maxJny = opt.results === Infinity
? 10000
: opt.results;
}
if (profile.departuresGetPasslist) {
req.getPasslist = Boolean(opt.stopovers);
}
if (profile.departuresStbFltrEquiv) {
req.stbFltrEquiv = !opt.includeRelatedStations;
}
2019-10-31 20:08:56 +01:00
return {
meth: 'StationBoard',
req,
};
};
2019-10-31 20:08:56 +01:00
2022-05-07 16:17:37 +02:00
export {
formatStationBoardReq,
};