Ejemplo n.º 1
0
        public static void AddFeedback(string contentId, int version, ContentType contentType, ApprovalType approvalType, string reason, Action <ApiFeedback> successCallback, Action <string> errorCallback)
        {
            ApiModelContainer <ApiFeedback> apiModelContainer = new ApiModelContainer <ApiFeedback>();

            apiModelContainer.OnSuccess = delegate(ApiContainer c)
            {
                if (successCallback != null)
                {
                    successCallback(c.Model as ApiFeedback);
                }
            };
            apiModelContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer         = apiModelContainer;
            Dictionary <string, object> dictionary = new Dictionary <string, object>();

            dictionary["contentType"] = contentType.ToString();
            dictionary["type"]        = approvalType.ToString();
            dictionary["reason"]      = reason;
            if (contentType == ContentType.world)
            {
                API.SendPostRequest("/feedback/" + contentId + "/" + version.ToString(), responseContainer, dictionary);
            }
            else
            {
                API.SendPostRequest("/feedback/" + contentId + "/" + contentType.ToString(), responseContainer, dictionary);
            }
        }
Ejemplo n.º 2
0
 private static void SendOfflineRequest(string endpoint, HTTPMethods method, ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null)
 {
     foreach (object offlineQuery in offlineQueries)
     {
         Dictionary <string, object> dictionary = offlineQuery as Dictionary <string, object>;
         if (dictionary["url"].ToString() == endpoint)
         {
             object result = dictionary["result"];
             string s      = Json.Encode(result);
             byte[] data   = Encoding.UTF8.GetBytes(s);
             responseContainer.OnComplete(success: true, endpoint, 200, string.Empty, () => data, () => Json.Encode(result));
             if (!responseContainer.IsValid)
             {
                 if (responseContainer.OnError != null)
                 {
                     responseContainer.OnError(responseContainer);
                 }
             }
             else if (responseContainer.OnSuccess != null)
             {
                 responseContainer.OnSuccess(responseContainer);
             }
         }
     }
     Logger.LogErrorFormat(DebugLevel.API, "Query used by application in offline mode not found - {0}", endpoint);
     responseContainer.Error = "query not found in offline results - " + endpoint;
     if (responseContainer.OnError != null)
     {
         responseContainer.OnError(responseContainer);
     }
 }
Ejemplo n.º 3
0
        protected override ApiContainer MakeModelContainer(Action <ApiContainer> onSuccess = null, Action <ApiContainer> onFailure = null)
        {
            ApiContainer apiContainer = new ApiContainer();

            apiContainer.OnSuccess = onSuccess;
            apiContainer.OnError   = onFailure;
            return(apiContainer);
        }
Ejemplo n.º 4
0
 public static void SendRequest(string endpoint, HTTPMethods method, ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null, bool authenticationRequired = true, bool disableCache = false, float cacheLifetime = 3600f, int retryCount = 2, CredentialsBundle credentials = null)
 {
     if (Logger.DebugLevelIsEnabled(DebugLevel.API))
     {
         Logger.LogFormat(DebugLevel.API, "Requesting {0} {1} {2} disableCache: {3} retryCount: {4}", method, endpoint, (requestParams == null) ? "{{}}" : Json.Encode(requestParams).Replace("{", "{{").Replace("}", "}}"), disableCache.ToString(), retryCount.ToString());
     }
     UpdateDelegator.Dispatch(delegate
     {
         SendRequestInternal(endpoint, method, responseContainer, requestParams, authenticationRequired, disableCache, cacheLifetime, retryCount, credentials);
     });
 }
Ejemplo n.º 5
0
 public void setFromContainer(ApiContainer container)
 {
     Cookies       = container.Cookies;
     IsValid       = container.IsValid;
     Code          = container.Code;
     Text          = container.Text;
     Data          = container.Data;
     DataTimestamp = container.DataTimestamp;
     CreatedAt     = container.CreatedAt;
     responseError = container.responseError;
 }
Ejemplo n.º 6
0
        protected virtual ApiContainer MakeModelContainer(Action <ApiContainer> onSuccess = null, Action <ApiContainer> onFailure = null)
        {
            Type         type         = GetType();
            Type         type2        = typeof(ApiModelContainer <>).MakeGenericType(type);
            ApiContainer apiContainer = Activator.CreateInstance(type2, this) as ApiContainer;

            apiContainer.OnSuccess = onSuccess;
            apiContainer.OnError   = onFailure;
            apiContainer.Model     = this;
            return(apiContainer);
        }
