2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2017-12-19 08:22:38 -05:00
|
|
|
import 'express-validator'
|
2018-04-24 09:10:54 -04:00
|
|
|
import { getHostWithPort } from '../helpers/express-utils'
|
2017-06-10 16:15:25 -04:00
|
|
|
|
|
|
|
function setBodyHostsPort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-01-27 05:55:31 -05:00
|
|
|
if (!req.body.hosts) return next()
|
|
|
|
|
2016-11-14 14:03:04 -05:00
|
|
|
for (let i = 0; i < req.body.hosts.length; i++) {
|
|
|
|
const hostWithPort = getHostWithPort(req.body.hosts[i])
|
2016-10-01 08:23:50 -04:00
|
|
|
|
|
|
|
// Problem with the url parsing?
|
2016-11-14 14:03:04 -05:00
|
|
|
if (hostWithPort === null) {
|
2016-10-01 08:23:50 -04:00
|
|
|
return res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
2016-11-14 14:03:04 -05:00
|
|
|
req.body.hosts[i] = hostWithPort
|
2016-10-01 08:23:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2017-11-23 12:04:48 -05:00
|
|
|
setBodyHostsPort
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|