2013-06-05 08:38:33 -03:00
|
|
|
var xtend = require('xtend');
|
2014-01-13 16:00:21 -03:00
|
|
|
var jwt = require('jsonwebtoken');
|
|
|
|
var UnauthorizedError = require('./UnauthorizedError');
|
2012-10-26 11:13:28 -05:00
|
|
|
|
2014-01-14 08:30:39 -03:00
|
|
|
function noQsMethod(options) {
|
2015-05-29 08:52:14 -03:00
|
|
|
var defaults = { required: true };
|
|
|
|
options = xtend(defaults, options);
|
|
|
|
|
2014-01-13 18:41:10 -03:00
|
|
|
return function (socket) {
|
2015-08-31 11:04:04 -03:00
|
|
|
var server = this.server || socket.server;
|
2014-01-14 08:30:39 -03:00
|
|
|
|
2014-06-05 15:45:41 -03:00
|
|
|
if (!server.$emit) {
|
|
|
|
//then is socket.io 1.0
|
2015-08-31 11:04:04 -03:00
|
|
|
var Namespace = Object.getPrototypeOf(server.sockets).constructor;
|
2014-06-05 15:45:41 -03:00
|
|
|
if (!~Namespace.events.indexOf('authenticated')) {
|
|
|
|
Namespace.events.push('authenticated');
|
|
|
|
}
|
|
|
|
}
|
2015-05-29 08:52:14 -03:00
|
|
|
|
|
|
|
if(options.required){
|
|
|
|
var auth_timeout = setTimeout(function () {
|
|
|
|
socket.disconnect('unauthorized');
|
|
|
|
}, options.timeout || 5000);
|
|
|
|
}
|
|
|
|
|
2014-01-13 18:41:10 -03:00
|
|
|
socket.on('authenticate', function (data) {
|
2015-05-29 08:52:14 -03:00
|
|
|
if(options.required){
|
|
|
|
clearTimeout(auth_timeout);
|
|
|
|
}
|
2015-11-01 20:44:25 +01:00
|
|
|
// error handler
|
|
|
|
var onError = function(err, code) {
|
2015-05-07 11:49:00 +02:00
|
|
|
if (err) {
|
|
|
|
code = code || 'unknown';
|
|
|
|
var error = new UnauthorizedError(code, {
|
|
|
|
message: (Object.prototype.toString.call(err) === '[object Object]' && err.message) ? err.message : err
|
|
|
|
});
|
|
|
|
socket.emit('unauthorized', error, function() {
|
|
|
|
socket.disconnect('unauthorized');
|
|
|
|
});
|
|
|
|
return; // stop logic, socket will be close on next tick
|
|
|
|
}
|
2015-11-01 20:44:25 +01:00
|
|
|
};
|
2015-11-18 17:36:24 -03:00
|
|
|
|
2015-11-01 20:44:25 +01:00
|
|
|
if(typeof data.token !== "string") {
|
|
|
|
return onError({message: 'invalid token datatype'}, 'invalid_token');
|
|
|
|
}
|
2015-11-18 17:36:24 -03:00
|
|
|
|
|
|
|
var onJwtVerificationReady = function(err, decoded) {
|
2015-05-29 08:52:14 -03:00
|
|
|
|
2014-10-24 17:01:53 +01:00
|
|
|
if (err) {
|
2015-05-07 11:49:00 +02:00
|
|
|
return onError(err, 'invalid_token');
|
2014-01-13 18:41:10 -03:00
|
|
|
}
|
2015-05-29 08:52:14 -03:00
|
|
|
|
2015-05-07 11:49:00 +02:00
|
|
|
// success handler
|
2015-11-18 17:36:24 -03:00
|
|
|
var onSuccess = function() {
|
2015-05-07 11:49:00 +02:00
|
|
|
socket.decoded_token = decoded;
|
|
|
|
socket.emit('authenticated');
|
|
|
|
if (server.$emit) {
|
|
|
|
server.$emit('authenticated', socket);
|
|
|
|
} else {
|
2015-08-31 11:04:04 -03:00
|
|
|
//try getting the current namespace otherwise fallback to all sockets.
|
|
|
|
var namespace = (server.nsps && socket.nsp &&
|
|
|
|
server.nsps[socket.nsp.name]) ||
|
|
|
|
server.sockets;
|
|
|
|
|
2015-07-18 19:20:19 -07:00
|
|
|
// explicit namespace
|
2015-08-31 11:04:04 -03:00
|
|
|
namespace.emit('authenticated', socket);
|
2015-05-07 11:49:00 +02:00
|
|
|
}
|
2014-10-24 17:01:53 +01:00
|
|
|
};
|
2015-05-29 08:52:14 -03:00
|
|
|
|
2015-05-29 09:00:34 -03:00
|
|
|
if(options.additional_auth && typeof options.additional_auth === 'function') {
|
2015-07-05 19:57:24 +03:00
|
|
|
options.additional_auth(decoded, onSuccess, onError);
|
2014-06-05 15:45:41 -03:00
|
|
|
} else {
|
2014-10-24 17:01:53 +01:00
|
|
|
onSuccess();
|
2014-06-05 15:45:41 -03:00
|
|
|
}
|
2015-11-18 17:36:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
var onSecretReady = function(err, secret) {
|
|
|
|
if (err || !secret) {
|
|
|
|
return onError(err, 'invalid_secret');
|
|
|
|
}
|
2014-01-13 18:41:10 -03:00
|
|
|
|
2015-11-18 17:36:24 -03:00
|
|
|
jwt.verify(data.token, secret, options, onJwtVerificationReady);
|
|
|
|
};
|
|
|
|
|
|
|
|
getSecret(socket.request, options.secret, data.token, onSecretReady);
|
|
|
|
});
|
2014-01-13 18:41:10 -03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function authorize(options, onConnection) {
|
2015-05-29 08:52:14 -03:00
|
|
|
if (!options.handshake) {
|
|
|
|
return noQsMethod(options);
|
|
|
|
}
|
|
|
|
|
2013-02-05 19:15:04 -03:00
|
|
|
var defaults = {
|
2014-01-13 16:00:21 -03:00
|
|
|
success: function(data, accept){
|
2014-06-03 08:12:07 -03:00
|
|
|
if (data.request) {
|
|
|
|
accept();
|
|
|
|
} else {
|
|
|
|
accept(null, true);
|
|
|
|
}
|
2014-01-13 16:00:21 -03:00
|
|
|
},
|
|
|
|
fail: function(error, data, accept){
|
2014-06-03 08:12:07 -03:00
|
|
|
if (data.request) {
|
2014-06-05 15:45:41 -03:00
|
|
|
accept(error);
|
2014-06-03 08:12:07 -03:00
|
|
|
} else {
|
|
|
|
accept(null, false);
|
|
|
|
}
|
2014-01-13 16:00:21 -03:00
|
|
|
}
|
2012-10-26 11:13:28 -05:00
|
|
|
};
|
2012-09-05 15:14:36 -03:00
|
|
|
|
2013-11-15 10:47:51 +01:00
|
|
|
var auth = xtend(defaults, options);
|
2013-06-30 20:06:21 +01:00
|
|
|
|
2012-09-05 15:14:36 -03:00
|
|
|
return function(data, accept){
|
2014-01-13 16:00:21 -03:00
|
|
|
var token, error;
|
2014-06-05 15:45:41 -03:00
|
|
|
var req = data.request || data;
|
|
|
|
var authorization_header = (req.headers || {}).authorization;
|
2014-06-03 08:12:07 -03:00
|
|
|
|
|
|
|
if (authorization_header) {
|
|
|
|
var parts = authorization_header.split(' ');
|
2014-01-13 16:00:21 -03:00
|
|
|
if (parts.length == 2) {
|
|
|
|
var scheme = parts[0],
|
|
|
|
credentials = parts[1];
|
2012-09-05 15:14:36 -03:00
|
|
|
|
2015-05-17 22:05:00 -03:00
|
|
|
if (scheme.toLowerCase() === 'bearer') {
|
2014-01-13 16:00:21 -03:00
|
|
|
token = credentials;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
error = new UnauthorizedError('credentials_bad_format', {
|
|
|
|
message: 'Format is Authorization: Bearer [token]'
|
|
|
|
});
|
|
|
|
return auth.fail(error, data, accept);
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 18:19:00 +01:00
|
|
|
|
2014-06-03 08:12:07 -03:00
|
|
|
//get the token from query string
|
2014-06-06 13:09:06 -05:00
|
|
|
if (req._query && req._query.token) {
|
|
|
|
token = req._query.token;
|
|
|
|
}
|
|
|
|
else if (req.query && req.query.token) {
|
2014-06-06 12:28:11 -05:00
|
|
|
token = req.query.token;
|
2014-06-05 15:45:41 -03:00
|
|
|
}
|
2012-09-05 15:14:36 -03:00
|
|
|
|
2014-01-13 16:00:21 -03:00
|
|
|
if (!token) {
|
|
|
|
error = new UnauthorizedError('credentials_required', {
|
|
|
|
message: 'No Authorization header was found'
|
2012-09-05 15:14:36 -03:00
|
|
|
});
|
2014-01-13 16:00:21 -03:00
|
|
|
return auth.fail(error, data, accept);
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:36:24 -03:00
|
|
|
var onJwtVerificationReady = function(err, decoded) {
|
2014-01-13 16:00:21 -03:00
|
|
|
|
|
|
|
if (err) {
|
2015-11-18 17:36:24 -03:00
|
|
|
error = new UnauthorizedError(err.code || 'invalid_token', err);
|
2014-01-13 16:00:21 -03:00
|
|
|
return auth.fail(error, data, accept);
|
|
|
|
}
|
|
|
|
|
2014-01-14 17:44:03 -03:00
|
|
|
data.decoded_token = decoded;
|
2012-09-05 15:14:36 -03:00
|
|
|
|
2015-10-08 14:06:33 +02:00
|
|
|
return auth.success(data, accept);
|
2015-11-18 17:36:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
var onSecretReady = function(err, secret) {
|
|
|
|
if (err) {
|
|
|
|
error = new UnauthorizedError(err.code || 'invalid_secret', err);
|
|
|
|
return auth.fail(error, data, accept);
|
|
|
|
}
|
|
|
|
|
|
|
|
jwt.verify(token, secret, options, onJwtVerificationReady);
|
|
|
|
};
|
|
|
|
|
|
|
|
getSecret(req, options.secret, token, onSecretReady);
|
2012-09-05 15:14:36 -03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:36:24 -03:00
|
|
|
function getSecret(request, secret, token, callback) {
|
|
|
|
if (typeof secret === 'function') {
|
|
|
|
if (!token) {
|
|
|
|
return callback({ code: 'invalid_token', message: 'jwt must be provided' });
|
|
|
|
}
|
|
|
|
|
|
|
|
var parts = token.split('.');
|
|
|
|
|
|
|
|
if (parts.length < 3) {
|
|
|
|
return callback({ code: 'invalid_token', message: 'jwt malformed' });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parts[2].trim() === '') {
|
|
|
|
return callback({ code: 'invalid_token', message: 'jwt signature is required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
var decodedToken = jwt.decode(token);
|
|
|
|
|
|
|
|
if (!decodedToken) {
|
|
|
|
return callback({ code: 'invalid_token', message: 'jwt malformed' });
|
|
|
|
}
|
|
|
|
|
|
|
|
secret(request, decodedToken, callback);
|
|
|
|
} else {
|
|
|
|
callback(null, secret);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-05 15:14:36 -03:00
|
|
|
exports.authorize = authorize;
|