Ejemplo n.º 7
0
 private void SendPutRequest(ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null)
 {
     if (responseContainer == null)
     {
         responseContainer = MakeModelContainer();
     }
     if (Endpoint == null)
     {
         Logger.LogErrorFormat(DebugLevel.API, "NULL endpoint for {0} object, PUT ignored.", GetType().Name);
         if (responseContainer.OnError != null)
         {
             responseContainer.Error = "NULL endpoint for " + GetType().Name + " object, PUT ignored.";
             responseContainer.OnError(responseContainer);
         }
     }
     else
     {
         API.SendPutRequest(MakeRequestEndpoint(), responseContainer, requestParams);
     }
 }
Ejemplo n.º 8
0
        public static void FetchFeedback(Action <IEnumerable <ApiFeedback> > successCallback, Action <string> errorCallback)
        {
            ApiModelListContainer <ApiFeedback> apiModelListContainer = new ApiModelListContainer <ApiFeedback>();

            apiModelListContainer.OnSuccess = delegate(ApiContainer c)
            {
                if (successCallback != null)
                {
                    successCallback((c as ApiModelListContainer <ApiFeedback>).ResponseModels);
                }
            };
            apiModelListContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiModelListContainer;

            API.SendGetRequest("/users/" + APIUser.CurrentUser.id + "/feedback", responseContainer, null, disableCache: true);
        }
Ejemplo n.º 9
0
        public static void FetchWorldFeedback(string worldId, int version, ContentType contentType, Action <IEnumerable <ApiFeedback> > successCallback, Action <string> errorCallback)
        {
            ApiModelListContainer <ApiFeedback> apiModelListContainer = new ApiModelListContainer <ApiFeedback>();

            apiModelListContainer.OnSuccess = delegate(ApiContainer c)
            {
                if (successCallback != null)
                {
                    successCallback((c as ApiModelListContainer <ApiFeedback>).ResponseModels);
                }
            };
            apiModelListContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiModelListContainer;

            API.SendGetRequest("/users/" + APIUser.CurrentUser.id + "/feedback?contentType=world&contentId=" + worldId + "&contentVersion=" + version.ToString(), responseContainer, null, disableCache: true);
        }
Ejemplo n.º 10
0
        public static void RemoveFromGroup(string objectId, Action successCallback, Action <string> errorCallback)
        {
            ApiDictContainer apiDictContainer = new ApiDictContainer();

            apiDictContainer.OnSuccess = delegate
            {
                if (successCallback != null)
                {
                    successCallback();
                }
            };
            apiDictContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiDictContainer;

            API.SendDeleteRequest("favorites/" + objectId, responseContainer);
        }
Ejemplo n.º 11
0
        public static void DeleteFeedback(string feedbackId, Action successCallback, Action <string> errorCallback)
        {
            ApiDictContainer apiDictContainer = new ApiDictContainer();

            apiDictContainer.OnSuccess = delegate
            {
                if (successCallback != null)
                {
                    successCallback();
                }
            };
            apiDictContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiDictContainer;

            API.SendDeleteRequest("/feedback/" + feedbackId, responseContainer);
        }
Ejemplo n.º 12
0
        public static void ClearGroup(string userId, GroupType groupType, string group, Action successCallback = null, Action <string> errorCallback = null)
        {
            ApiContainer apiContainer = new ApiContainer();

            apiContainer.OnSuccess = delegate
            {
                if (successCallback != null)
                {
                    successCallback();
                }
            };
            apiContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiContainer;

            API.SendDeleteRequest("favorite/group/" + groupType.value + "/" + group + "/" + userId, responseContainer);
        }
Ejemplo n.º 13
0
        public static void FetchFeedback(string worldId, int version, ApiFeedback.ContentType contentType, Action <ApiContentFeedback> successCallback, Action <string> errorCallback)
        {
            ApiModelContainer <ApiContentFeedback> apiModelContainer = new ApiModelContainer <ApiContentFeedback>();

            apiModelContainer.OnSuccess = delegate(ApiContainer c)
            {
                ApiContentFeedback obj = c.Model as ApiContentFeedback;
                if (successCallback != null)
                {
                    successCallback(obj);
                }
            };
            apiModelContainer.OnError = delegate(ApiContainer c)
            {
                if (errorCallback != null)
                {
                    errorCallback(c.Error);
                }
            };
            ApiContainer responseContainer = apiModelContainer;

            API.SendGetRequest("/worlds/" + worldId + "/" + version + "/feedback", responseContainer, null, disableCache: true);
        }
