Add IDatabaseClient DI
This commit is contained in:
parent
a3094fe275
commit
19007ff43e
@ -1,5 +1,6 @@
|
|||||||
using ExcelDna.Integration;
|
using ExcelDna.Integration;
|
||||||
using RhSolutions.Models;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Office.Interop.Excel;
|
||||||
using RhSolutions.Services;
|
using RhSolutions.Services;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
@ -11,10 +12,11 @@ namespace RhSolutions.AddIn
|
|||||||
public static object RHSOLUTIONS([ExcelArgument(Name = "\"Строка с названием материала\"")] string line)
|
public static object RHSOLUTIONS([ExcelArgument(Name = "\"Строка с названием материала\"")] string line)
|
||||||
{
|
{
|
||||||
object result;
|
object result;
|
||||||
|
IDatabaseClient databaseClient = RhSolutionsAddIn.ServiceProvider.GetService<IDatabaseClient>();
|
||||||
|
|
||||||
result = ExcelAsyncUtil.Run("Database request", line, delegate
|
result = ExcelAsyncUtil.Run("Database request", line, delegate
|
||||||
{
|
{
|
||||||
return RhDatabaseClient.GetProduct(line).GetAwaiter().GetResult();
|
return databaseClient.GetProduct(line).GetAwaiter().GetResult();
|
||||||
});
|
});
|
||||||
|
|
||||||
string parsedSku = Sku.TryParse(line, out var skus)
|
string parsedSku = Sku.TryParse(line, out var skus)
|
||||||
@ -49,7 +51,7 @@ namespace RhSolutions.AddIn
|
|||||||
|
|
||||||
[ExcelFunction]
|
[ExcelFunction]
|
||||||
public static void _ResetStatusBar()
|
public static void _ResetStatusBar()
|
||||||
{
|
{
|
||||||
RhSolutionsAddIn.Excel.StatusBar = false;
|
RhSolutionsAddIn.Excel.StatusBar = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,10 +15,13 @@ namespace RhSolutions.AddIn
|
|||||||
public void AutoOpen()
|
public void AutoOpen()
|
||||||
{
|
{
|
||||||
IServiceCollection Services = new ServiceCollection();
|
IServiceCollection Services = new ServiceCollection();
|
||||||
Services.AddHttpClient();
|
Excel = (Application)ExcelDnaUtil.Application;
|
||||||
|
|
||||||
|
Services.AddHttpClient()
|
||||||
|
.AddSingleton<IDatabaseClient, RhDatabaseClient>();
|
||||||
|
|
||||||
ServiceProvider = Services.BuildServiceProvider();
|
ServiceProvider = Services.BuildServiceProvider();
|
||||||
|
|
||||||
Excel = (Application)ExcelDnaUtil.Application;
|
|
||||||
IntelliSenseServer.Install();
|
IntelliSenseServer.Install();
|
||||||
RegistryUtil.Initialize();
|
RegistryUtil.Initialize();
|
||||||
EventsUtil.Initialize();
|
EventsUtil.Initialize();
|
||||||
@ -32,7 +35,6 @@ namespace RhSolutions.AddIn
|
|||||||
IntelliSenseServer.Uninstall();
|
IntelliSenseServer.Uninstall();
|
||||||
RegistryUtil.Uninitialize();
|
RegistryUtil.Uninitialize();
|
||||||
EventsUtil.Uninitialize();
|
EventsUtil.Uninitialize();
|
||||||
//HttpClient.Dispose();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,6 @@ using Microsoft.Office.Interop.Excel;
|
|||||||
using RhSolutions.AddIn;
|
using RhSolutions.AddIn;
|
||||||
using RhSolutions.Services;
|
using RhSolutions.Services;
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
@ -12,6 +12,18 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<StartupObject />
|
<StartupObject />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net472|AnyCPU'">
|
||||||
|
<NoWarn>1701;1702</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net472|AnyCPU'">
|
||||||
|
<NoWarn>1701;1702</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0-windows7.0|AnyCPU'">
|
||||||
|
<NoWarn>1701;1702</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0-windows7.0|AnyCPU'">
|
||||||
|
<NoWarn>1701;1702</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ExcelDna.AddIn" Version="1.6.0">
|
<PackageReference Include="ExcelDna.AddIn" Version="1.6.0">
|
||||||
<TreatAsUsed>true</TreatAsUsed>
|
<TreatAsUsed>true</TreatAsUsed>
|
||||||
|
9
RhSolutions.AddIn/Services/IDatabaseClient.cs
Normal file
9
RhSolutions.AddIn/Services/IDatabaseClient.cs
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace RhSolutions.Services
|
||||||
|
{
|
||||||
|
public interface IDatabaseClient
|
||||||
|
{
|
||||||
|
public Task<object> GetProduct(string line);
|
||||||
|
}
|
||||||
|
}
|
@ -10,9 +10,16 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace RhSolutions.Services
|
namespace RhSolutions.Services
|
||||||
{
|
{
|
||||||
public static class RhDatabaseClient
|
public class RhDatabaseClient : IDatabaseClient
|
||||||
{
|
{
|
||||||
public static async Task<object> GetProduct(string line)
|
private IServiceProvider provider;
|
||||||
|
|
||||||
|
public RhDatabaseClient(IServiceProvider provider)
|
||||||
|
{
|
||||||
|
this.provider = provider;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<object> GetProduct(string line)
|
||||||
{
|
{
|
||||||
string request;
|
string request;
|
||||||
|
|
||||||
@ -26,7 +33,7 @@ namespace RhSolutions.Services
|
|||||||
request = @"https://rh.cebotari.ru/api/search?query=" + line;
|
request = @"https://rh.cebotari.ru/api/search?query=" + line;
|
||||||
}
|
}
|
||||||
|
|
||||||
var client = RhSolutionsAddIn.ServiceProvider.GetRequiredService<HttpClient>();
|
var client = provider.GetRequiredService<HttpClient>();
|
||||||
var response = await client.GetAsync(request);
|
var response = await client.GetAsync(request);
|
||||||
|
|
||||||
try
|
try
|
||||||
@ -45,6 +52,7 @@ namespace RhSolutions.Services
|
|||||||
return $"{product.ProductSku} {product.Name}";
|
return $"{product.ProductSku} {product.Name}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
return $"Ошибка сервера {response.StatusCode}";
|
return $"Ошибка сервера {response.StatusCode}";
|
||||||
|
Loading…
Reference in New Issue
Block a user