18c5ad83da
- Removed obsolete data providers: `AnchorCollectionDataProvider`, `ContentsDataProvider`, and others, consolidating logic into new composable providers. - Added `ComposeDataProviders`, `SelectDataProvider`, and `RelationalDataProvider` for improved flexibility and reusability. - Introduced `IManySelectionComposableDataProvider` interface to support multiple-node selection. - Enhanced `UnitDownloader` with more robust progress tracking. - Updated package references and project dependencies for consistency. - Improved error handling in `StealthConfig` initialization for better fallback on browser drivers. - Incremented project version to 2.4.5.
87 lines
3.4 KiB
C#
87 lines
3.4 KiB
C#
using System;
|
|
using System.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Net.Http.Json;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Beam.Api;
|
|
/// <summary>
|
|
/// Wrapper that lets the response body be read any number of times (even concurrently).
|
|
/// </summary>
|
|
public sealed class ApiResponse {
|
|
private readonly byte[] _buffer;
|
|
|
|
private ApiResponse(HttpResponseMessage response, byte[] buffer, ILogger<ApiResponse>? logger, object? requestData = null) {
|
|
Response = response;
|
|
_buffer = buffer;
|
|
Logger = logger;
|
|
RequestData = requestData;
|
|
}
|
|
|
|
public HttpResponseMessage Response { get; }
|
|
public object? RequestData { get; }
|
|
public ILogger<ApiResponse>? Logger { get; }
|
|
|
|
/* ---------- creation ---------- */
|
|
|
|
public static async Task<ApiResponse> CreateAsync(
|
|
HttpResponseMessage response,
|
|
ILogger<ApiResponse>? logger = null,
|
|
object? requestData = null,
|
|
CancellationToken ct = default) {
|
|
if (response is null) throw new ArgumentNullException(nameof(response));
|
|
|
|
var buffer = response.Content is null
|
|
? []
|
|
: await response.Content.ReadAsByteArrayAsync(ct).ConfigureAwait(false);
|
|
|
|
return new ApiResponse(response, buffer, logger, requestData);
|
|
}
|
|
|
|
/* ---------- status helpers ---------- */
|
|
|
|
public bool Is404 => Response.StatusCode == HttpStatusCode.NotFound;
|
|
public bool Is403 => Response.StatusCode == HttpStatusCode.Forbidden;
|
|
public bool Is500 => Response.StatusCode == HttpStatusCode.InternalServerError;
|
|
public bool Is400 => Response.StatusCode == HttpStatusCode.BadRequest;
|
|
public bool Is200 => Response.IsSuccessStatusCode;
|
|
|
|
public ApiResponse OnError(Action<HttpStatusCode> errorHandler) {
|
|
if (!Is200) errorHandler(Response.StatusCode);
|
|
return this;
|
|
}
|
|
|
|
/* ---------- content helpers ---------- */
|
|
|
|
public Task<T?> AsSerializedObject<T>(CancellationToken ct = default) {
|
|
if (!Is200) throw new InvalidOperationException();
|
|
if (Response.Content?.Headers.ContentType?.MediaType != "application/json")
|
|
Logger?.LogWarning("Content-Type is not JSON, yet JSON deserialization was requested.");
|
|
|
|
return Task.FromResult(JsonSerializer.Deserialize<T>(_buffer));
|
|
}
|
|
|
|
public Task<T?> AsDynamicObject<T>(T _, CancellationToken ct = default)
|
|
=> AsSerializedObject<T>(ct);
|
|
|
|
public Task<string> AsString(CancellationToken ct = default) {
|
|
if (!Is200) Logger?.LogWarning("Non-success response; attempting to read content.");
|
|
return Task.FromResult(Encoding.UTF8.GetString(_buffer));
|
|
}
|
|
|
|
public Task<byte[]> AsBinary(CancellationToken ct = default) {
|
|
if (!Is200) Logger?.LogWarning("Non-success response; attempting to read content.");
|
|
return Task.FromResult(_buffer);
|
|
}
|
|
|
|
public Task<Stream> AsStream(CancellationToken ct = default) {
|
|
if (!Is200) Logger?.LogWarning("Non-success response; attempting to read content.");
|
|
return Task.FromResult<Stream>(new MemoryStream(_buffer, writable: false));
|
|
}
|
|
}
|