diff options
Diffstat (limited to 'src/AddIn/RhDatabaseClient.cs')
-rw-r--r-- | src/AddIn/RhDatabaseClient.cs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/AddIn/RhDatabaseClient.cs b/src/AddIn/RhDatabaseClient.cs deleted file mode 100644 index 3a2de5c..0000000 --- a/src/AddIn/RhDatabaseClient.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Newtonsoft.Json; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Threading.Tasks; - -namespace RhSolutions -{ - public static class RhDatabaseClient - { - private static HttpClient httpClient = AddIn.httpClient; - - public static async Task<object> GetProduct(string line) - { - string request = @"https://rh.cebotari.ru/api/search?query=" + line; - - ServicePointManager.SecurityProtocol = - SecurityProtocolType.Tls12 | - SecurityProtocolType.Tls11 | - SecurityProtocolType.Tls; - - string response = await httpClient.GetStringAsync(request); - - var products = JsonConvert.DeserializeObject<IEnumerable<DbProduct>>(response); - - var product = products.FirstOrDefault(); - - if (product == null) - { - return null; - } - else - { - return $"{product.productSku} {product.name}"; - } - } - - private class DbProduct - { - public string productSku { get; set; } - public string name { get; set; } - } - } -}
\ No newline at end of file |