2016-09-30 06:45:59 -05:00
|
|
|
var passport = require('passport'),
|
2017-03-01 05:12:03 -05:00
|
|
|
authUtils = require('./utils'),
|
2016-09-30 06:45:59 -05:00
|
|
|
errors = require('../errors'),
|
2016-11-09 10:01:07 -05:00
|
|
|
models = require('../models'),
|
2016-09-30 06:45:59 -05:00
|
|
|
events = require('../events'),
|
|
|
|
i18n = require('../i18n'),
|
|
|
|
authenticate;
|
2015-10-22 08:28:47 -05:00
|
|
|
|
2016-09-30 06:45:59 -05:00
|
|
|
authenticate = {
|
2015-10-22 08:28:47 -05:00
|
|
|
// ### Authenticate Client Middleware
|
|
|
|
authenticateClient: function authenticateClient(req, res, next) {
|
|
|
|
// skip client authentication if bearer token is present
|
2017-03-01 05:12:03 -05:00
|
|
|
if (authUtils.getBearerAutorizationToken(req)) {
|
2015-10-22 08:28:47 -05:00
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.query && req.query.client_id) {
|
|
|
|
req.body.client_id = req.query.client_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.query && req.query.client_secret) {
|
|
|
|
req.body.client_secret = req.query.client_secret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!req.body.client_id || !req.body.client_secret) {
|
2016-10-06 07:27:35 -05:00
|
|
|
return next(new errors.UnauthorizedError({
|
|
|
|
message: i18n.t('errors.middleware.auth.accessDenied'),
|
|
|
|
context: i18n.t('errors.middleware.auth.clientCredentialsNotProvided'),
|
|
|
|
help: i18n.t('errors.middleware.auth.forInformationRead', {url: 'http://api.ghost.org/docs/client-authentication'})
|
|
|
|
}));
|
2015-10-22 08:28:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return passport.authenticate(['oauth2-client-password'], {session: false, failWithError: false},
|
|
|
|
function authenticate(err, client) {
|
|
|
|
if (err) {
|
|
|
|
return next(err); // will generate a 500 error
|
|
|
|
}
|
|
|
|
|
2015-10-28 13:39:10 -05:00
|
|
|
// req.body needs to be null for GET requests to build options correctly
|
|
|
|
delete req.body.client_id;
|
|
|
|
delete req.body.client_secret;
|
|
|
|
|
2016-04-14 10:54:49 -05:00
|
|
|
if (!client) {
|
2016-10-06 07:27:35 -05:00
|
|
|
return next(new errors.UnauthorizedError({
|
|
|
|
message: i18n.t('errors.middleware.auth.accessDenied'),
|
|
|
|
context: i18n.t('errors.middleware.auth.clientCredentialsNotValid'),
|
|
|
|
help: i18n.t('errors.middleware.auth.forInformationRead', {url: 'http://api.ghost.org/docs/client-authentication'})
|
|
|
|
}));
|
2015-12-14 10:35:19 -05:00
|
|
|
}
|
|
|
|
|
2016-03-26 13:26:57 -05:00
|
|
|
req.client = client;
|
2016-03-26 17:28:00 -05:00
|
|
|
|
2016-04-03 21:40:23 -05:00
|
|
|
events.emit('client.authenticated', client);
|
2016-03-26 13:26:57 -05:00
|
|
|
return next(null, client);
|
2015-10-22 08:28:47 -05:00
|
|
|
}
|
|
|
|
)(req, res, next);
|
|
|
|
},
|
|
|
|
|
|
|
|
// ### Authenticate User Middleware
|
|
|
|
authenticateUser: function authenticateUser(req, res, next) {
|
|
|
|
return passport.authenticate('bearer', {session: false, failWithError: false},
|
|
|
|
function authenticate(err, user, info) {
|
|
|
|
if (err) {
|
|
|
|
return next(err); // will generate a 500 error
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user) {
|
|
|
|
req.authInfo = info;
|
|
|
|
req.user = user;
|
2016-04-03 21:40:23 -05:00
|
|
|
|
|
|
|
events.emit('user.authenticated', user);
|
2015-10-22 08:28:47 -05:00
|
|
|
return next(null, user, info);
|
2017-03-01 05:12:03 -05:00
|
|
|
} else if (authUtils.getBearerAutorizationToken(req)) {
|
2016-10-06 07:27:35 -05:00
|
|
|
return next(new errors.UnauthorizedError({
|
|
|
|
message: i18n.t('errors.middleware.auth.accessDenied')
|
|
|
|
}));
|
2015-10-22 08:28:47 -05:00
|
|
|
} else if (req.client) {
|
2016-11-09 10:01:07 -05:00
|
|
|
req.user = {id: models.User.externalUser};
|
2015-10-22 08:28:47 -05:00
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
2016-10-06 07:27:35 -05:00
|
|
|
return next(new errors.UnauthorizedError({
|
|
|
|
message: i18n.t('errors.middleware.auth.accessDenied')
|
|
|
|
}));
|
2015-10-22 08:28:47 -05:00
|
|
|
}
|
|
|
|
)(req, res, next);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-09-30 06:45:59 -05:00
|
|
|
module.exports = authenticate;
|