2017-10-27 10:55:03 -04:00
|
|
|
import * as express from 'express'
|
2017-12-12 11:53:50 -05:00
|
|
|
import 'express-validator'
|
2017-10-27 10:55:03 -04:00
|
|
|
import { UserRight } from '../../shared'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../helpers/logger'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { UserModel } from '../models/account/user'
|
2017-10-27 10:55:03 -04:00
|
|
|
|
|
|
|
function ensureUserHasRight (userRight: UserRight) {
|
|
|
|
return function (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-12-12 11:53:50 -05:00
|
|
|
const user = res.locals.oauth.token.user as UserModel
|
2017-10-27 10:55:03 -04:00
|
|
|
if (user.hasRight(userRight) === false) {
|
2017-12-28 08:29:57 -05:00
|
|
|
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
|
|
|
|
})
|
|
|
|
.end()
|
2017-10-27 10:55:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
ensureUserHasRight
|
|
|
|
}
|