PeerTube/server/middlewares/servers.ts

30 lines
798 B
TypeScript
Raw Normal View History

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) {
if (!req.body.hosts) return next()
for (let i = 0; i < req.body.hosts.length; i++) {
const hostWithPort = getHostWithPort(req.body.hosts[i])
// Problem with the url parsing?
if (hostWithPort === null) {
return res.fail({
status: HttpStatusCode.INTERNAL_SERVER_ERROR_500,
message: 'Could not parse hosts'
})
}
req.body.hosts[i] = hostWithPort
}
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
}