mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 19:46:01 +01:00
removed event:disconnect
This commit is contained in:
@@ -17,28 +17,29 @@ app.isConnected = false;
|
||||
|
||||
socket = io(config.websocketAddress, ioParams);
|
||||
|
||||
socket.on('connect', onSocketConnect);
|
||||
socket.on('connect', onConnect);
|
||||
|
||||
socket.on('reconnecting', onReconnecting);
|
||||
|
||||
socket.on('disconnect', onDisconnect);
|
||||
|
||||
socket.on('reconnect_failed', function() {
|
||||
// Wait ten times the reconnection delay and then start over
|
||||
setTimeout(socket.connect.bind(socket), parseInt(config.reconnectionDelay, 10) * 10);
|
||||
});
|
||||
|
||||
socket.on('event:disconnect', onEventDisconnect);
|
||||
|
||||
socket.on('event:banned', onEventBanned);
|
||||
|
||||
socket.on('event:logout', app.logout);
|
||||
|
||||
socket.on('event:alert', app.alert);
|
||||
|
||||
function onSocketConnect() {
|
||||
function onConnect() {
|
||||
app.isConnected = true;
|
||||
|
||||
if (!reconnecting) {
|
||||
app.showLoginMessage();
|
||||
$(window).trigger('action:connected');
|
||||
app.isConnected = true;
|
||||
}
|
||||
|
||||
if (reconnecting) {
|
||||
@@ -52,7 +53,6 @@ app.isConnected = false;
|
||||
|
||||
socket.emit('meta.reconnected');
|
||||
|
||||
app.isConnected = true;
|
||||
$(window).trigger('action:reconnected');
|
||||
|
||||
setTimeout(function() {
|
||||
@@ -95,7 +95,7 @@ app.isConnected = false;
|
||||
app.enterRoom(room);
|
||||
}
|
||||
|
||||
function onReconnecting(attempt) {
|
||||
function onReconnecting() {
|
||||
reconnecting = true;
|
||||
var reconnectEl = $('#reconnect');
|
||||
|
||||
@@ -108,10 +108,9 @@ app.isConnected = false;
|
||||
});
|
||||
}
|
||||
|
||||
function onEventDisconnect() {
|
||||
function onDisconnect() {
|
||||
$(window).trigger('action:disconnected');
|
||||
app.isConnected = false;
|
||||
socket.connect();
|
||||
}
|
||||
|
||||
function onEventBanned() {
|
||||
|
||||
@@ -30,7 +30,6 @@ authenticationController.register = function(req, res, next) {
|
||||
}
|
||||
}
|
||||
|
||||
var uid;
|
||||
async.waterfall([
|
||||
function(next) {
|
||||
if (registrationType === 'invite-only') {
|
||||
@@ -255,7 +254,6 @@ authenticationController.localLogin = function(req, username, password, next) {
|
||||
authenticationController.logout = function(req, res, next) {
|
||||
if (req.user && parseInt(req.user.uid, 10) > 0 && req.sessionID) {
|
||||
var uid = parseInt(req.user.uid, 10);
|
||||
require('../socket.io').logoutUser(req.user.uid);
|
||||
db.sessionStore.destroy(req.sessionID, function(err) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
|
||||
@@ -88,7 +88,6 @@ User.banUser = function(uid, callback) {
|
||||
|
||||
websockets.in('uid_' + uid).emit('event:banned');
|
||||
|
||||
websockets.logoutUser(uid);
|
||||
callback();
|
||||
});
|
||||
});
|
||||
@@ -193,7 +192,6 @@ User.deleteUsers = function(socket, uids, callback) {
|
||||
ip: socket.ip
|
||||
});
|
||||
|
||||
websockets.logoutUser(uid);
|
||||
next();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -206,10 +206,6 @@ function callMethod(method, socket, params, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
Sockets.logoutUser = function(uid) {
|
||||
io.in('uid_' + uid).emit('event:disconnect');
|
||||
};
|
||||
|
||||
Sockets.in = function(room) {
|
||||
return io.in(room);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user