jshint: fix auth directory

This commit is contained in:
Raul Ochoa 2015-05-12 18:00:30 +02:00
parent cac2fff5ed
commit 703479b7de
2 changed files with 26 additions and 25 deletions

View File

@ -12,10 +12,8 @@ ApikeyAuth.prototype.verifyCredentials = function(options, callback) {
}; };
ApikeyAuth.prototype.hasCredentials = function() { ApikeyAuth.prototype.hasCredentials = function() {
return !!(this.req.query.api_key return !!(this.req.query.api_key || this.req.query.map_key ||
|| this.req.query.map_key (this.req.body && this.req.body.api_key) || (this.req.body && this.req.body.map_key));
|| (this.req.body && this.req.body.api_key)
|| (this.req.body && this.req.body.map_key));
}; };
/** /**
@ -30,14 +28,14 @@ function verifyRequest(req, requiredApi, callback) {
var valid = false; var valid = false;
if ( requiredApi ) { if ( requiredApi ) {
if ( requiredApi == req.query.map_key ) { if ( requiredApi === req.query.map_key ) {
valid = true; valid = true;
} else if ( requiredApi == req.query.api_key ) { } else if ( requiredApi === req.query.api_key ) {
valid = true; valid = true;
// check also in request body // check also in request body
} else if ( req.body && req.body.map_key && requiredApi == req.body.map_key ) { } else if ( req.body && req.body.map_key && requiredApi === req.body.map_key ) {
valid = true; valid = true;
} else if ( req.body && req.body.api_key && requiredApi == req.body.api_key ) { } else if ( req.body && req.body.api_key && requiredApi === req.body.api_key ) {
valid = true; valid = true;
} }
} }

View File

@ -1,10 +1,10 @@
// too bound to the request object, but ok for now // too bound to the request object, but ok for now
var _ = require('underscore') var _ = require('underscore');
, OAuthUtil = require('oauth-client') var OAuthUtil = require('oauth-client');
, url = require('url') var step = require('step');
, Step = require('step'); var assert = require('assert');
var oAuth = function(){ var oAuth = (function(){
var me = { var me = {
oauth_database: 3, oauth_database: 3,
oauth_user_key: "rails:oauth_access_tokens:<%= oauth_access_key %>", oauth_user_key: "rails:oauth_access_tokens:<%= oauth_access_key %>",
@ -15,7 +15,7 @@ var oAuth = function(){
// * in GET request // * in GET request
// * in header // * in header
me.parseTokens = function(req){ me.parseTokens = function(req){
var query_oauth = _.clone(req.method == "POST" ? req.body: req.query); var query_oauth = _.clone(req.method === "POST" ? req.body: req.query);
var header_oauth = {}; var header_oauth = {};
var oauth_variables = ['oauth_body_hash', var oauth_variables = ['oauth_body_hash',
'oauth_consumer_key', 'oauth_consumer_key',
@ -34,9 +34,10 @@ var oAuth = function(){
var header_string = req.headers.authorization; var header_string = req.headers.authorization;
if (!_.isUndefined(header_string)) { if (!_.isUndefined(header_string)) {
_.each(oauth_variables, function(oauth_key){ _.each(oauth_variables, function(oauth_key){
var matched_string = header_string.match(new RegExp(oauth_key + '=\"([^\"]+)\"')) var matched_string = header_string.match(new RegExp(oauth_key + '=\"([^\"]+)\"'));
if (!_.isNull(matched_string)) if (!_.isNull(matched_string)) {
header_oauth[oauth_key] = decodeURIComponent(matched_string[1]); header_oauth[oauth_key] = decodeURIComponent(matched_string[1]);
}
}); });
} }
@ -69,12 +70,12 @@ var oAuth = function(){
var ohash; var ohash;
var signature; var signature;
Step( step(
function getTokensFromURL(){ function getTokensFromURL(){
return oAuth.parseTokens(req); return oAuth.parseTokens(req);
}, },
function getOAuthHash(err, data){ function getOAuthHash(err, data){
if (err) throw err; assert.ifError(err);
// this is oauth request only if oauth headers are present // this is oauth request only if oauth headers are present
this.is_oauth_request = !_.isEmpty(data); this.is_oauth_request = !_.isEmpty(data);
@ -87,8 +88,10 @@ var oAuth = function(){
} }
}, },
function regenerateSignature(err, data){ function regenerateSignature(err, data){
if (err) throw err; assert.ifError(err);
if (!this.is_oauth_request) return null; if (!this.is_oauth_request) {
return null;
}
ohash = data; ohash = data;
var consumer = OAuthUtil.createConsumer(ohash.consumer_key, ohash.consumer_secret); var consumer = OAuthUtil.createConsumer(ohash.consumer_key, ohash.consumer_secret);
@ -98,7 +101,7 @@ var oAuth = function(){
var method = req.method; var method = req.method;
var host = req.headers.host; var host = req.headers.host;
if(!httpProto || (httpProto != 'http' && httpProto != 'https')) { if(!httpProto || (httpProto !== 'http' && httpProto !== 'https')) {
var msg = "Unknown HTTP protocol " + httpProto + "."; var msg = "Unknown HTTP protocol " + httpProto + ".";
err = new Error(msg); err = new Error(msg);
err.http_status = 500; err.http_status = 500;
@ -111,13 +114,13 @@ var oAuth = function(){
// remove signature from passed_tokens // remove signature from passed_tokens
signature = passed_tokens.oauth_signature; signature = passed_tokens.oauth_signature;
delete passed_tokens['oauth_signature']; delete passed_tokens.oauth_signature;
var joined = {}; var joined = {};
// remove oauth_signature from body // remove oauth_signature from body
if(req.body) { if(req.body) {
delete req.body['oauth_signature']; delete req.body.oauth_signature;
} }
_.extend(joined, req.body ? req.body : null); _.extend(joined, req.body ? req.body : null);
_.extend(joined, passed_tokens); _.extend(joined, passed_tokens);
@ -126,7 +129,7 @@ var oAuth = function(){
return signer.sign(method, path, joined); return signer.sign(method, path, joined);
}, },
function checkSignature(err, data){ function checkSignature(err, data){
if (err) throw err; assert.ifError(err);
//console.log(data + " should equal the provided signature: " + signature); //console.log(data + " should equal the provided signature: " + signature);
callback(err, (signature === data && !_.isUndefined(data)) ? true : null); callback(err, (signature === data && !_.isUndefined(data)) ? true : null);
@ -139,7 +142,7 @@ var oAuth = function(){
}; };
return me; return me;
}(); })();
function OAuthAuth(req) { function OAuthAuth(req) {
this.req = req; this.req = req;