PeerTube/server/middlewares/pods.ts

59 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import 'express-validator'
import * as express from 'express'
2017-05-22 20:58:25 +02:00
import { REMOTE_SCHEME } from '../initializers'
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(500)
}
req.body.hosts[i] = hostWithPort
}
return next()
}
2017-06-10 22:15:25 +02:00
function setBodyHostPort (req: express.Request, res: express.Response, next: express.NextFunction) {
if (!req.body.host) return next()
const hostWithPort = getHostWithPort(req.body.host)
// Problem with the url parsing?
if (hostWithPort === null) {
return res.sendStatus(500)
}
req.body.host = hostWithPort
return next()
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
setBodyHostsPort,
setBodyHostPort
}
// ---------------------------------------------------------------------------
2017-06-10 22:15:25 +02:00
function getHostWithPort (host: string) {
const splitted = host.split(':')
// The port was not specified
if (splitted.length === 1) {
2017-05-22 20:58:25 +02:00
if (REMOTE_SCHEME.HTTP === 'https') return host + ':443'
return host + ':80'
}
return host
}