mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			785 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			785 B
		
	
	
	
		
			TypeScript
		
	
	
import express from 'express'
 | 
						|
import { HttpStatusCode } from '@peertube/peertube-models'
 | 
						|
import { getHostWithPort } from '../helpers/express-utils.js'
 | 
						|
 | 
						|
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
 | 
						|
}
 |