2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2021-12-24 04:14:47 -05:00
|
|
|
import { HttpStatusCode, UserRight } from '@shared/models'
|
2021-07-16 08:27:30 -04:00
|
|
|
import { logger } from '../helpers/logger'
|
2017-10-27 10:55:03 -04:00
|
|
|
|
|
|
|
function ensureUserHasRight (userRight: UserRight) {
|
|
|
|
return function (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.user
|
2017-10-27 10:55:03 -04:00
|
|
|
if (user.hasRight(userRight) === false) {
|
2020-08-06 08:58:01 -04:00
|
|
|
const message = `User ${user.username} does not have right ${userRight} to access to ${req.path}.`
|
2017-12-28 08:29:57 -05:00
|
|
|
logger.info(message)
|
|
|
|
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message
|
|
|
|
})
|
2017-10-27 10:55:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
ensureUserHasRight
|
|
|
|
}
|