more granular overriding of defaults

This commit is contained in:
Jannis R 2016-06-26 18:14:41 +02:00
parent 5b0a4034cf
commit 09866a9a08

View file

@ -5,37 +5,48 @@ const parse = require('./parse')
const onData = (d) => { const id = (x) => x
if (!d.common) return d const defaults = {
const c = d.common onBody: id,
if (Array.isArray(c.locL)) d.locations = c.locL.map(parse.location) onReq: id,
if (Array.isArray(c.prodL)) d.products = c.prodL.map(parse.product) onLocation: parse.location,
if (Array.isArray(c.remL)) d.remarks = c.remL.map(parse.remark) onProduct: parse.product,
if (Array.isArray(c.opL)) d.agencies = c.opL.map(parse.agency) onRemark: parse.remark,
return d onAgency: parse.agency
} }
const request = (cfg) => (data) => {
let body = {lang: 'en', svcReqL: [data]}
if (cfg.onBody) body = cfg.onBody(body)
let req = {
const request = (opt) => {
opt = Object.assign({}, defaults, opt)
return (data) => {
const body = opt.onBody({lang: 'en', svcReqL: [data]})
const req = opt.onReq({
json: true, body: JSON.stringify(body), json: true, body: JSON.stringify(body),
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
'Accept-Encoding': 'gzip, deflate' 'Accept-Encoding': 'gzip, deflate'
} }
} })
if (cfg.onReq) req = cfg.onReq(req)
return got.post(cfg.endpoint, req) return got.post(opt.endpoint, req)
.then((res) => { .then((res) => {
if (res.body.err) return new Error(res.body.err) const b = res.body
if (!res.body.svcResL || !res.body.svcResL[0]) return new Error('invalid response')
const data = res.body.svcResL[0] if (b.err) return new Error(b.err)
if (data.err !== 'OK') return new Error(data.errTxt) if (!b.svcResL || !b.svcResL[0]) return new Error('invalid response')
return cfg.onData || onData(data.res) if (b.svcResL[0].err !== 'OK') return new Error(b.svcResL[0].errTxt)
}).catch(console.error) const d = b.svcResL[0].res
const c = d.common || {}
if (Array.isArray(c.locL)) d.locations = c.locL.map(opt.onLocation)
if (Array.isArray(c.prodL)) d.products = c.prodL.map(opt.onProduct)
if (Array.isArray(c.remL)) d.remarks = c.remL.map(opt.onRemark)
if (Array.isArray(c.opL)) d.agencies = c.opL.map(opt.onAgency)
return d
}).catch((err) => err)
}
} }
module.exports = request module.exports = request