Ejemplo n.º 14
0
 public virtual void Get(Action <ApiContainer> onSuccess = null, Action <ApiContainer> onFailure = null, Dictionary <string, object> parameters = null, bool disableCache = false)
 {
     if (string.IsNullOrEmpty(id) && string.IsNullOrEmpty(Endpoint))
     {
         if (onFailure != null)
         {
             onFailure(new ApiContainer
             {
                 Error = "Fetch called with null id."
             });
         }
     }
     else
     {
         string key = MakeRequestEndpoint() + Json.Encode(parameters);
         if (activeRequests.ContainsKey(key))
         {
             ApiContainer          apiContainer    = activeRequests[key];
             Action <ApiContainer> originalSuccess = apiContainer.OnSuccess;
             Action <ApiContainer> onSuccess2      = delegate(ApiContainer c)
             {
                 if (activeRequests.ContainsKey(key))
                 {
                     activeRequests.Remove(key);
                 }
                 try
                 {
                     if (onSuccess != null)
                     {
                         onSuccess(c);
                     }
                 }
                 catch (Exception ex4)
                 {
                     Debug.LogException(ex4);
                 }
                 if (originalSuccess != null)
                 {
                     originalSuccess(c);
                 }
             };
             Action <ApiContainer> originalError = apiContainer.OnError;
             Action <ApiContainer> onError       = delegate(ApiContainer c)
             {
                 if (activeRequests.ContainsKey(key))
                 {
                     activeRequests.Remove(key);
                 }
                 try
                 {
                     if (onFailure != null)
                     {
                         onFailure(c);
                     }
                 }
                 catch (Exception ex3)
                 {
                     Debug.LogException(ex3);
                 }
                 if (originalError != null)
                 {
                     originalError(c);
                 }
             };
             apiContainer.OnSuccess = onSuccess2;
             apiContainer.OnError   = onError;
         }
         else
         {
             Action <ApiContainer> onSuccess3 = delegate(ApiContainer c)
             {
                 if (activeRequests.ContainsKey(key))
                 {
                     activeRequests.Remove(key);
                 }
                 try
                 {
                     if (onSuccess != null)
                     {
                         onSuccess(c);
                     }
                 }
                 catch (Exception ex2)
                 {
                     Debug.LogException(ex2);
                 }
                 ApiCache.Save(c.Model.id, c.Model, andClone: true);
             };
             Action <ApiContainer> onFailure2 = delegate(ApiContainer c)
             {
                 if (activeRequests.ContainsKey(key))
                 {
                     activeRequests.Remove(key);
                 }
                 try
                 {
                     if (onFailure != null)
                     {
                         onFailure(c);
                     }
                 }
                 catch (Exception ex)
                 {
                     Debug.LogException(ex);
                 }
             };
             ApiContainer apiContainer2 = MakeModelContainer(onSuccess3, onFailure2);
             activeRequests.Add(key, apiContainer2);
             SendGetRequest(apiContainer2, parameters, disableCache);
         }
     }
 }
Ejemplo n.º 15
0
        private static void RetryRequest(int requestId, HTTPRequest request, HTTPResponse resp, ApiContainer responseContainer, int retryCount, bool useCache, string errorMessage = "")
        {
            HTTPCacheService.DeleteEntity(request.Uri);
            string text = (resp != null) ? resp.StatusCode.ToString() : "No Status Code";

            if (retryCount > 0)
            {
                Debug.LogFormat("[{0}, {1}, {2}, {3}] Retrying request, because: {4}\n{5}", new object[6]
                {
                    requestId,
                    text,
                    request.MethodType.ToString(),
                    retryCount,
                    responseContainer.Error,
                    request.Uri
                });
                request.Callback = delegate(HTTPRequest originalRequest, HTTPResponse response)
                {
                    HandleReponse(requestId, originalRequest, response, responseContainer, retryCount, useCache);
                };
                request.Send();
            }
            else
            {
                if (!string.IsNullOrEmpty(errorMessage))
                {
                    responseContainer.Error = errorMessage;
                }
                Debug.LogFormat("[{0}, {1}, {2}, {3}] Abandoning request, because: {4}\n{5}", new object[6]
                {
                    requestId,
                    text,
                    request.MethodType.ToString(),
                    retryCount,
                    responseContainer.Error,
                    request.Uri
                });
                if (responseContainer.OnError != null)
                {
                    responseContainer.OnError(responseContainer);
                }
            }
        }
