From 211f3af592682181cf587f519ef134886607f46b Mon Sep 17 00:00:00 2001 From: Andrew Kutta Date: Mon, 13 Nov 2017 09:54:19 -0600 Subject: [PATCH] whitespace --- lib/index.js | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/lib/index.js b/lib/index.js index 7ad7b41..f4b83db 100644 --- a/lib/index.js +++ b/lib/index.js @@ -29,32 +29,32 @@ function noQsMethod(options) { } // error handler var onError = function(err, code) { - if (err) { - code = code || 'unknown'; - var error = new UnauthorizedError(code, { - message: (Object.prototype.toString.call(err) === '[object Object]' && err.message) ? err.message : err - }); - var callback_timeout; - // If callback explicitely set to false, start timeout to disconnect socket - if (options.callback === false || typeof options.callback === "number") { - if (typeof options.callback === "number") { - if (options.callback < 0) { - // If callback is negative(invalid value), make it positive - options.callback = Math.abs(options.callback); - } + if (err) { + code = code || 'unknown'; + var error = new UnauthorizedError(code, { + message: (Object.prototype.toString.call(err) === '[object Object]' && err.message) ? err.message : err + }); + var callback_timeout; + // If callback explicitely set to false, start timeout to disconnect socket + if (options.callback === false || typeof options.callback === 'number') { + if (typeof options.callback === 'number') { + if (options.callback < 0) { + // If callback is negative(invalid value), make it positive + options.callback = Math.abs(options.callback); } - callback_timeout = setTimeout(function () { - socket.disconnect('unauthorized'); - }, (options.callback === false ? 0 : options.callback)); } - socket.emit('unauthorized', error, function() { - if (typeof options.callback === "number") { - clearTimeout(callback_timeout); - } + callback_timeout = setTimeout(function () { socket.disconnect('unauthorized'); - }); - return; // stop logic, socket will be close on next tick + }, (options.callback === false ? 0 : options.callback)); } + socket.emit('unauthorized', error, function() { + if (typeof options.callback === 'number') { + clearTimeout(callback_timeout); + } + socket.disconnect('unauthorized'); + }); + return; // stop logic, socket will be close on next tick + } }; var token = options.cookie ? socket.request.cookies[options.cookie] : (data ? data.token : undefined); @@ -81,8 +81,8 @@ function noQsMethod(options) { } else { //try getting the current namespace otherwise fallback to all sockets. var namespace = (server.nsps && socket.nsp && - server.nsps[socket.nsp.name]) || - server.sockets; + server.nsps[socket.nsp.name]) || + server.sockets; // explicit namespace namespace.emit('authenticated', socket); @@ -237,7 +237,7 @@ function getSecret(request, secret, token, callback) { } else { callback(null, secret); } -}; +} exports.authorize = authorize; exports.UnauthorizedError = UnauthorizedError;