add support for socket.io 1.0

This commit is contained in:
José F. Romaniello
2014-06-03 08:12:07 -03:00
parent 0577d07b47
commit e8380c10b8
2 changed files with 25 additions and 8 deletions

View File

@ -29,10 +29,18 @@ function noQsMethod(options) {
function authorize(options, onConnection) {
var defaults = {
success: function(data, accept){
accept(null, true);
if (data.request) {
accept();
} else {
accept(null, true);
}
},
fail: function(error, data, accept){
accept(null, false);
if (data.request) {
accept();
} else {
accept(null, false);
}
}
};
@ -45,8 +53,10 @@ function authorize(options, onConnection) {
return function(data, accept){
var token, error;
if (data.headers && data.headers.authorization) {
var parts = data.headers.authorization.split(' ');
var authorization_header = ((data.request || data).headers || {}).authorization;
if (authorization_header) {
var parts = authorization_header.split(' ');
if (parts.length == 2) {
var scheme = parts[0],
credentials = parts[1];
@ -62,9 +72,8 @@ function authorize(options, onConnection) {
}
}
if (data.query.token) {
token = data.query.token;
}
//get the token from query string
token = (data.request || data).query.token;
if (!token) {
error = new UnauthorizedError('credentials_required', {