mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
21 lines
505 B
JavaScript
21 lines
505 B
JavaScript
|
const formatStationBoardReq = (ctx, station, type) => {
|
||
|
const {profile, opt} = ctx;
|
||
|
|
||
|
return {
|
||
|
endpoint: profile.boardEndpoint,
|
||
|
path: type === 'departures' ? 'abfahrten' : 'ankuenfte',
|
||
|
query: {
|
||
|
ortExtId: station,
|
||
|
zeit: profile.formatTimeOfDay(profile, opt.when),
|
||
|
datum: profile.formatDate(profile, opt.when),
|
||
|
mitVias: opt.stopovers || undefined,
|
||
|
verkehrsmittel: profile.formatProductsFilter(ctx, opt.products || {}),
|
||
|
},
|
||
|
method: 'GET',
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export {
|
||
|
formatStationBoardReq,
|
||
|
};
|