PeerTube/server/middlewares/user-right.ts

24 lines
742 B
TypeScript
Raw Normal View History

import * as express from 'express'
2017-12-12 17:53:50 +01:00
import 'express-validator'
import { UserRight } from '../../shared'
2017-12-28 11:16:08 +01:00
import { logger } from '../helpers/logger'
2017-12-12 17:53:50 +01:00
import { UserModel } from '../models/account/user'
function ensureUserHasRight (userRight: UserRight) {
return function (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-12-12 17:53:50 +01:00
const user = res.locals.oauth.token.user as UserModel
if (user.hasRight(userRight) === false) {
logger.info('User %s does not have right %s to access to %s.', user.username, UserRight[userRight], req.path)
return res.sendStatus(403)
}
return next()
}
}
// ---------------------------------------------------------------------------
export {
ensureUserHasRight
}