Ejemplo n.º 16
0
 public static void SendDeleteRequest(string target, ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null, CredentialsBundle credentials = null)
 {
     SendRequest(target, HTTPMethods.Delete, responseContainer, requestParams, authenticationRequired: true, disableCache: false, 3600f, 2, credentials);
 }
Ejemplo n.º 17
0
 public static void SendGetRequest(string target, ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null, bool disableCache = false, float cacheLifetime = 3600f, CredentialsBundle credentials = null)
 {
     SendRequest(target, HTTPMethods.Get, responseContainer, requestParams, authenticationRequired: true, disableCache, cacheLifetime, 2, credentials);
 }
Ejemplo n.º 18
0
 private static void SendRequestInternal(string endpoint, HTTPMethods method, ApiContainer responseContainer = null, Dictionary <string, object> requestParams = null, bool authenticationRequired = true, bool disableCache = false, float cacheLifetime = 3600f, int retryCount = 2, CredentialsBundle credentials = null)
 {
     if (responseContainer == null)
     {
         responseContainer = new ApiContainer();
     }
     if (API_ONLINE_MODE == ApiOnlineMode.Offline)
     {
         SendOfflineRequest(endpoint, method, responseContainer, requestParams);
     }
     else
     {
         if (API_ONLINE_MODE == ApiOnlineMode.Uninitialized)
         {
             Debug.LogError((object)"Api Web Request send before online mode is initialized.");
         }
         string apiUrl = GetApiUrl();
         Action action = delegate
         {
             string     uri     = apiUrl + endpoint;
             UriBuilder baseUri = new UriBuilder(uri);
             if (!string.IsNullOrEmpty(ApiKey))
             {
                 AppendQuery(ref baseUri, "apiKey=" + ApiKey);
             }
             if (API_ORGANIZATION == null)
             {
                 throw new Exception("ApiModel does not have it's organization set!");
             }
             AppendQuery(ref baseUri, "organization=" + API_ORGANIZATION);
             string text = null;
             if (requestParams != null)
             {
                 if (method == HTTPMethods.Get)
                 {
                     foreach (KeyValuePair <string, object> requestParam in requestParams)
                     {
                         string text2 = null;
                         AppendQuery(ref baseUri, string.Concat(str2: (!(requestParam.Value is string)) ? ((!typeof(List <>).IsAssignableFrom(requestParam.Value.GetType())) ? Json.Encode(requestParam.Value) : Json.Encode((requestParam.Value as IList).Cast <object>().ToArray())) : (requestParam.Value as string), str0: requestParam.Key, str1: "="));
                     }
                 }
                 else
                 {
                     text = Json.Encode(requestParams);
                 }
             }
             string uriPath  = baseUri.Uri.PathAndQuery;
             bool   useCache = !disableCache && method == HTTPMethods.Get;
             ApiCache.CachedResponse cachedResponse = (!useCache) ? null : ApiCache.GetOrClearCachedResponse(baseUri.Uri.PathAndQuery, cacheLifetime);
             if (cachedResponse != null)
             {
                 Logger.LogFormat(DebugLevel.API, "Using cached {0} request to {1}", method, baseUri.Uri);
                 try
                 {
                     if (responseContainer.OnComplete(success: true, baseUri.Uri.PathAndQuery, 200, string.Empty, () => cachedResponse.Data, () => cachedResponse.DataAsText, cachedResponse.Timestamp))
                     {
                         responseContainer.OnSuccess(responseContainer);
                     }
                     else
                     {
                         Logger.LogErrorFormat(DebugLevel.API, "Something went wrong re-serving data from cache for {0}", baseUri.Uri);
                     }
                 }
                 catch (Exception ex)
                 {
                     Debug.LogException(ex);
                 }
             }
             else if (method == HTTPMethods.Get && activeRequests.ContainsKey(uriPath))
             {
                 Logger.LogFormat(DebugLevel.API, "Piggy-backing {0} request to {1}", method, baseUri.Uri);
                 OnRequestFinishedDelegate originalCallback = activeRequests[uriPath].Callback;
                 activeRequests[uriPath].Callback = delegate(HTTPRequest req, HTTPResponse resp)
                 {
                     if (activeRequests.ContainsKey(uriPath))
                     {
                         activeRequests.Remove(uriPath);
                     }
                     if (originalCallback != null)
                     {
                         originalCallback(req, resp);
                     }
                     try
                     {
                         APIResponseHandler.HandleReponse(0, req, resp, responseContainer, retryCount, useCache);
                     }
                     catch (Exception ex2)
                     {
                         Debug.LogException(ex2);
                     }
                 };
             }
             else
             {
                 int requestId = ++lastRequestId;
                 Logger.LogFormat(DebugLevel.API, "[{0}] Sending {1} request to {2}", requestId, method, baseUri.Uri);
                 HTTPRequest hTTPRequest = new HTTPRequest(baseUri.Uri, delegate(HTTPRequest req, HTTPResponse resp)
                 {
                     if (activeRequests.ContainsKey(uriPath))
                     {
                         activeRequests.Remove(uriPath);
                     }
                     APIResponseHandler.HandleReponse(requestId, req, resp, responseContainer, retryCount, useCache);
                 });
                 if (authenticationRequired)
                 {
                     if (credentials != null)
                     {
                         hTTPRequest.Credentials = new Credentials(AuthenticationTypes.Basic, credentials.Username, credentials.Password);
                     }
                     else if (!string.IsNullOrEmpty(ApiCredentials.GetAuthToken()))
                     {
                         List <Cookie> cookies = hTTPRequest.Cookies;
                         cookies.Add(new Cookie("auth", ApiCredentials.GetAuthToken()));
                         hTTPRequest.Cookies = cookies;
                     }
                     else
                     {
                         Logger.LogErrorFormat(DebugLevel.API, "No credentials!");
                     }
                 }
                 hTTPRequest.AddHeader("X-Requested-With", "XMLHttpRequest");
                 hTTPRequest.AddHeader("X-MacAddress", DeviceID);
                 if (Tools.isClient)
                 {
                     hTTPRequest.AddHeader("X-Client-Version", Tools.ClientVersion);
                 }
                 else
                 {
                     hTTPRequest.AddHeader("X-SDK-Version", Tools.ClientVersion);
                 }
                 hTTPRequest.AddHeader("X-Platform", Tools.Platform);
                 hTTPRequest.AddHeader("Content-Type", (method != 0) ? "application/json" : "application/x-www-form-urlencoded");
                 hTTPRequest.AddHeader("Origin", "vrchat.com");
                 hTTPRequest.MethodType               = method;
                 hTTPRequest.ConnectTimeout           = TimeSpan.FromSeconds(20.0);
                 hTTPRequest.Timeout                  = TimeSpan.FromSeconds(60.0);
                 hTTPRequest.EnableTimoutForStreaming = true;
                 if (!string.IsNullOrEmpty(text))
                 {
                     hTTPRequest.RawData = Encoding.UTF8.GetBytes(text);
                 }
                 if (method == HTTPMethods.Get)
                 {
                     activeRequests.Add(uriPath, hTTPRequest);
                 }
                 hTTPRequest.DisableCache = true;
                 hTTPRequest.Send();
             }
             string key = endpoint.ToLower().Split('?')[0];
             if (!EndpointAccessTimes.ContainsKey(key))
             {
                 EndpointAccessTimes.Add(key, new EndpointAccessEntry
                 {
                     count = 1,
                     time  = Time.get_realtimeSinceStartup()
                 });
             }
             else
             {
                 EndpointAccessTimes[key].time = Time.get_realtimeSinceStartup();
                 EndpointAccessTimes[key].count++;
             }
         };
         if (endpoint != "config" && string.IsNullOrEmpty(ApiKey) && !IsOffline())
         {
             FetchApiKey(action);
         }
         else
         {
             action();
         }
     }
 }
