2021-11-11 16:33:40 +03:00
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using AngleSharp;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
namespace Rehau.Sku.Assist
|
|
|
|
|
{
|
|
|
|
|
static class SkuAssist
|
|
|
|
|
{
|
2021-11-14 12:27:49 +03:00
|
|
|
|
public async static Task<AngleSharp.Dom.IDocument> GetDocumentAsync(string request, HttpClient httpClient)
|
2021-11-11 16:33:40 +03:00
|
|
|
|
{
|
2021-11-14 12:27:49 +03:00
|
|
|
|
string uri = "https://shop-rehau.ru/catalogsearch/result/?q=" + request;
|
2021-11-11 16:33:40 +03:00
|
|
|
|
|
|
|
|
|
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
|
2021-11-14 12:27:49 +03:00
|
|
|
|
HttpResponseMessage response = await httpClient.GetAsync(uri);
|
2021-11-11 16:33:40 +03:00
|
|
|
|
response.EnsureSuccessStatusCode();
|
|
|
|
|
|
|
|
|
|
IConfiguration config = Configuration.Default;
|
|
|
|
|
IBrowsingContext context = BrowsingContext.New(config);
|
|
|
|
|
|
|
|
|
|
string source = await response.Content.ReadAsStringAsync();
|
|
|
|
|
return await context.OpenAsync(req => req.Content(source));
|
|
|
|
|
}
|
2021-11-11 21:13:21 +03:00
|
|
|
|
|
|
|
|
|
public static string GetResultFromDocument(AngleSharp.Dom.IDocument document)
|
|
|
|
|
{
|
|
|
|
|
var result = document
|
|
|
|
|
.All
|
|
|
|
|
.Where(e => e.ClassName == "product-item__desc-top")
|
|
|
|
|
.Select(e => new { sku = e.Children[0].TextContent, title = e.Children[1].TextContent.Trim(new[] { '\n', ' ' }) })
|
|
|
|
|
.Where(t => !t.sku.Any(c => char.IsLetter(c)))
|
|
|
|
|
.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
return result == null ? "Не найдено" : $"{result.title} ({result.sku})";
|
|
|
|
|
}
|
2021-11-11 16:33:40 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|