2016-08-04 16:32:36 -04:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const constants = require('../initializers/constants')
|
|
|
|
const logger = require('../helpers/logger')
|
|
|
|
|
|
|
|
const adminMiddleware = {
|
2016-10-02 06:19:02 -04:00
|
|
|
ensureIsAdmin
|
2016-08-04 16:32:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function ensureIsAdmin (req, res, next) {
|
|
|
|
const user = res.locals.oauth.token.user
|
|
|
|
if (user.role !== constants.USER_ROLES.ADMIN) {
|
|
|
|
logger.info('A non admin user is trying to access to an admin content.')
|
|
|
|
return res.sendStatus(403)
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = adminMiddleware
|