Add API documentation
This commit is contained in:
parent
0452f379c6
commit
27dd2af627
@ -17,6 +17,10 @@ namespace RhSolutions.Api.Controllers
|
|||||||
this.parser = parser;
|
this.parser = parser;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Возвращает все продукты в базе данных
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
public IAsyncEnumerable<Product> GetProducts()
|
public IAsyncEnumerable<Product> GetProducts()
|
||||||
{
|
{
|
||||||
@ -24,6 +28,11 @@ namespace RhSolutions.Api.Controllers
|
|||||||
.AsAsyncEnumerable();
|
.AsAsyncEnumerable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Возвращает продукт по номеру артикула
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="id">Номер артикула</param>
|
||||||
|
/// <returns></returns>
|
||||||
[HttpGet("{id}")]
|
[HttpGet("{id}")]
|
||||||
public IEnumerable<Product> GetProduct(string id)
|
public IEnumerable<Product> GetProduct(string id)
|
||||||
{
|
{
|
||||||
@ -31,6 +40,10 @@ namespace RhSolutions.Api.Controllers
|
|||||||
.Where(p => p.Id.Equals(id));
|
.Where(p => p.Id.Equals(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Загрузка прайс-листа в формате xlsx в базу данных
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public IActionResult PostProductsFromXls()
|
public IActionResult PostProductsFromXls()
|
||||||
{
|
{
|
||||||
@ -62,6 +75,10 @@ namespace RhSolutions.Api.Controllers
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Удаление всех продуктов из базы данных
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
[HttpDelete]
|
[HttpDelete]
|
||||||
public IActionResult DeleteAllProducts()
|
public IActionResult DeleteAllProducts()
|
||||||
{
|
{
|
||||||
|
@ -14,6 +14,11 @@ namespace RhSolutions.Api.Controllers
|
|||||||
this.context = context;
|
this.context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Поиск артикула в базе данных через предварительную мультиклассовую классификацию с применением ML-модели артикулов
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="query">Запрос в свободной форме</param>
|
||||||
|
/// <returns></returns>
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
public IAsyncEnumerable<Product> SearchProducts([FromQuery] string query)
|
public IAsyncEnumerable<Product> SearchProducts([FromQuery] string query)
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,8 @@ using RhSolutions.Api.Middleware;
|
|||||||
using RhSolutions.QueryModifiers;
|
using RhSolutions.QueryModifiers;
|
||||||
using RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
|
using RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
|
||||||
using RhSolutions.QueryModifiers.DrinkingWaterHeatingPipes;
|
using RhSolutions.QueryModifiers.DrinkingWaterHeatingPipes;
|
||||||
|
using Microsoft.OpenApi.Models;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
@ -60,7 +62,25 @@ builder.Services.AddKeyedTransient<IProductQueryModifier, Sleeve>("Монтаж
|
|||||||
.AddKeyedTransient<IProductQueryModifier, StabilPipe>("Stabil")
|
.AddKeyedTransient<IProductQueryModifier, StabilPipe>("Stabil")
|
||||||
.AddKeyedTransient<IProductQueryModifier, BlackPipe>("Black");
|
.AddKeyedTransient<IProductQueryModifier, BlackPipe>("Black");
|
||||||
|
|
||||||
builder.Services.AddSwaggerGen();
|
builder.Services.AddSwaggerGen(options =>
|
||||||
|
{
|
||||||
|
options.SwaggerDoc("v1", new OpenApiInfo
|
||||||
|
{
|
||||||
|
Version = "v1",
|
||||||
|
Title = "RhSolutions API",
|
||||||
|
Description = "API к базе данных артикулов РЕХАУ для поиска с помощью ML.NET и полнотестового поиска PostgreSQL",
|
||||||
|
Contact = new OpenApiContact
|
||||||
|
{
|
||||||
|
Name = "Serghei Cebotari",
|
||||||
|
Url = new Uri("https://cebotari.ru/"),
|
||||||
|
Email = @"serghei@cebotari.ru"
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
var xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||||||
|
options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
||||||
|
});
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<UserSecretsId>1c307973-55cf-4d5c-a4f8-1def6b58ee3c</UserSecretsId>
|
<UserSecretsId>1c307973-55cf-4d5c-a4f8-1def6b58ee3c</UserSecretsId>
|
||||||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user