Ejemplo n.º 19
0
        public static void HandleReponse(int requestId, HTTPRequest req, HTTPResponse resp, ApiContainer responseContainer, int retryCount = 0, bool useCache = false)
        {
            if (responseContainer == null)
            {
                Logger.LogError("ResponseContainer was null!");
            }
            else if (req == null)
            {
                responseContainer.Error = "The request was null.";
                if (responseContainer.OnError != null)
                {
                    responseContainer.OnError(responseContainer);
                }
            }
            else if (resp == null)
            {
                responseContainer.Error = "The response was null.";
                if (responseContainer.OnError != null)
                {
                    responseContainer.OnError(responseContainer);
                }
            }
            else
            {
                string text3;
                string text2;
                string text;
                string empty;
                string text4 = text3 = (text2 = (text = (empty = string.Empty)));
                try
                {
                    text4 = ((resp != null) ? resp.StatusCode.ToString() : "null");
                    text3 = ((req != null) ? req.MethodType.ToString() : "null");
                    text2 = ((req != null) ? req.Uri.ToString() : "null");
                    text  = ((resp != null) ? resp.DataAsText.Replace("{", "{{").Replace("}", "}}") : "null");
                    empty = ((req.RawData != null) ? Encoding.UTF8.GetString(req.RawData).Replace("{", "{{").Replace("}", "}}") : string.Empty);
                }
                catch (Exception ex)
                {
                    Logger.LogErrorFormat("Exception in reading response: {0}\n{1}", new object[2]
                    {
                        ex.Message,
                        ex.StackTrace
                    });
                    responseContainer.Error = "Bad response data.";
                    if (responseContainer.OnError != null)
                    {
                        responseContainer.OnError(responseContainer);
                    }
                    return;

                    IL_01ca :;
                }
                if (req.State == HTTPRequestStates.Finished && (resp == null || resp.StatusCode < 200 || resp.StatusCode >= 400))
                {
                    req.State = HTTPRequestStates.Error;
                }
                responseContainer.Cookies = ((resp != null && resp.Cookies != null) ? (from c in resp.Cookies
                                                                                       where c != null
                                                                                       select new KeyValuePair <string, string>(c.Name, c.Value)).ToDictionary((KeyValuePair <string, string> t) => t.Key, (KeyValuePair <string, string> t) => t.Value) : new Dictionary <string, string>());
                try
                {
                    switch (req.State)
                    {
                    case HTTPRequestStates.Finished:
                        responseContainer.OnComplete(resp.IsSuccess, req.Uri.PathAndQuery, resp.StatusCode, resp.Message, () => resp.Data, () => resp.DataAsText);
                        if (!responseContainer.IsValid)
                        {
                            RetryRequest(requestId, req, resp, responseContainer, --retryCount, useCache, string.Empty);
                        }
                        else
                        {
                            if (useCache && req.MethodType == HTTPMethods.Get)
                            {
                                ApiCache.CacheResponse(req.Uri.PathAndQuery, resp.Data);
                            }
                            if (responseContainer.OnSuccess != null)
                            {
                                responseContainer.OnSuccess(responseContainer);
                            }
                        }
                        break;

                    default:
                    {
                        string text5 = (req.Exception == null) ? "No Exception" : req.Exception.Message;
                        Logger.LogErrorFormat(DebugLevel.API, "[{0}, {1}, {2}, {3}] Request Finished with Error!\n{4}\n{5}\n{6}\n{7}", requestId, text4, text3, retryCount, text2, empty, text5, text);
                        responseContainer.OnComplete(success: false, req.Uri.PathAndQuery, resp.StatusCode, resp.Message, () => resp.Data, () => resp.DataAsText);
                        if (resp.StatusCode >= 400 && resp.StatusCode < 500)
                        {
                            retryCount = 0;
                        }
                        RetryRequest(requestId, req, resp, responseContainer, --retryCount, useCache, string.Empty);
                        break;
                    }

                    case HTTPRequestStates.Aborted:
                        Logger.LogErrorFormat(DebugLevel.API, "[{0}, {1}, {2}, {3}] Request Request Aborted!\n{4}\n{5}", requestId, text4, text3, retryCount, text2, text);
                        responseContainer.Error = "The request was cancelled.";
                        if (responseContainer.OnError != null)
                        {
                            responseContainer.OnError(responseContainer);
                        }
                        break;

                    case HTTPRequestStates.ConnectionTimedOut:
                        Logger.LogErrorFormat(DebugLevel.API, "[{0}, {1}, {2}, {3}] Connection Timed Out!\n{4}\n{4}", requestId, text4, text3, retryCount, text2, text);
                        RetryRequest(requestId, req, resp, responseContainer, --retryCount, useCache, "The request timed out.");
                        break;

                    case HTTPRequestStates.TimedOut:
                        Logger.LogErrorFormat(DebugLevel.API, "[{0}, {1}, {2}, {3}] Processing the request Timed Out!\n{4}\n{5}", requestId, text4, text3, retryCount, text2, text);
                        RetryRequest(requestId, req, resp, responseContainer, --retryCount, useCache, "The request timed out.");
                        break;
                    }
                }
                catch (Exception ex2)
                {
                    Logger.LogErrorFormat("Exception handling {0}: {1}\n{2}", req.State, ex2.Message, ex2.StackTrace);
                }
            }
        }