X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fuser-right.ts;h=45dda4781211f9a5a85221bd47df989647fcda90;hb=eb34ec30e0b57286fc6f85160490d2e973a3b0b1;hp=7cea7aa1e6c0e34eb2e812df4024956da44d7cc8;hpb=eec63bbc0f4fdb39e56f37127b35c449f90a135f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/user-right.ts b/server/middlewares/user-right.ts index 7cea7aa1e..45dda4781 100644 --- a/server/middlewares/user-right.ts +++ b/server/middlewares/user-right.ts @@ -1,21 +1,17 @@ import * as express from 'express' -import 'express-validator' import { UserRight } from '../../shared' import { logger } from '../helpers/logger' -import { UserModel } from '../models/account/user' +import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes' function ensureUserHasRight (userRight: UserRight) { return function (req: express.Request, res: express.Response, next: express.NextFunction) { - const user = res.locals.oauth.token.user as UserModel + const user = res.locals.oauth.token.user if (user.hasRight(userRight) === false) { - const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.` + const message = `User ${user.username} does not have right ${userRight} to access to ${req.path}.` logger.info(message) - return res.status(403) - .json({ - error: message - }) - .end() + return res.status(HttpStatusCode.FORBIDDEN_403) + .json({ error: message }) } return next()