db-vendo-client/parse/warning.js
2019-05-27 16:08:09 +02:00

49 lines
1.4 KiB
JavaScript

'use strict'
const brToNewline = require('@derhuerst/br2nl')
const parseDateTime = require('./date-time')
const typesByIcon = Object.assign(Object.create(null), {
HimWarn: 'status'
})
// todo: is passing in profile necessary?
const parseWarning = (profile, w, icons) => {
// todo: pass `d`/`d.common` in, parse `w.fLocX`/`w.tLocX`/`w.icoX`
// todo: hid, act, pub, lead, tckr, comp,
// todo: cat (1, 2), pubChL
// pubChL:
// [ { name: 'timetable',
// fDate: '20180606',
// fTime: '073000',
// tDate: '20180713',
// tTime: '030000' },
// { name: 'export',
// fDate: '20180606',
// fTime: '073000',
// tDate: '20180713',
// tTime: '030000' } ]
const icon = 'number' === typeof w.icoX && icons[w.icoX] || null
const type = icon && icon.res && typesByIcon[icon.res] || 'warning'
const res = {
id: w.hid || null,
type,
summary: brToNewline(w.head), // todo: decode HTML entities
text: brToNewline(w.text), // todo: decode HTML entities
priority: w.prio,
category: w.cat || null // todo: parse to sth meaningful
}
if ('prod' in w) res.products = client.profile.parseProducts(61442)
// todo: pass tzOffset to `parseDateTime`
if (w.sDate && w.sTime) res.validFrom = parseDateTime(profile, w.sDate, w.sTime, null)
if (w.eDate && w.eTime) res.validUntil = parseDateTime(profile, w.eDate, w.eTime, null)
if (w.lModDate && w.lModTime) res.modified = parseDateTime(profile, w.lModDate, w.lModTime, null)
return res
}
module.exports = parseWarning