2023-05-16 07:43:57 +03:00
|
|
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
|
|
|
using Newtonsoft.Json;
|
2023-03-27 15:52:28 +03:00
|
|
|
|
using System.Net;
|
2022-12-20 12:03:05 +03:00
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-04-07 07:27:42 +03:00
|
|
|
|
namespace RhSolutions.Services;
|
|
|
|
|
|
2023-04-20 09:37:07 +03:00
|
|
|
|
public class DatabaseClient : IDatabaseClient
|
2022-12-20 12:03:05 +03:00
|
|
|
|
{
|
2023-05-16 07:43:57 +03:00
|
|
|
|
private readonly HttpClient _httpClient;
|
|
|
|
|
private readonly IMemoryCache _memoryCache;
|
2023-04-07 07:27:42 +03:00
|
|
|
|
public HttpStatusCode StatusCode { get; private set; }
|
|
|
|
|
|
2023-05-16 07:43:57 +03:00
|
|
|
|
public DatabaseClient(HttpClient httpClient, IMemoryCache memoryCache)
|
2022-12-20 12:03:05 +03:00
|
|
|
|
{
|
2023-05-16 07:43:57 +03:00
|
|
|
|
_httpClient = httpClient;
|
|
|
|
|
_memoryCache = memoryCache;
|
2023-04-07 07:27:42 +03:00
|
|
|
|
}
|
2023-03-27 13:55:58 +03:00
|
|
|
|
|
2023-04-07 07:27:42 +03:00
|
|
|
|
public async Task<IEnumerable<Product>> GetProducts(string line)
|
|
|
|
|
{
|
2023-04-20 06:58:27 +03:00
|
|
|
|
if (ProductSku.TryParse(line, out var skus))
|
2023-03-27 13:55:58 +03:00
|
|
|
|
{
|
2023-05-16 15:28:36 +03:00
|
|
|
|
ProductSku sku = skus.FirstOrDefault();
|
2023-10-06 15:06:42 +03:00
|
|
|
|
string request = @"https://rh.cebotari.ru/api/products/" + sku.ToString();
|
2023-05-16 15:28:36 +03:00
|
|
|
|
|
2023-10-06 15:06:42 +03:00
|
|
|
|
if (!_memoryCache.TryGetValue(sku, out IEnumerable<Product> products))
|
2023-05-16 15:28:36 +03:00
|
|
|
|
{
|
|
|
|
|
var response = await _httpClient.GetAsync(request);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
response.EnsureSuccessStatusCode();
|
|
|
|
|
string json = await response.Content.ReadAsStringAsync();
|
|
|
|
|
products = JsonConvert.DeserializeObject<IEnumerable<Product>>(json) ?? Enumerable.Empty<Product>();
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
StatusCode = response.StatusCode;
|
2023-10-06 15:06:42 +03:00
|
|
|
|
return Enumerable.Empty<Product>();
|
2023-05-16 15:28:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var cacheEntryOptions = new MemoryCacheEntryOptions()
|
|
|
|
|
.SetSlidingExpiration(TimeSpan.FromHours(1));
|
|
|
|
|
_memoryCache.Set(sku, products, cacheEntryOptions);
|
2023-10-06 15:06:42 +03:00
|
|
|
|
return products;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return products;
|
2023-05-16 15:28:36 +03:00
|
|
|
|
}
|
2023-03-27 13:55:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-07 07:27:42 +03:00
|
|
|
|
else
|
2023-11-02 23:14:49 +03:00
|
|
|
|
{
|
2023-11-02 23:31:17 +03:00
|
|
|
|
UriBuilder builder = new(@"https://rh.cebotari.ru/api/search")
|
|
|
|
|
{
|
|
|
|
|
Query = $"query={line.Replace("&", "%26")}"
|
|
|
|
|
};
|
|
|
|
|
string request = builder.Uri.AbsoluteUri;
|
2023-11-02 23:14:49 +03:00
|
|
|
|
|
2023-10-06 15:06:42 +03:00
|
|
|
|
if (!_memoryCache.TryGetValue(line, out IEnumerable<Product> products))
|
2023-05-16 15:28:36 +03:00
|
|
|
|
{
|
|
|
|
|
var response = await _httpClient.GetAsync(request);
|
2023-04-07 07:27:42 +03:00
|
|
|
|
|
2023-05-16 15:28:36 +03:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
response.EnsureSuccessStatusCode();
|
|
|
|
|
string json = await response.Content.ReadAsStringAsync();
|
|
|
|
|
products = JsonConvert.DeserializeObject<IEnumerable<Product>>(json) ?? Enumerable.Empty<Product>();
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
StatusCode = response.StatusCode;
|
2023-10-06 15:06:42 +03:00
|
|
|
|
return Enumerable.Empty<Product>();
|
2023-05-16 15:28:36 +03:00
|
|
|
|
}
|
2023-05-16 07:43:57 +03:00
|
|
|
|
|
2023-05-16 15:28:36 +03:00
|
|
|
|
var cacheEntryOptions = new MemoryCacheEntryOptions()
|
|
|
|
|
.SetSlidingExpiration(TimeSpan.FromHours(1));
|
|
|
|
|
_memoryCache.Set(line, products, cacheEntryOptions);
|
2023-10-06 15:06:42 +03:00
|
|
|
|
if (products.Any())
|
2023-05-16 15:28:36 +03:00
|
|
|
|
{
|
|
|
|
|
_memoryCache.Set(products.First(), products, cacheEntryOptions);
|
|
|
|
|
}
|
2023-10-06 15:06:42 +03:00
|
|
|
|
return products;
|
2023-05-16 07:43:57 +03:00
|
|
|
|
}
|
2023-10-06 15:06:42 +03:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return products;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-20 12:03:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|