mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			769 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			769 B
		
	
	
	
		
			TypeScript
		
	
	
import * as express from 'express'
 | 
						|
import 'express-validator'
 | 
						|
import { UserRight } from '../../shared'
 | 
						|
import { logger } from '../helpers/logger'
 | 
						|
 | 
						|
function ensureUserHasRight (userRight: UserRight) {
 | 
						|
  return function (req: express.Request, res: express.Response, next: express.NextFunction) {
 | 
						|
    const user = res.locals.oauth.token.user
 | 
						|
    if (user.hasRight(userRight) === false) {
 | 
						|
      const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.`
 | 
						|
      logger.info(message)
 | 
						|
 | 
						|
      return res.status(403)
 | 
						|
        .json({
 | 
						|
          error: message
 | 
						|
        })
 | 
						|
        .end()
 | 
						|
    }
 | 
						|
 | 
						|
    return next()
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// ---------------------------------------------------------------------------
 | 
						|
 | 
						|
export {
 | 
						|
  ensureUserHasRight
 | 
						|
}
 |