PeerTube/server/middlewares/servers.ts

27 lines
746 B
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import * as express from 'express'
2018-04-24 15:10:54 +02:00
import { getHostWithPort } from '../helpers/express-utils'
import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
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.sendStatus(HttpStatusCode.INTERNAL_SERVER_ERROR_500)
}
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
}