CartoDB-SQL-API/app/auth/apikey.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2011-12-27 02:16:41 +08:00
/**
* this module allows to auth user using an pregenerated api key
*/
function ApikeyAuth(req) {
this.req = req;
}
module.exports = ApikeyAuth;
ApikeyAuth.prototype.verifyCredentials = function(options, callback) {
verifyRequest(this.req, options.apiKey, callback);
};
ApikeyAuth.prototype.hasCredentials = function() {
2015-05-13 00:00:30 +08:00
return !!(this.req.query.api_key || this.req.query.map_key ||
(this.req.body && this.req.body.api_key) || (this.req.body && this.req.body.map_key));
};
/**
* Get id of authorized user
*
* @param {Object} req - standard req object. Importantly contains table and host information
* @param {String} requiredApi - the API associated to the user, req must contain it
* @param {Function} callback - err, boolean (whether the request is authenticated or not)
*/
function verifyRequest(req, requiredApi, callback) {
var valid = false;
if ( requiredApi ) {
2015-05-13 00:00:30 +08:00
if ( requiredApi === req.query.map_key ) {
valid = true;
2015-05-13 00:00:30 +08:00
} else if ( requiredApi === req.query.api_key ) {
valid = true;
// check also in request body
2015-05-13 00:00:30 +08:00
} else if ( req.body && req.body.map_key && requiredApi === req.body.map_key ) {
valid = true;
2015-05-13 00:00:30 +08:00
} else if ( req.body && req.body.api_key && requiredApi === req.body.api_key ) {
valid = true;
}
}
callback(null, valid);
}