22 lines
539 B
JavaScript
22 lines
539 B
JavaScript
'use strict'
|
|
|
|
const constants = require('../initializers/constants')
|
|
const logger = require('../helpers/logger')
|
|
|
|
const adminMiddleware = {
|
|
ensureIsAdmin
|
|
}
|
|
|
|
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
|