X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fuser-right.ts;h=ea95b16c2d8550f9cb6fc30636bb3b9b2d94af4e;hb=3455c2656e257ae3d9b4169af58b6889d9904148;hp=498e3d677738aa9b9d9df2774d259ad867830637;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/user-right.ts b/server/middlewares/user-right.ts index 498e3d677..ea95b16c2 100644 --- a/server/middlewares/user-right.ts +++ b/server/middlewares/user-right.ts @@ -1,20 +1,19 @@ -import * as express from 'express' -import 'express-validator' +import express from 'express' import { UserRight } from '../../shared' +import { HttpStatusCode } from '../../shared/models/http/http-error-codes' import { logger } from '../helpers/logger' function ensureUserHasRight (userRight: UserRight) { 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[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.fail({ + status: HttpStatusCode.FORBIDDEN_403, + message + }) } return next()