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

                                    

                                                           

                                    
                                


                                
                                    




               
                                           

                                   
                                                     

                                  
                              


                              
                              





                                                                              



                   


                                                                              


                                  

                               
                                                            

                       

   
             
 
import { REMOTE_SCHEME } from '../initializers'

function setBodyHostsPort (req, res, next) {
  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, res, next) {
  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) {
  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
}