From 47d3c9ba275072f3ab324c37c0d2df2ccf8defef Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Fri, 12 Oct 2018 11:28:54 -0700 Subject: [PATCH] go to error-room when failing to connect to a full domain --- libraries/networking/src/DomainHandler.cpp | 8 +++++--- scripts/system/redirectOverlays.js | 12 +++++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/libraries/networking/src/DomainHandler.cpp b/libraries/networking/src/DomainHandler.cpp index 615546b410..182a79ec4b 100644 --- a/libraries/networking/src/DomainHandler.cpp +++ b/libraries/networking/src/DomainHandler.cpp @@ -140,8 +140,10 @@ void DomainHandler::hardReset() { } bool DomainHandler::isHardRefusal(int reasonCode) { - return (reasonCode == (int)ConnectionRefusedReason::ProtocolMismatch || reasonCode == (int)ConnectionRefusedReason::NotAuthorized || - reasonCode == (int)ConnectionRefusedReason::TimedOut); + return (reasonCode == (int)ConnectionRefusedReason::ProtocolMismatch || + reasonCode == (int)ConnectionRefusedReason::TooManyUsers || + reasonCode == (int)ConnectionRefusedReason::NotAuthorized || + reasonCode == (int)ConnectionRefusedReason::TimedOut); } bool DomainHandler::getInterstitialModeEnabled() const { @@ -473,7 +475,7 @@ bool DomainHandler::reasonSuggestsLogin(ConnectionRefusedReason reasonCode) { case ConnectionRefusedReason::LoginError: case ConnectionRefusedReason::NotAuthorized: return true; - + default: case ConnectionRefusedReason::Unknown: case ConnectionRefusedReason::ProtocolMismatch: diff --git a/scripts/system/redirectOverlays.js b/scripts/system/redirectOverlays.js index b1180e0cd0..bb537bee0e 100644 --- a/scripts/system/redirectOverlays.js +++ b/scripts/system/redirectOverlays.js @@ -5,14 +5,20 @@ "Oops! Protocol version mismatch.", "Oops! Not authorized to join domain.", "Oops! Connection timed out.", + "Oops! The domain is full.", "Oops! Something went wrong." ]; var PROTOCOL_VERSION_MISMATCH = 1; var NOT_AUTHORIZED = 3; + var DOMAIN_FULL = 4; var TIMEOUT = 5; - var hardRefusalErrors = [PROTOCOL_VERSION_MISMATCH, - NOT_AUTHORIZED, TIMEOUT]; + var hardRefusalErrors = [ + PROTOCOL_VERSION_MISMATCH, + NOT_AUTHORIZED, + TIMEOUT, + DOMAIN_FULL + ]; var timer = null; var isErrorState = false; @@ -26,7 +32,7 @@ return ERROR_MESSAGE_MAP[errorMessageMapIndex]; } else { // some other text. - return ERROR_MESSAGE_MAP[4]; + return ERROR_MESSAGE_MAP[ERROR_MESSAGE_MAP.length - 1]; } };