1 import * as express from 'express'
2 import 'express-validator'
3 import { UserRight } from '../../shared'
4 import { logger } from '../helpers/logger'
5 import { UserModel } from '../models/account/user'
7 function ensureUserHasRight (userRight: UserRight) {
8 return function (req: express.Request, res: express.Response, next: express.NextFunction) {
9 const user = res.locals.oauth.token.user as UserModel
10 if (user.hasRight(userRight) === false) {
11 const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.`
14 return res.status(403)
25 // ---------------------------------------------------------------------------