RhSolutions-AddIn/Assistant/SkuAssist.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2021-11-29 15:52:35 +03:00
using AngleSharp;
using AngleSharp.Dom;
using System.Linq;
using System.Net;
using System.Net.Http;
2021-11-29 17:10:43 +03:00
using System.Text.RegularExpressions;
2021-11-29 15:52:35 +03:00
using System.Threading.Tasks;
2021-11-11 16:33:40 +03:00
2021-11-29 15:52:35 +03:00
namespace Rehau.Sku.Assist
{
static class SkuAssist
{
public async static Task<string> GetContent(string request, HttpClient httpClient)
{
2021-11-29 17:10:43 +03:00
string uri = "https://shop-rehau.ru/catalogsearch/result/?q=" + request._CleanRequest();
2021-11-29 15:52:35 +03:00
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
2021-11-11 16:33:40 +03:00
2021-11-29 15:52:35 +03:00
return await httpClient.GetStringAsync(uri);
}
2021-11-11 16:33:40 +03:00
2021-11-29 16:36:04 +03:00
public async static Task<IDocument> GetDocument(Task<string> source)
2021-11-29 15:52:35 +03:00
{
IConfiguration config = Configuration.Default;
IBrowsingContext context = BrowsingContext.New(config);
2021-11-11 16:33:40 +03:00
2021-11-29 16:36:04 +03:00
return await context.OpenAsync(req => req.Content(source.Result));
2021-11-29 15:52:35 +03:00
}
2021-11-29 15:52:35 +03:00
public static IProduct GetProductFromDocument(IDocument document)
{
return document
.All
.Where(e => e.ClassName == "product-item__desc-top")
.Select(e => new Product(e.Children[0].TextContent, e.Children[1].TextContent.Trim(new[] { '\n', ' ' })))
.FirstOrDefault();
}
2021-11-29 17:10:43 +03:00
private static string _CleanRequest(this string input)
{
return input.Replace("+", " plus ");
}
2021-11-29 15:52:35 +03:00
}
}
2021-11-11 16:33:40 +03:00