blob: eaf9aa144a7806b9532b8356d1375543e9c1ec50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import 'express-validator'
import * as express from 'express'
import { REMOTE_SCHEME } from '../initializers'
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()
}
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()
}
// ---------------------------------------------------------------------------
export {
setBodyHostsPort,
setBodyHostPort
}
// ---------------------------------------------------------------------------
function getHostWithPort (host: string) {
const splitted = host.split(':')
// The port was not specified
if (splitted.length === 1) {
if (REMOTE_SCHEME.HTTP === 'https') return host + ':443'
return host + ':80'
}
return host
}
|