mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* User handling - Fixed a recently added bug and added some debug messages.
This commit is contained in:
parent
83c3f92241
commit
6c8b818d89
2 changed files with 7 additions and 2 deletions
|
@ -327,18 +327,23 @@ public class User {
|
|||
}
|
||||
|
||||
public void kill(DisconnectReason reason) {
|
||||
logger.debug("start user kill");
|
||||
for (GameSession gameSession: gameSessions.values()) {
|
||||
gameSession.kill();
|
||||
}
|
||||
logger.debug("user kill after game");
|
||||
for (DraftSession draftSession: draftSessions.values()) {
|
||||
draftSession.setKilled();
|
||||
}
|
||||
logger.debug("user kill after draft");
|
||||
for (TournamentSession tournamentSession: tournamentSessions.values()) {
|
||||
tournamentSession.setKilled();
|
||||
}
|
||||
logger.debug("user kill after tournament");
|
||||
for (Entry<UUID, Table> entry: tables.entrySet()) {
|
||||
TableManager.getInstance().leaveTable(userId, entry.getValue().getId());
|
||||
}
|
||||
logger.debug("user kill after table");
|
||||
ChatManager.getInstance().removeUser(userId, reason);
|
||||
}
|
||||
|
||||
|
|
|
@ -130,7 +130,7 @@ public class UserManager {
|
|||
.append(" sessionId: ").append(user.getSessionId())
|
||||
.append(" Reason: ").append(reason.toString()));
|
||||
ChatManager.getInstance().removeUser(userId, reason);
|
||||
users.get(userId).kill(reason);
|
||||
user.kill(reason);
|
||||
users.remove(userId);
|
||||
} else {
|
||||
logger.warn(new StringBuilder("Trying to remove userId: ").append(userId).append(" but user does not exist."));
|
||||
|
@ -165,7 +165,7 @@ public class UserManager {
|
|||
if (user.isExpired(expired.getTime())) {
|
||||
logger.info(new StringBuilder(user.getName()).append(": session expired userId: ").append(user.getId())
|
||||
.append(" Host: ").append(user.getHost()));
|
||||
SessionManager.getInstance().getSession(user.getSessionId()).kill(DisconnectReason.SessionExpired);
|
||||
removeUser(user.getId(), DisconnectReason.SessionExpired);
|
||||
}
|
||||
}
|
||||
logger.debug("checkExpired - end");
|
||||
|
|
Loading…
Reference in a new issue