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