aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/servers.ts
blob: 9aa56bc93399478bd3894d899eea0f367af11cbb (plain) (tree)
1
2
3
4
5
6
7
8
9
                                  
                                                          
                                                                               
 
                                                                                                     

                                    

                                                           

                                    
                                



                                                         

     
                                    




               

                                                                              
        
                  
 
import * as express from 'express'
import { getHostWithPort } from '../helpers/express-utils'
import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'

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()
}

// ---------------------------------------------------------------------------

export {
  setBodyHostsPort
}