SEBSERV-422 fixed
This commit is contained in:
parent
88a046379f
commit
ab9d1f7dcc
4 changed files with 21 additions and 11 deletions
|
@ -30,23 +30,30 @@ import ch.ethz.seb.sebserver.gbl.util.Utils;
|
|||
public final class ClientConnection implements GrantEntity {
|
||||
|
||||
public enum ConnectionStatus {
|
||||
UNDEFINED(0, false, false),
|
||||
CONNECTION_REQUESTED(1, true, false),
|
||||
AUTHENTICATED(2, true, true),
|
||||
ACTIVE(3, false, true),
|
||||
CLOSED(4, false, false),
|
||||
DISABLED(5, false, false);
|
||||
UNDEFINED(0, false, false, false),
|
||||
CONNECTION_REQUESTED(1, true, false, false),
|
||||
AUTHENTICATED(2, true, true, true),
|
||||
ACTIVE(3, false, true, true),
|
||||
CLOSED(4, false, false, true),
|
||||
DISABLED(5, false, false, false);
|
||||
|
||||
public final int code;
|
||||
public final boolean connectingStatus;
|
||||
public final boolean establishedStatus;
|
||||
public final boolean clientActiveStatus;
|
||||
public final boolean duplicateCheckStatus;
|
||||
|
||||
ConnectionStatus(
|
||||
final int code,
|
||||
final boolean connectingStatus,
|
||||
final boolean establishedStatus,
|
||||
final boolean duplicateCheckStatus) {
|
||||
|
||||
ConnectionStatus(final int code, final boolean connectingStatus, final boolean establishedStatus) {
|
||||
this.code = code;
|
||||
this.connectingStatus = connectingStatus;
|
||||
this.establishedStatus = establishedStatus;
|
||||
this.clientActiveStatus = connectingStatus || establishedStatus;
|
||||
this.duplicateCheckStatus = duplicateCheckStatus;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -354,8 +354,9 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
|
|||
}
|
||||
});
|
||||
|
||||
if (!this.toUpdateStatic.isEmpty()) {
|
||||
if (!this.toUpdateStatic.isEmpty() || this.forceUpdateAll) {
|
||||
fetchStaticClientConnectionData();
|
||||
this.needsSort = true;
|
||||
}
|
||||
|
||||
if (!this.toDelete.isEmpty()) {
|
||||
|
@ -370,6 +371,7 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
|
|||
}
|
||||
|
||||
public void updateGUI() {
|
||||
|
||||
if (this.needsSort) {
|
||||
sortTable();
|
||||
}
|
||||
|
@ -652,7 +654,8 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
|
|||
}
|
||||
|
||||
int notificationWeight() {
|
||||
return BooleanUtils.isTrue(this.monitoringData.pendingNotification) || this.marked ? -1 : 0;
|
||||
return BooleanUtils.isTrue(this.monitoringData.pendingNotification) ||
|
||||
(this.monitoringData.status.establishedStatus && this.marked) ? -1 : 0;
|
||||
}
|
||||
|
||||
int statusWeight() {
|
||||
|
|
|
@ -637,7 +637,7 @@ public class ExamSessionServiceImpl implements ExamSessionService {
|
|||
|
||||
private ClientConnectionDataInternal getForTokenAndCheckDuplication(final String token) {
|
||||
final ClientConnectionDataInternal cc = this.examSessionCacheService.getClientConnection(token);
|
||||
if (cc.clientConnection.status.establishedStatus) {
|
||||
if (cc.clientConnection.status.duplicateCheckStatus) {
|
||||
final Long id = this.duplicateCheck.put(
|
||||
cc.clientConnection.userSessionId,
|
||||
cc.getConnectionId());
|
||||
|
|
|
@ -213,7 +213,7 @@ public class APIExceptionHandler extends ResponseEntityExceptionHandler {
|
|||
final Exception ex,
|
||||
final WebRequest request) {
|
||||
|
||||
log.error("Unexpected generic error catched at the API endpoint: ", ex);
|
||||
log.error("Unexpected generic error caught at the API endpoint: ", ex);
|
||||
return APIMessage.ErrorMessage.GENERIC
|
||||
.createErrorResponse(ex.getMessage());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue