CartoDB-SQL-API/app/middlewares/authorization.js

118 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-02-19 21:41:06 +08:00
const AuthApi = require('../auth/auth_api');
const basicAuth = require('basic-auth');
2016-10-04 21:40:56 +08:00
module.exports = function authorization (metadataBackend, forceToBeAuthenticated = false) {
2018-02-19 22:54:05 +08:00
return function authorizationMiddleware (req, res, next) {
const { user } = res.locals;
2018-02-19 23:04:57 +08:00
const credentials = getCredentialsFromRequest(req);
if (!userMatches(credentials, user)) {
return next(new Error('permission denied'));
}
res.locals.api_key = credentials.apiKeyToken;
const params = Object.assign({ metadataBackend }, res.locals, req.query, req.body);
const authApi = new AuthApi(req, params);
2016-10-04 21:40:56 +08:00
authApi.verifyCredentials({}, function (err, authenticated) {
if (req.profiler) {
req.profiler.done('verifyCredentials');
}
2016-10-04 21:40:56 +08:00
if (err) {
return next(err);
2016-10-04 21:40:56 +08:00
}
res.locals.authenticated = authenticated;
if (forceToBeAuthenticated && !authenticated) {
return next(new Error('permission denied'));
2016-10-04 21:40:56 +08:00
}
next();
2016-10-04 21:40:56 +08:00
});
};
2018-02-19 21:20:09 +08:00
};
const credentialsGetters = [
getCredentialsFromHeaderAuthorization,
getCredentialsFromRequestQueryString,
getCredentialsFromRequestBody,
];
function getCredentialsFromRequest (req) {
let credentials = null;
for (var getter of credentialsGetters) {
credentials = getter(req);
if (apiKeyTokenFound(credentials)) {
break;
}
}
return credentials;
}
function getCredentialsFromHeaderAuthorization(req) {
const { pass, name } = basicAuth(req) || {};
if (pass !== undefined && name !== undefined) {
return {
apiKeyToken: pass,
user: name
};
}
return false;
}
function getCredentialsFromRequestQueryString(req) {
if (req.query.api_key) {
return {
apiKeyToken: req.query.api_key
};
}
if (req.query.map_key) {
return {
apiKeyToken: req.query.map_key
};
}
return false;
}
function getCredentialsFromRequestBody(req) {
if (req.body && req.body.api_key) {
return {
apiKeyToken: req.body.api_key
};
}
if (req.body && req.body.map_key) {
return {
apiKeyToken: req.body.map_key
};
}
return false;
}
function apiKeyTokenFound(credentials) {
if (typeof credentials === 'boolean') {
return credentials;
}
if (credentials.apiKeyToken !== undefined) {
return true;
}
return false;
}
function userMatches (credentials, user) {
return !(credentials.user !== undefined && credentials.user !== user);
}