Send 'error' event with error details in case of not received or invalid token.
This commit is contained in:
parent
92663f95b7
commit
b053356c5e
@ -15,6 +15,7 @@ function noQsMethod(options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var auth_timeout = setTimeout(function () {
|
var auth_timeout = setTimeout(function () {
|
||||||
|
socket.emit('error', new UnauthorizedError('request_expiration', 'Token wasn\'t received on time'));
|
||||||
socket.disconnect('unauthorized');
|
socket.disconnect('unauthorized');
|
||||||
}, options.timeout || 5000);
|
}, options.timeout || 5000);
|
||||||
|
|
||||||
@ -22,6 +23,7 @@ function noQsMethod(options) {
|
|||||||
clearTimeout(auth_timeout);
|
clearTimeout(auth_timeout);
|
||||||
jwt.verify(data.token, options.secret, options, function(err, decoded) {
|
jwt.verify(data.token, options.secret, options, function(err, decoded) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
socket.emit('error', new UnauthorizedError('invalid_token', err));
|
||||||
return socket.disconnect('unauthorized');
|
return socket.disconnect('unauthorized');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user