2021-08-27 07:32:44 -05:00
|
|
|
import express from 'express'
|
2021-07-16 03:42:24 -05:00
|
|
|
import { HttpStatusCode } from '../../shared/models/http/http-error-codes'
|
2021-07-16 07:27:30 -05:00
|
|
|
import { getHostWithPort } from '../helpers/express-utils'
|
2017-06-10 15:15:25 -05:00
|
|
|
|
|
|
|
function setBodyHostsPort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-01-27 04:55:31 -06:00
|
|
|
if (!req.body.hosts) return next()
|
|
|
|
|
2016-11-14 13:03:04 -06:00
|
|
|
for (let i = 0; i < req.body.hosts.length; i++) {
|
|
|
|
const hostWithPort = getHostWithPort(req.body.hosts[i])
|
2016-10-01 07:23:50 -05:00
|
|
|
|
|
|
|
// Problem with the url parsing?
|
2016-11-14 13:03:04 -06:00
|
|
|
if (hostWithPort === null) {
|
2021-05-31 18:36:53 -05:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.INTERNAL_SERVER_ERROR_500,
|
|
|
|
message: 'Could not parse hosts'
|
|
|
|
})
|
2016-10-01 07:23:50 -05:00
|
|
|
}
|
|
|
|
|
2016-11-14 13:03:04 -06:00
|
|
|
req.body.hosts[i] = hostWithPort
|
2016-10-01 07:23:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
2017-11-23 11:04:48 -06:00
|
|
|
setBodyHostsPort
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|