2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2023-07-31 08:34:36 -04:00
|
|
|
import { HttpStatusCode } from '@peertube/peertube-models'
|
|
|
|
import { getHostWithPort } from '../helpers/express-utils.js'
|
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) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.INTERNAL_SERVER_ERROR_500,
|
|
|
|
message: 'Could not parse hosts'
|
|
|
|
})
|
2016-10-01 08:23:50 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|