aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant
diff options
context:
space:
mode:
authorSerghei Cebotari <51533848+schebotar@users.noreply.github.com>2021-11-29 17:17:16 +0300
committerGitHub <noreply@github.com>2021-11-29 17:17:16 +0300
commitf5799a28eaef3f3ea24ba56dc16970d6203b73fd (patch)
tree9532114d293af3b356630f34f0a57781a75e9939 /src/Assistant
parent5fc6d09f63d843ce65eb4d9fb7cc35df2ea6cc1e (diff)
parentf3b6bfcd3e13519f648c3975d19b8f1d48130059 (diff)
Merge pull request #2 from schebotar/dev
bDev
Diffstat (limited to 'src/Assistant')
-rw-r--r--src/Assistant/IProduct.cs9
-rw-r--r--src/Assistant/Product.cs21
-rw-r--r--src/Assistant/SkuAssist.cs45
3 files changed, 75 insertions, 0 deletions
diff --git a/src/Assistant/IProduct.cs b/src/Assistant/IProduct.cs
new file mode 100644
index 0000000..aca3ff5
--- /dev/null
+++ b/src/Assistant/IProduct.cs
@@ -0,0 +1,9 @@
+namespace Rehau.Sku.Assist
+{
+ interface IProduct
+ {
+ string Sku { get; }
+ string Name { get; }
+ string Uri { get; }
+ }
+}
diff --git a/src/Assistant/Product.cs b/src/Assistant/Product.cs
new file mode 100644
index 0000000..17a7065
--- /dev/null
+++ b/src/Assistant/Product.cs
@@ -0,0 +1,21 @@
+namespace Rehau.Sku.Assist
+{
+ public class Product : IProduct
+ {
+ public string Sku { get; }
+ public string Name { get; }
+
+ public string Uri => throw new System.NotImplementedException();
+
+ public Product(string sku, string name)
+ {
+ Sku = sku;
+ Name = name;
+ }
+
+ public override string ToString()
+ {
+ return $"{this.Name} ({this.Sku})";
+ }
+ }
+} \ No newline at end of file
diff --git a/src/Assistant/SkuAssist.cs b/src/Assistant/SkuAssist.cs
new file mode 100644
index 0000000..dc36dc0
--- /dev/null
+++ b/src/Assistant/SkuAssist.cs
@@ -0,0 +1,45 @@
+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 ");
+ }
+ }
+}
+
+