PeerTube/server/core/middlewares/user-right.ts

27 lines
765 B
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
import { HttpStatusCode, UserRightType } from '@peertube/peertube-models'
import { logger } from '../helpers/logger.js'
function ensureUserHasRight (userRight: UserRightType) {
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
}