Ghost/core/server/services/auth/authorize.js
Hannah Wolfe 273e220327 Moved i18n to shared
refs 829e8ed010

- i18n is used everywhere but only requires shared or external packages, therefore it's a good candidate for living in shared
- this reduces invalid requires across frontend and server, and lets us use it everywhere until we come up with a better option
2021-05-04 13:03:38 +01:00

36 lines
1.1 KiB
JavaScript

const errors = require('@tryghost/errors');
const i18n = require('../../../shared/i18n');
const authorize = {
authorizeContentApi(req, res, next) {
const hasApiKey = req.api_key && req.api_key.id;
const hasMember = req.member;
if (hasApiKey) {
return next();
}
if (hasMember) {
return next();
}
return next(new errors.NoPermissionError({
message: i18n.t('errors.middleware.auth.authorizationFailed'),
context: i18n.t('errors.middleware.auth.missingContentMemberOrIntegration')
}));
},
authorizeAdminApi(req, res, next) {
const hasUser = req.user && req.user.id;
const hasApiKey = req.api_key && req.api_key.id;
if (hasUser || hasApiKey) {
return next();
} else {
return next(new errors.NoPermissionError({
message: i18n.t('errors.middleware.auth.authorizationFailed'),
context: i18n.t('errors.middleware.auth.missingAdminUserOrIntegration')
}));
}
}
};
module.exports = authorize;