]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/middlewares/user-right.ts
Merge branch 'signup-hooks' into 'develop'
[github/Chocobozzz/PeerTube.git] / server / middlewares / user-right.ts
... / ...
CommitLineData
1import * as express from 'express'
2import { UserRight } from '../../shared'
3import { logger } from '../helpers/logger'
4
5function ensureUserHasRight (userRight: UserRight) {
6 return function (req: express.Request, res: express.Response, next: express.NextFunction) {
7 const user = res.locals.oauth.token.user
8 if (user.hasRight(userRight) === false) {
9 const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.`
10 logger.info(message)
11
12 return res.status(403)
13 .json({
14 error: message
15 })
16 .end()
17 }
18
19 return next()
20 }
21}
22
23// ---------------------------------------------------------------------------
24
25export {
26 ensureUserHasRight
27}