X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fuser-right.ts;h=4d836485ccc4ec7513170dd3029b1418cc2e84ae;hb=edbc9325462ddf4536775871ebc25e06f46612d1;hp=bcebe9d7f09797c57988de94fcf58ac1556b549a;hpb=954605a804da399317ca62afa2fb9244afa11ebf;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/user-right.ts b/server/middlewares/user-right.ts index bcebe9d7f..4d836485c 100644 --- a/server/middlewares/user-right.ts +++ b/server/middlewares/user-right.ts @@ -1,16 +1,15 @@ -import 'express-validator' import * as express from 'express' - -import { UserInstance } from '../models' import { UserRight } from '../../shared' -import { logger } from '../helpers' +import { logger } from '../helpers/logger' function ensureUserHasRight (userRight: UserRight) { return function (req: express.Request, res: express.Response, next: express.NextFunction) { - const user: UserInstance = res.locals.oauth.token.user + const user = res.locals.oauth.token.user if (user.hasRight(userRight) === false) { - logger.info('User %s does not have right %s to access to %s.', user.username, UserRight[userRight], req.path) - return res.sendStatus(403) + const message = `User ${user.username} does not have right ${UserRight[userRight]} to access to ${req.path}.` + logger.info(message) + + return res.status(403).json({ error: message }) } return next()