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

27 lines
743 B
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2021-12-24 09:14:47 +00:00
import { HttpStatusCode, UserRight } from '@shared/models'
2021-07-16 12:27:30 +00:00
import { logger } from '../helpers/logger'
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
}