// _ _ _ ____ _ _____ // / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ // / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ // / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || | | | | || _|| (_| || | | | | | | | // /_/ \_\|_| \___||_| |_||_||____/ \__|\___| \__,_||_| |_| |_||_| \__,_||_| |_| |_| |_| // | // Copyright 2015-2020 Ɓukasz "JustArchi" Domeradzki // Contact: JustArchi@JustArchi.net // | // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // | // http://www.apache.org/licenses/LICENSE-2.0 // | // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Threading.Tasks; using System.Xml; using AngleSharp; using AngleSharp.Dom; using ArchiSteamFarm.Localization; using ArchiSteamFarm.NLog; using JetBrains.Annotations; using Newtonsoft.Json; namespace ArchiSteamFarm { public sealed class WebBrowser : IDisposable { [PublicAPI] public const byte MaxTries = 5; // Defines maximum number of recommended tries for a single request internal const byte MaxConnections = 5; // Defines maximum number of connections per ServicePoint. Be careful, as it also defines maximum number of sockets in CLOSE_WAIT state private const byte ExtendedTimeoutMultiplier = 10; // Defines multiplier of timeout for WebBrowsers dealing with huge data (ASF update) private const byte MaxIdleTime = 15; // Defines in seconds, how long socket is allowed to stay in CLOSE_WAIT state after there are no connections to it [PublicAPI] public readonly CookieContainer CookieContainer = new CookieContainer(); [PublicAPI] public TimeSpan Timeout => HttpClient.Timeout; private readonly ArchiLogger ArchiLogger; private readonly HttpClient HttpClient; private readonly HttpClientHandler HttpClientHandler; internal WebBrowser(ArchiLogger archiLogger, IWebProxy? webProxy = null, bool extendedTimeout = false) { ArchiLogger = archiLogger ?? throw new ArgumentNullException(nameof(archiLogger)); HttpClientHandler = new HttpClientHandler { AllowAutoRedirect = false, // This must be false if we want to handle custom redirection schemes such as "steammobile://" #if NETFRAMEWORK AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip, #else AutomaticDecompression = DecompressionMethods.All, #endif CookieContainer = CookieContainer }; if (webProxy != null) { HttpClientHandler.Proxy = webProxy; HttpClientHandler.UseProxy = true; } if (!RuntimeCompatibility.IsRunningOnMono) { HttpClientHandler.MaxConnectionsPerServer = MaxConnections; } HttpClient = GenerateDisposableHttpClient(extendedTimeout); } public void Dispose() { HttpClient.Dispose(); HttpClientHandler.Dispose(); } [PublicAPI] public HttpClient GenerateDisposableHttpClient(bool extendedTimeout = false) { if (ASF.GlobalConfig == null) { throw new ArgumentNullException(nameof(ASF.GlobalConfig)); } HttpClient result = new HttpClient(HttpClientHandler, false) { #if !NETFRAMEWORK DefaultRequestVersion = HttpVersion.Version20, #endif Timeout = TimeSpan.FromSeconds(extendedTimeout ? ExtendedTimeoutMultiplier * ASF.GlobalConfig.ConnectionTimeout : ASF.GlobalConfig.ConnectionTimeout) }; // Most web services expect that UserAgent is set, so we declare it globally // If you by any chance came here with a very "clever" idea of hiding your ass by changing default ASF user-agent then here is a very good advice from me: don't, for your own safety - you've been warned result.DefaultRequestHeaders.UserAgent.ParseAdd(SharedInfo.PublicIdentifier + "/" + SharedInfo.Version + " (+" + SharedInfo.ProjectURL + ")"); return result; } [PublicAPI] public async Task UrlGetToBinary(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries, IProgress? progressReporter = null) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } BinaryResponse? result = null; for (byte i = 0; i < maxTries; i++) { await using StreamResponse? response = await UrlGetToStream(request, headers, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new BinaryResponse(response); } // The content isn't available and it's not an error, try again continue; } progressReporter?.Report(0); #if NETFRAMEWORK using MemoryStream ms = new MemoryStream((int) response.Length); #else await using MemoryStream ms = new MemoryStream((int) response.Length); #endif try { byte batch = 0; long readThisBatch = 0; long batchIncreaseSize = response.Length / 100; byte[] buffer = new byte[8192]; // This is HttpClient's buffer, using more doesn't make sense while (response.Content.CanRead) { int read = await response.Content.ReadAsync(buffer, 0, buffer.Length).ConfigureAwait(false); if (read == 0) { break; } await ms.WriteAsync(buffer, 0, read).ConfigureAwait(false); if ((batchIncreaseSize == 0) || (batch >= 99)) { continue; } readThisBatch += read; if (readThisBatch < batchIncreaseSize) { continue; } readThisBatch -= batchIncreaseSize; progressReporter?.Report(++batch); } } catch (Exception e) { ArchiLogger.LogGenericDebuggingException(e); return null; } progressReporter?.Report(100); return new BinaryResponse(response, ms.ToArray()); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlGetToHtmlDocument(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } HtmlDocumentResponse? result = null; for (byte i = 0; i < maxTries; i++) { await using StreamResponse? response = await UrlGetToStream(request, headers, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new HtmlDocumentResponse(response); } // The content isn't available and it's not an error, try again continue; } try { result = await HtmlDocumentResponse.Create(response).ConfigureAwait(false); } catch (Exception e) { ArchiLogger.LogGenericWarningException(e); continue; } return result; } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task?> UrlGetToJsonObject(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) where T : class { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } ObjectResponse? result = null; for (byte i = 0; i < maxTries; i++) { await using StreamResponse? response = await UrlGetToStream(request, headers, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new ObjectResponse(response); } // The content isn't available and it's not an error, try again continue; } T? obj; try { using StreamReader streamReader = new StreamReader(response.Content); using JsonReader jsonReader = new JsonTextReader(streamReader); JsonSerializer serializer = new JsonSerializer(); obj = serializer.Deserialize(jsonReader); if (obj == null) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorIsEmpty, nameof(obj))); continue; } } catch (Exception e) { ArchiLogger.LogGenericWarningException(e); continue; } return new ObjectResponse(response, obj); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlGetToStream(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } StreamResponse? result = null; for (byte i = 0; i < maxTries; i++) { HttpResponseMessage? response = await InternalGet(request, headers, referer, requestOptions, HttpCompletionOption.ResponseHeadersRead).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new StreamResponse(response); } // The content isn't available and it's not an error, try again continue; } return new StreamResponse(response, await response.Content.ReadAsStreamAsync().ConfigureAwait(false)); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlGetToString(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } StringResponse? result = null; for (byte i = 0; i < maxTries; i++) { using HttpResponseMessage? response = await InternalGet(request, headers, referer).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new StringResponse(response); } // The content isn't available and it's not an error, try again continue; } return new StringResponse(response, await response.Content.ReadAsStringAsync().ConfigureAwait(false)); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlGetToXmlDocument(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } XmlDocumentResponse? result = null; for (byte i = 0; i < maxTries; i++) { await using StreamResponse? response = await UrlGetToStream(request, headers, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new XmlDocumentResponse(response); } // The content isn't available and it's not an error, try again continue; } XmlDocument xmlDocument = new XmlDocument(); try { xmlDocument.Load(response.Content); } catch (Exception e) { ArchiLogger.LogGenericWarningException(e); continue; } return new XmlDocumentResponse(response, xmlDocument); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlHead(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } BasicResponse? result = null; for (byte i = 0; i < maxTries; i++) { using HttpResponseMessage? response = await InternalHead(request, headers, referer).ConfigureAwait(false); if (response == null) { continue; } if (response.StatusCode.IsClientErrorCode()) { if (requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { result = new BasicResponse(response); } break; } if (response.StatusCode.IsServerErrorCode()) { if (requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { result = new BasicResponse(response); } continue; } return new BasicResponse(response); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlPost(string request, IReadOnlyCollection>? headers = null, T? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) where T : class { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } BasicResponse? result = null; for (byte i = 0; i < maxTries; i++) { using HttpResponseMessage? response = await InternalPost(request, headers, data, referer).ConfigureAwait(false); if (response == null) { continue; } if (response.StatusCode.IsClientErrorCode()) { if (requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { result = new BasicResponse(response); } break; } if (response.StatusCode.IsServerErrorCode()) { if (requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { result = new BasicResponse(response); } continue; } return new BasicResponse(response); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlPostToHtmlDocument(string request, IReadOnlyCollection>? headers = null, T? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) where T : class { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } HtmlDocumentResponse? result = null; for (byte i = 0; i < maxTries; i++) { await using StreamResponse? response = await UrlPostToStream(request, headers, data, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new HtmlDocumentResponse(response); } // The content isn't available and it's not an error, try again continue; } try { result = await HtmlDocumentResponse.Create(response).ConfigureAwait(false); } catch (Exception e) { ArchiLogger.LogGenericWarningException(e); continue; } return result; } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task?> UrlPostToJsonObject(string request, IReadOnlyCollection>? headers = null, TData? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) where TResult : class where TData : class { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } ObjectResponse? result = null; for (byte i = 0; (i < maxTries) && (result == null); i++) { await using StreamResponse? response = await UrlPostToStream(request, headers, data, referer, requestOptions | ERequestOptions.ReturnClientErrors, 1).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new ObjectResponse(response); } // The content isn't available and it's not an error, try again continue; } TResult? obj; try { using StreamReader steamReader = new StreamReader(response.Content); using JsonReader jsonReader = new JsonTextReader(steamReader); JsonSerializer serializer = new JsonSerializer(); obj = serializer.Deserialize(jsonReader); if (obj == null) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorIsEmpty, nameof(obj))); continue; } } catch (Exception e) { ArchiLogger.LogGenericWarningException(e); continue; } return new ObjectResponse(response, obj); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } [PublicAPI] public async Task UrlPostToStream(string request, IReadOnlyCollection>? headers = null, T? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, byte maxTries = MaxTries) where T : class { if (string.IsNullOrEmpty(request) || (maxTries == 0)) { throw new ArgumentNullException(nameof(request) + " || " + nameof(maxTries)); } StreamResponse? result = null; for (byte i = 0; i < maxTries; i++) { HttpResponseMessage? response = await InternalPost(request, headers, data, referer, requestOptions, HttpCompletionOption.ResponseHeadersRead).ConfigureAwait(false); if (response == null) { // Request timed out, try again continue; } bool handleError = false; if (response.StatusCode.IsClientErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnClientErrors)) { // We're not handling this error, do not try again break; } handleError = true; } else if (response.StatusCode.IsServerErrorCode()) { if (!requestOptions.HasFlag(ERequestOptions.ReturnServerErrors)) { // We're not handling this error, try again continue; } handleError = true; } if (response.Content == null) { if (handleError) { // We're handling this error, the content isn't available, deal with it return new StreamResponse(response); } // The content isn't available and it's not an error, try again continue; } return new StreamResponse(response, await response.Content.ReadAsStreamAsync().ConfigureAwait(false)); } if (maxTries > 1) { ArchiLogger.LogGenericWarning(string.Format(Strings.ErrorRequestFailedTooManyTimes, maxTries)); ArchiLogger.LogGenericDebug(string.Format(Strings.ErrorFailingRequest, request)); } return result; } internal static void Init() { // Set max connection limit from default of 2 to desired value ServicePointManager.DefaultConnectionLimit = MaxConnections; // Set max idle time from default of 100 seconds (100 * 1000) to desired value ServicePointManager.MaxServicePointIdleTime = MaxIdleTime * 1000; // Don't use Expect100Continue, we're sure about our POSTs, save some TCP packets ServicePointManager.Expect100Continue = false; // Reuse ports if possible if (!RuntimeCompatibility.IsRunningOnMono) { ServicePointManager.ReusePort = true; } } private async Task InternalGet(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, HttpCompletionOption httpCompletionOption = HttpCompletionOption.ResponseContentRead) { if (string.IsNullOrEmpty(request)) { throw new ArgumentNullException(nameof(request)); } return await InternalRequest(new Uri(request), HttpMethod.Get, headers, null, referer, requestOptions, httpCompletionOption).ConfigureAwait(false); } private async Task InternalHead(string request, IReadOnlyCollection>? headers = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, HttpCompletionOption httpCompletionOption = HttpCompletionOption.ResponseContentRead) { if (string.IsNullOrEmpty(request)) { throw new ArgumentNullException(nameof(request)); } return await InternalRequest(new Uri(request), HttpMethod.Head, headers, null, referer, requestOptions, httpCompletionOption).ConfigureAwait(false); } private async Task InternalPost(string request, IReadOnlyCollection>? headers = null, T? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, HttpCompletionOption httpCompletionOption = HttpCompletionOption.ResponseContentRead) where T : class { if (string.IsNullOrEmpty(request)) { throw new ArgumentNullException(nameof(request)); } return await InternalRequest(new Uri(request), HttpMethod.Post, headers, data, referer, requestOptions, httpCompletionOption).ConfigureAwait(false); } private async Task InternalRequest(Uri requestUri, HttpMethod httpMethod, IReadOnlyCollection>? headers = null, T? data = null, string? referer = null, ERequestOptions requestOptions = ERequestOptions.None, HttpCompletionOption httpCompletionOption = HttpCompletionOption.ResponseContentRead, byte maxRedirections = MaxTries) where T : class { if ((requestUri == null) || (httpMethod == null)) { throw new ArgumentNullException(nameof(requestUri) + " || " + nameof(httpMethod)); } HttpResponseMessage response; using (HttpRequestMessage request = new HttpRequestMessage(httpMethod, requestUri)) { #if !NETFRAMEWORK request.Version = HttpClient.DefaultRequestVersion; #endif if (headers != null) { foreach ((string header, string value) in headers) { request.Headers.Add(header, value); } } if (data != null) { switch (data) { case HttpContent content: request.Content = content; break; case IReadOnlyCollection> dictionary: try { request.Content = new FormUrlEncodedContent(dictionary); } catch (UriFormatException) { request.Content = new StringContent(string.Join("&", dictionary.Select(kv => WebUtility.UrlEncode(kv.Key) + "=" + WebUtility.UrlEncode(kv.Value))), null, "application/x-www-form-urlencoded"); } break; case string text: request.Content = new StringContent(text); break; default: request.Content = new StringContent(JsonConvert.SerializeObject(data), Encoding.UTF8, "application/json"); break; } } if (!string.IsNullOrEmpty(referer)) { request.Headers.Referrer = new Uri(referer!); } if (Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug(httpMethod + " " + requestUri); } try { response = await HttpClient.SendAsync(request, httpCompletionOption).ConfigureAwait(false); } catch (Exception e) { ArchiLogger.LogGenericDebuggingException(e); return null; } finally { if (data is HttpContent) { // We reset the request content to null, as our http content will get disposed otherwise, and we still need it for subsequent calls, such as redirections or retries request.Content = null; } } } if (response == null) { if (Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug("null <- " + httpMethod + " " + requestUri); } return null; } if (Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug(response.StatusCode + " <- " + httpMethod + " " + requestUri); } if (response.IsSuccessStatusCode) { return response; } // WARNING: We still have not disposed response by now, make sure to dispose it ASAP if we're not returning it! if ((response.StatusCode >= HttpStatusCode.Ambiguous) && (response.StatusCode < HttpStatusCode.BadRequest) && (maxRedirections > 0)) { Uri redirectUri = response.Headers.Location; if (redirectUri.IsAbsoluteUri) { switch (redirectUri.Scheme) { case "http": case "https": break; case "steammobile": // Those redirections are invalid, but we're aware of that and we have extra logic for them return response; default: // We have no clue about those, but maybe HttpClient can handle them for us ArchiLogger.LogGenericError(string.Format(Strings.WarningUnknownValuePleaseReport, nameof(redirectUri.Scheme), redirectUri.Scheme)); break; } } else { redirectUri = new Uri(requestUri, redirectUri); } switch (response.StatusCode) { case HttpStatusCode.MovedPermanently: // Per https://tools.ietf.org/html/rfc7231#section-6.4.2, a 301 redirect may be performed using a GET request case HttpStatusCode.Redirect: // Per https://tools.ietf.org/html/rfc7231#section-6.4.3, a 302 redirect may be performed using a GET request case HttpStatusCode.SeeOther: // Per https://tools.ietf.org/html/rfc7231#section-6.4.4, a 303 redirect should be performed using a GET request if (httpMethod != HttpMethod.Head) { httpMethod = HttpMethod.Get; } // Data doesn't make any sense for a fetch request, clear it in case it's being used data = null; break; } response.Dispose(); // Per https://tools.ietf.org/html/rfc7231#section-7.1.2, a redirect location without a fragment should inherit the fragment from the original URI if (!string.IsNullOrEmpty(requestUri.Fragment) && string.IsNullOrEmpty(redirectUri.Fragment)) { redirectUri = new UriBuilder(redirectUri) { Fragment = requestUri.Fragment }.Uri; } return await InternalRequest(redirectUri, httpMethod, headers, data, referer, requestOptions, httpCompletionOption, --maxRedirections).ConfigureAwait(false); } if (!Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug(response.StatusCode + " <- " + httpMethod + " " + requestUri); } if (response.StatusCode.IsClientErrorCode()) { if (Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug(string.Format(Strings.Content, await response.Content.ReadAsStringAsync().ConfigureAwait(false))); } // Do not retry on client errors return response; } if (requestOptions.HasFlag(ERequestOptions.ReturnServerErrors) && response.StatusCode.IsServerErrorCode()) { // Do not retry on server errors in this case return response; } using (response) { if (Debugging.IsUserDebugging) { ArchiLogger.LogGenericDebug(string.Format(Strings.Content, await response.Content.ReadAsStringAsync().ConfigureAwait(false))); } return null; } } public class BasicResponse { [PublicAPI] public readonly HttpStatusCode StatusCode; internal readonly Uri FinalUri; internal BasicResponse(HttpResponseMessage httpResponseMessage) { if (httpResponseMessage == null) { throw new ArgumentNullException(nameof(httpResponseMessage)); } FinalUri = httpResponseMessage.Headers.Location ?? httpResponseMessage.RequestMessage.RequestUri; StatusCode = httpResponseMessage.StatusCode; } internal BasicResponse(BasicResponse basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } FinalUri = basicResponse.FinalUri; StatusCode = basicResponse.StatusCode; } } public sealed class BinaryResponse : BasicResponse { [PublicAPI] public readonly byte[]? Content; public BinaryResponse(BasicResponse basicResponse, byte[] content) : this(basicResponse) { if ((basicResponse == null) || (content == null)) { throw new ArgumentNullException(nameof(basicResponse) + " || " + nameof(content)); } Content = content; } public BinaryResponse(BasicResponse basicResponse) : base(basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } } } public sealed class HtmlDocumentResponse : BasicResponse, IDisposable { [PublicAPI] public readonly IDocument? Content; public HtmlDocumentResponse(BasicResponse basicResponse) : base(basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } } private HtmlDocumentResponse(BasicResponse basicResponse, IDocument content) : this(basicResponse) { if ((basicResponse == null) || (content == null)) { throw new ArgumentNullException(nameof(basicResponse) + " || " + nameof(content)); } Content = content; } public void Dispose() => Content?.Dispose(); [PublicAPI] public static async Task Create(StreamResponse streamResponse) { if (streamResponse == null) { throw new ArgumentNullException(nameof(streamResponse)); } IBrowsingContext context = BrowsingContext.New(); try { IDocument document = await context.OpenAsync(req => req.Content(streamResponse.Content, true)).ConfigureAwait(false); return new HtmlDocumentResponse(streamResponse, document); } catch (Exception e) { ASF.ArchiLogger.LogGenericWarningException(e); return null; } } } public sealed class ObjectResponse : BasicResponse where T : class { [PublicAPI] public readonly T? Content; public ObjectResponse(BasicResponse basicResponse, T content) : this(basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } Content = content; } public ObjectResponse(BasicResponse basicResponse) : base(basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } } } public sealed class StreamResponse : BasicResponse, IAsyncDisposable { [PublicAPI] public readonly Stream? Content; [PublicAPI] public readonly long Length; private readonly HttpResponseMessage ResponseMessage; internal StreamResponse(HttpResponseMessage httpResponseMessage, Stream content) : this(httpResponseMessage) { if ((httpResponseMessage == null) || (content == null)) { throw new ArgumentNullException(nameof(httpResponseMessage) + " || " + nameof(content)); } Content = content; } internal StreamResponse(HttpResponseMessage httpResponseMessage) : base(httpResponseMessage) { if (httpResponseMessage == null) { throw new ArgumentNullException(nameof(httpResponseMessage)); } Length = httpResponseMessage.Content.Headers.ContentLength.GetValueOrDefault(); ResponseMessage = httpResponseMessage; } public async ValueTask DisposeAsync() { if (Content != null) { await Content.DisposeAsync().ConfigureAwait(false); } ResponseMessage.Dispose(); } } public sealed class StringResponse : BasicResponse { [PublicAPI] public readonly string? Content; internal StringResponse(HttpResponseMessage httpResponseMessage, string content) : this(httpResponseMessage) { if ((httpResponseMessage == null) || (content == null)) { throw new ArgumentNullException(nameof(httpResponseMessage) + " || " + nameof(content)); } Content = content; } internal StringResponse(HttpResponseMessage httpResponseMessage) : base(httpResponseMessage) { if (httpResponseMessage == null) { throw new ArgumentNullException(nameof(httpResponseMessage)); } } } public sealed class XmlDocumentResponse : BasicResponse { [PublicAPI] public readonly XmlDocument? Content; public XmlDocumentResponse(BasicResponse basicResponse, XmlDocument content) : this(basicResponse) { if ((basicResponse == null) || (content == null)) { throw new ArgumentNullException(nameof(basicResponse) + " || " + nameof(content)); } Content = content; } public XmlDocumentResponse(BasicResponse basicResponse) : base(basicResponse) { if (basicResponse == null) { throw new ArgumentNullException(nameof(basicResponse)); } } } [Flags] public enum ERequestOptions : byte { None = 0, ReturnClientErrors = 1, ReturnServerErrors = 2 } } }