You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
27 lines
765 B
TypeScript
27 lines
765 B
TypeScript
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) {
|
|||
const user = res.locals.oauth.token.user
|
|||
if (user.hasRight(userRight) === false) {
|
|||
const message = `User ${user.username} does not have right ${userRight} to access to ${req.path}.`
|
|||
logger.info(message)
|
|||
|
|||
return res.fail({
|
|||
status: HttpStatusCode.FORBIDDEN_403,
|
|||
message
|
|||
})
|
|||
}
|
|||
|
|||
return next()
|
|||
}
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
ensureUserHasRight
|
|||
}
|