2011-12-27 02:16:41 +08:00
|
|
|
/**
|
|
|
|
* this module allows to auth user using an pregenerated api key
|
|
|
|
*/
|
2014-08-05 08:29:07 +08:00
|
|
|
function ApikeyAuth() {
|
2013-12-18 18:57:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ApikeyAuth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get id of authorized user
|
|
|
|
*
|
2014-08-05 08:29:07 +08:00
|
|
|
* @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)
|
2013-12-18 18:57:46 +08:00
|
|
|
*/
|
2014-08-05 08:29:07 +08:00
|
|
|
ApikeyAuth.prototype.verifyRequest = function (req, requiredApi, callback) {
|
|
|
|
|
|
|
|
var valid = false;
|
|
|
|
|
|
|
|
if ( requiredApi ) {
|
|
|
|
if ( requiredApi == req.query.map_key ) {
|
|
|
|
valid = true;
|
|
|
|
} else if ( requiredApi == req.query.api_key ) {
|
|
|
|
valid = true;
|
|
|
|
// check also in request body
|
|
|
|
} else if ( req.body && req.body.map_key && requiredApi == req.body.map_key ) {
|
|
|
|
valid = true;
|
|
|
|
} else if ( req.body && req.body.api_key && requiredApi == req.body.api_key ) {
|
|
|
|
valid = true;
|
2013-12-18 18:57:46 +08:00
|
|
|
}
|
2014-08-05 08:29:07 +08:00
|
|
|
}
|
2013-12-18 18:57:46 +08:00
|
|
|
|
2014-08-05 08:29:07 +08:00
|
|
|
callback(null, valid);
|
|
|
|
};
|