2015-10-16 23:44:35 +01:00
|
|
|
using System;
|
2015-07-07 17:11:11 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Net;
|
2017-05-31 16:25:56 +01:00
|
|
|
using System.Net.Http;
|
|
|
|
using System.Net.Http.Headers;
|
2015-07-07 17:11:11 +01:00
|
|
|
using System.Text;
|
2015-11-05 20:20:22 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-03-09 19:47:39 +00:00
|
|
|
using Newtonsoft.Json;
|
2016-07-07 20:23:36 +01:00
|
|
|
using SpotifyAPI.Web.Models;
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
internal class SpotifyWebClient : IClient
|
|
|
|
{
|
|
|
|
public JsonSerializerSettings JsonSettings { get; set; }
|
|
|
|
private readonly Encoding _encoding = Encoding.UTF8;
|
|
|
|
private readonly HttpClient _client;
|
2018-09-17 13:44:22 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
private const string UnknownErrorJson = "{\"error\": { \"status\": 0, \"message\": \"SpotifyAPI.Web - Unkown Spotify Error\" }}";
|
2018-12-22 20:40:08 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public SpotifyWebClient(ProxyConfig proxyConfig = null)
|
|
|
|
{
|
|
|
|
HttpClientHandler clientHandler = ProxyConfig.CreateClientHandler(proxyConfig);
|
|
|
|
_client = new HttpClient(clientHandler);
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, string> Download(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, byte[]> raw = DownloadRaw(url, headers);
|
|
|
|
return new Tuple<ResponseInfo, string>(raw.Item1, raw.Item2.Length > 0 ? _encoding.GetString(raw.Item2) : "{}");
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, string>> DownloadAsync(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, byte[]> raw = await DownloadRawAsync(url, headers).ConfigureAwait(false);
|
|
|
|
return new Tuple<ResponseInfo, string>(raw.Item1, raw.Item2.Length > 0 ? _encoding.GetString(raw.Item2) : "{}");
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, byte[]> DownloadRaw(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
if (headers != null)
|
|
|
|
{
|
|
|
|
AddHeaders(headers);
|
|
|
|
}
|
|
|
|
using(HttpResponseMessage response = Task.Run(() => _client.GetAsync(url)).Result)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, byte[]>(new ResponseInfo
|
|
|
|
{
|
|
|
|
StatusCode = response.StatusCode,
|
|
|
|
Headers = ConvertHeaders(response.Headers)
|
|
|
|
}, Task.Run(() => response.Content.ReadAsByteArrayAsync()).Result);
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, byte[]>> DownloadRawAsync(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
if (headers != null)
|
|
|
|
{
|
|
|
|
AddHeaders(headers);
|
|
|
|
}
|
|
|
|
using(HttpResponseMessage response = await _client.GetAsync(url).ConfigureAwait(false))
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, byte[]>(new ResponseInfo
|
|
|
|
{
|
|
|
|
StatusCode = response.StatusCode,
|
|
|
|
Headers = ConvertHeaders(response.Headers)
|
|
|
|
}, await response.Content.ReadAsByteArrayAsync());
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, T> DownloadJson<T>(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, string> response = Download(url, headers);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(response.Item2, JsonSettings));
|
|
|
|
}
|
|
|
|
catch (JsonException)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(UnknownErrorJson, JsonSettings));
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, T>> DownloadJsonAsync<T>(string url, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, string> response = await DownloadAsync(url, headers).ConfigureAwait(false);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(response.Item2, JsonSettings));
|
|
|
|
}
|
|
|
|
catch (JsonException)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(UnknownErrorJson, JsonSettings));
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, string> Upload(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, byte[]> data = UploadRaw(url, body, method, headers);
|
|
|
|
return new Tuple<ResponseInfo, string>(data.Item1, data.Item2.Length > 0 ? _encoding.GetString(data.Item2) : "{}");
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, string>> UploadAsync(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, byte[]> data = await UploadRawAsync(url, body, method, headers).ConfigureAwait(false);
|
|
|
|
return new Tuple<ResponseInfo, string>(data.Item1, data.Item2.Length > 0 ? _encoding.GetString(data.Item2) : "{}");
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, byte[]> UploadRaw(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
if (headers != null)
|
|
|
|
{
|
|
|
|
AddHeaders(headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpRequestMessage message = new HttpRequestMessage(new HttpMethod(method), url)
|
|
|
|
{
|
|
|
|
Content = new StringContent(body, _encoding)
|
|
|
|
};
|
|
|
|
using(HttpResponseMessage response = Task.Run(() => _client.SendAsync(message)).Result)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, byte[]>(new ResponseInfo
|
|
|
|
{
|
|
|
|
StatusCode = response.StatusCode,
|
|
|
|
Headers = ConvertHeaders(response.Headers)
|
|
|
|
}, Task.Run(() => response.Content.ReadAsByteArrayAsync()).Result);
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, byte[]>> UploadRawAsync(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
if (headers != null)
|
|
|
|
{
|
|
|
|
AddHeaders(headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpRequestMessage message = new HttpRequestMessage(new HttpMethod(method), url)
|
|
|
|
{
|
|
|
|
Content = new StringContent(body, _encoding)
|
|
|
|
};
|
|
|
|
using(HttpResponseMessage response = await _client.SendAsync(message))
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, byte[]>(new ResponseInfo
|
|
|
|
{
|
|
|
|
StatusCode = response.StatusCode,
|
|
|
|
Headers = ConvertHeaders(response.Headers)
|
|
|
|
}, await response.Content.ReadAsByteArrayAsync());
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public Tuple<ResponseInfo, T> UploadJson<T>(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, string> response = Upload(url, body, method, headers);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(response.Item2, JsonSettings));
|
|
|
|
}
|
|
|
|
catch (JsonException)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(UnknownErrorJson, JsonSettings));
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public async Task<Tuple<ResponseInfo, T>> UploadJsonAsync<T>(string url, string body, string method, Dictionary<string, string> headers = null)
|
|
|
|
{
|
|
|
|
Tuple<ResponseInfo, string> response = await UploadAsync(url, body, method, headers).ConfigureAwait(false);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(response.Item2, JsonSettings));
|
|
|
|
}
|
|
|
|
catch (JsonException)
|
|
|
|
{
|
|
|
|
return new Tuple<ResponseInfo, T>(response.Item1, JsonConvert.DeserializeObject<T>(UnknownErrorJson, JsonSettings));
|
|
|
|
}
|
|
|
|
}
|
2015-11-05 20:20:22 +00:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
_client.Dispose();
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
private static WebHeaderCollection ConvertHeaders(HttpResponseHeaders headers)
|
|
|
|
{
|
|
|
|
WebHeaderCollection newHeaders = new WebHeaderCollection();
|
|
|
|
foreach (KeyValuePair<string, IEnumerable<string>> headerPair in headers)
|
|
|
|
{
|
|
|
|
foreach (string headerValue in headerPair.Value)
|
2015-07-07 17:11:11 +01:00
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
newHeaders.Add(headerPair.Key, headerValue);
|
2015-07-07 17:11:11 +01:00
|
|
|
}
|
2020-03-09 19:47:39 +00:00
|
|
|
}
|
|
|
|
return newHeaders;
|
|
|
|
}
|
2018-03-25 18:39:19 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
private void AddHeaders(Dictionary<string, string> headers)
|
|
|
|
{
|
|
|
|
_client.DefaultRequestHeaders.Clear();
|
|
|
|
foreach (KeyValuePair<string, string> headerPair in headers)
|
|
|
|
{
|
|
|
|
_client.DefaultRequestHeaders.TryAddWithoutValidation(headerPair.Key, headerPair.Value);
|
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
}
|
2020-03-09 19:47:39 +00:00
|
|
|
}
|
2015-07-07 17:11:11 +01:00
|
|
|
}
|