db-vendo-client/parse/location.js
2019-02-28 16:45:31 +01:00

54 lines
1.1 KiB
JavaScript

'use strict'
const {parse} = require('qs')
const POI = 'P'
const STATION = 'S'
const ADDRESS = 'A'
const leadingZeros = /^0+/
// todo: what is s.rRefL?
const parseLocation = (profile, opt, {lines}, l) => {
const res = {type: 'location'}
if (l.crd) {
res.latitude = l.crd.y / 1000000
res.longitude = l.crd.x / 1000000
}
const lid = parse(l.lid, {delimiter: '@'})
const id = (l.extId || lid.L || '').replace(leadingZeros, '') || null
if (l.type === STATION) {
const stop = {
type: l.isMainMast ? 'station' : 'stop',
id,
name: l.name ? profile.parseStationName(l.name) : null,
location: 'number' === typeof res.latitude ? res : null
}
if ('pCls' in l) stop.products = profile.parseProducts(l.pCls)
if (
opt.linesOfStops &&
Array.isArray(l.pRefL) &&
Array.isArray(lines)
) {
stop.lines = []
for (let pRef of l.pRefL) {
const line = lines[pRef]
if (line) stop.lines.push(line)
}
}
return stop
}
if (l.type === ADDRESS) res.address = l.name
else res.name = l.name
if (l.type === POI) res.id = id
return res
}
module.exports = parseLocation