X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fuser-right.ts;h=7d53e834125aeaa12226d6a055c5675a27a59cac;hb=6a4905602636afd6650c9e6f4d0fcc2105d91100;hp=4da7b9802516d02c0ac028557e15878dc119bb8a;hpb=c8861d5dc0436ef4342ce517241e3591fa256a13;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/user-right.ts b/server/middlewares/user-right.ts index 4da7b9802..7d53e8341 100644 --- a/server/middlewares/user-right.ts +++ b/server/middlewares/user-right.ts @@ -1,19 +1,18 @@ -import * as express from 'express' -import { UserRight } from '../../shared' +import express from 'express' +import { HttpStatusCode, UserRight } from '@shared/models' 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()