mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
234 lines
6.6 KiB
C#
234 lines
6.6 KiB
C#
using System.Net.Http;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using System.Net;
|
|
|
|
namespace SpotifyAPI.Web.Http
|
|
{
|
|
public class APIConnector : IAPIConnector
|
|
{
|
|
private readonly Uri _baseAddress;
|
|
private readonly IAuthenticator _authenticator;
|
|
private readonly IJSONSerializer _jsonSerializer;
|
|
private readonly IHTTPClient _httpClient;
|
|
private readonly IRetryHandler _retryHandler;
|
|
private readonly IHTTPLogger _httpLogger;
|
|
|
|
public APIConnector(Uri baseAddress, IAuthenticator authenticator) :
|
|
this(baseAddress, authenticator, new NewtonsoftJSONSerializer(), new NetHttpClient(), null, null)
|
|
{ }
|
|
public APIConnector(
|
|
Uri baseAddress,
|
|
IAuthenticator authenticator,
|
|
IJSONSerializer jsonSerializer,
|
|
IHTTPClient httpClient,
|
|
IRetryHandler retryHandler,
|
|
IHTTPLogger httpLogger)
|
|
{
|
|
_baseAddress = baseAddress;
|
|
_authenticator = authenticator;
|
|
_jsonSerializer = jsonSerializer;
|
|
_httpClient = httpClient;
|
|
_retryHandler = retryHandler;
|
|
_httpLogger = httpLogger;
|
|
}
|
|
|
|
public Task<T> Delete<T>(Uri uri)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Delete);
|
|
}
|
|
|
|
public Task<T> Delete<T>(Uri uri, IDictionary<string, string> parameters)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Delete, parameters);
|
|
}
|
|
|
|
public Task<T> Delete<T>(Uri uri, IDictionary<string, string> parameters, object body)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Delete, parameters, body);
|
|
}
|
|
|
|
public Task<T> Get<T>(Uri uri)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Get);
|
|
}
|
|
|
|
public Task<T> Get<T>(Uri uri, IDictionary<string, string> parameters)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Get, parameters);
|
|
}
|
|
|
|
public Task<T> Post<T>(Uri uri)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Post);
|
|
}
|
|
|
|
public Task<T> Post<T>(Uri uri, IDictionary<string, string> parameters)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Post, parameters);
|
|
}
|
|
|
|
public Task<T> Post<T>(Uri uri, IDictionary<string, string> parameters, object body)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Post, parameters, body);
|
|
}
|
|
|
|
public Task<T> Put<T>(Uri uri)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Put);
|
|
}
|
|
|
|
public Task<T> Put<T>(Uri uri, IDictionary<string, string> parameters)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Put, parameters);
|
|
}
|
|
|
|
public Task<T> Put<T>(Uri uri, IDictionary<string, string> parameters, object body)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
return SendAPIRequest<T>(uri, HttpMethod.Put, parameters, body);
|
|
}
|
|
|
|
public async Task<HttpStatusCode> Put(Uri uri, IDictionary<string, string> parameters, object body)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
var response = await SendAPIRequestDetailed(uri, HttpMethod.Put, parameters, body);
|
|
return response.StatusCode;
|
|
}
|
|
|
|
public async Task<HttpStatusCode> PutRaw(Uri uri, IDictionary<string, string> parameters, object body)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
|
|
var response = await SendRawRequest(uri, HttpMethod.Put, parameters, body);
|
|
return response.StatusCode;
|
|
}
|
|
|
|
public void SetRequestTimeout(TimeSpan timeout)
|
|
{
|
|
_httpClient.SetRequestTimeout(timeout);
|
|
}
|
|
|
|
private IRequest CreateRequest(
|
|
Uri uri,
|
|
HttpMethod method,
|
|
IDictionary<string, string> parameters,
|
|
object body
|
|
)
|
|
{
|
|
Ensure.ArgumentNotNull(uri, nameof(uri));
|
|
Ensure.ArgumentNotNull(method, nameof(method));
|
|
|
|
return new Request
|
|
{
|
|
BaseAddress = _baseAddress,
|
|
Parameters = parameters,
|
|
Endpoint = uri,
|
|
Method = method,
|
|
Body = body
|
|
};
|
|
}
|
|
|
|
private async Task<IAPIResponse<T>> DoSerializedRequest<T>(IRequest request)
|
|
{
|
|
_jsonSerializer.SerializeRequest(request);
|
|
var response = await DoRequest(request);
|
|
return _jsonSerializer.DeserializeResponse<T>(response);
|
|
}
|
|
|
|
private async Task<IResponse> DoRequest(IRequest request)
|
|
{
|
|
await _authenticator.Apply(request).ConfigureAwait(false);
|
|
_httpLogger?.OnRequest(request);
|
|
IResponse response = await _httpClient.DoRequest(request).ConfigureAwait(false);
|
|
_httpLogger?.OnResponse(response);
|
|
if (_retryHandler != null)
|
|
{
|
|
response = await _retryHandler?.HandleRetry(request, response, async (newRequest) =>
|
|
{
|
|
await _authenticator.Apply(newRequest).ConfigureAwait(false);
|
|
var newResponse = await _httpClient.DoRequest(request).ConfigureAwait(false);
|
|
_httpLogger?.OnResponse(newResponse);
|
|
return newResponse;
|
|
});
|
|
}
|
|
ProcessErrors(response);
|
|
return response;
|
|
}
|
|
|
|
public Task<IResponse> SendRawRequest(
|
|
Uri uri,
|
|
HttpMethod method,
|
|
IDictionary<string, string> parameters = null,
|
|
object body = null
|
|
)
|
|
{
|
|
var request = CreateRequest(uri, method, parameters, body);
|
|
return DoRequest(request);
|
|
}
|
|
|
|
public async Task<T> SendAPIRequest<T>(
|
|
Uri uri,
|
|
HttpMethod method,
|
|
IDictionary<string, string> parameters = null,
|
|
object body = null
|
|
)
|
|
{
|
|
var request = CreateRequest(uri, method, parameters, body);
|
|
IAPIResponse<T> apiResponse = await DoSerializedRequest<T>(request);
|
|
return apiResponse.Body;
|
|
}
|
|
|
|
public async Task<IResponse> SendAPIRequestDetailed(
|
|
Uri uri,
|
|
HttpMethod method,
|
|
IDictionary<string, string> parameters = null,
|
|
object body = null
|
|
)
|
|
{
|
|
var request = CreateRequest(uri, method, parameters, body);
|
|
var response = await DoSerializedRequest<object>(request);
|
|
return response.Response;
|
|
}
|
|
|
|
private void ProcessErrors(IResponse response)
|
|
{
|
|
Ensure.ArgumentNotNull(response, nameof(response));
|
|
|
|
if ((int)response.StatusCode >= 200 && (int)response.StatusCode < 400)
|
|
{
|
|
return;
|
|
}
|
|
|
|
throw response.StatusCode switch
|
|
{
|
|
HttpStatusCode.Unauthorized => new APIUnauthorizedException(response),
|
|
_ => new APIException(response),
|
|
};
|
|
}
|
|
}
|
|
}
|