PeerTube/server/middlewares/admin.ts

21 lines
515 B
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import 'express-validator'
import * as express from 'express'
2017-05-22 20:58:25 +02:00
import { logger } from '../helpers'
2017-06-10 22:15:25 +02:00
function ensureIsAdmin (req: express.Request, res: express.Response, next: express.NextFunction) {
const user = res.locals.oauth.token.user
2017-04-26 21:42:36 +02:00
if (user.isAdmin() === false) {
logger.info('A non admin user is trying to access to an admin content.')
return res.sendStatus(403)
}
return next()
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
ensureIsAdmin
}