PeerTube/server/middlewares/user-right.ts

28 lines
800 B
TypeScript
Raw Normal View History

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