diff options
author | Serghei Cebotari <51533848+schebotar@users.noreply.github.com> | 2021-12-03 23:07:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-03 23:07:10 +0300 |
commit | f6f6678ccf54f0513726fbb61a99d437ed68bb81 (patch) | |
tree | c7a0b8ef9ea39a8c7c801b41ff37ff544c73d3bf /src/Assistant/SkuAssist.cs | |
parent | f5799a28eaef3f3ea24ba56dc16970d6203b73fd (diff) | |
parent | 4acde8a85b29ca968739bf1bf38d614a2830f6e7 (diff) |
Merge pull request #6 from schebotar/dev
Dev
Diffstat (limited to 'src/Assistant/SkuAssist.cs')
-rw-r--r-- | src/Assistant/SkuAssist.cs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/Assistant/SkuAssist.cs b/src/Assistant/SkuAssist.cs deleted file mode 100644 index dc36dc0..0000000 --- a/src/Assistant/SkuAssist.cs +++ /dev/null @@ -1,45 +0,0 @@ -using AngleSharp; -using AngleSharp.Dom; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Text.RegularExpressions; -using System.Threading.Tasks; - -namespace Rehau.Sku.Assist -{ - static class SkuAssist - { - public async static Task<string> GetContent(string request, HttpClient httpClient) - { - string uri = "https://shop-rehau.ru/catalogsearch/result/?q=" + request._CleanRequest(); - ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; - - return await httpClient.GetStringAsync(uri); - } - - public async static Task<IDocument> GetDocument(Task<string> source) - { - IConfiguration config = Configuration.Default; - IBrowsingContext context = BrowsingContext.New(config); - - return await context.OpenAsync(req => req.Content(source.Result)); - } - - 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(); - } - - private static string _CleanRequest(this string input) - { - return input.Replace("+", " plus "); - } - } -} - - |