1234567891011121314151617181920212223242526 |
- import * as express from 'express'
- import 'express-validator'
- import { getHostWithPort } from '../helpers/express-utils'
- 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()
- }
- // ---------------------------------------------------------------------------
- export {
- setBodyHostsPort
- }
|