PeerTube/server/middlewares/user-right.ts

30 lines
833 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) {
2017-12-28 14:29:57 +01:00
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
}