1
0
Fork 0
peertube/server/middlewares/user-right.ts

28 lines
805 B
TypeScript
Raw Normal View History

import * as express from 'express'
import { UserRight } from '../../shared'
2017-12-28 10:16:08 +00:00
import { logger } from '../helpers/logger'
2021-07-16 08:42:24 +00:00
import { HttpStatusCode } from '../../shared/models/http/http-error-codes'
function ensureUserHasRight (userRight: UserRight) {
return function (req: express.Request, res: express.Response, next: express.NextFunction) {
2019-03-19 09:35:15 +00:00
const user = res.locals.oauth.token.user
if (user.hasRight(userRight) === false) {
2020-08-06 12:58:01 +00:00
const message = `User ${user.username} does not have right ${userRight} to access to ${req.path}.`
2017-12-28 13:29:57 +00:00
logger.info(message)
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message
})
}
return next()
}
}
// ---------------------------------------------------------------------------
export {
ensureUserHasRight
}