ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarRestApi/Program.cs

61 lines
2.4 KiB
C#
Raw Permalink Normal View History

2024-04-25 13:16:23 +04:00
using Microsoft.OpenApi.Models;
2024-05-01 10:50:16 +04:00
using SushiBarBusinessLogic;
2024-05-01 13:12:40 +04:00
using SushiBarBusinessLogic.BusinessLogics;
2024-05-16 18:55:15 +04:00
using SushiBarBusinessLogic.MailWorker;
using SushiBarContracts.BindingModels;
2024-05-12 19:04:40 +04:00
using SushiBarContracts.BusinessLogicsContracts;
using SushiBarContracts.StoragesContracts;
using SushiBarDatabaseImplement.Implements;
2024-04-25 13:16:23 +04:00
var builder = WebApplication.CreateBuilder(args);
2024-05-12 19:04:40 +04:00
2024-04-25 13:16:23 +04:00
// Add services to the container.
2024-05-12 19:04:40 +04:00
2024-04-25 13:16:23 +04:00
builder.Services.AddTransient<IClientStorage, ClientStorage>();
builder.Services.AddTransient<IOrderStorage, OrderStorage>();
builder.Services.AddTransient<ISushiStorage, SushiStorage>();
builder.Services.AddTransient<IOrderLogic, OrderLogic>();
builder.Services.AddTransient<IClientLogic, ClientLogic>();
2024-05-16 18:55:15 +04:00
builder.Services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
builder.Services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-04-25 13:16:23 +04:00
builder.Services.AddTransient<ISushiLogic, SushiLogic>();
2024-05-12 19:04:40 +04:00
builder.Services.AddTransient<IImplementerStorage, ImplementerStorage>();
builder.Services.AddTransient<IImplementerLogic, ImplementerLogic>();
2024-05-16 18:55:15 +04:00
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-05-12 19:04:40 +04:00
2024-04-25 13:16:23 +04:00
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
2024-05-01 10:50:16 +04:00
c.SwaggerDoc("v1", new OpenApiInfo
{
2024-05-12 19:04:40 +04:00
Title = "AbstractShopRestApi",
Version
= "v1"
2024-05-01 10:50:16 +04:00
});
2024-04-25 13:16:23 +04:00
});
var app = builder.Build();
2024-05-16 18:55:15 +04:00
var mailSender = app.Services.GetService<AbstractMailWorker>();
mailSender?.MailConfig(new MailConfigBindingModel
{
MailLogin = builder.Configuration?.GetSection("MailLogin")?.Value?.ToString() ?? string.Empty,
MailPassword = builder.Configuration?.GetSection("MailPassword")?.Value?.ToString() ?? string.Empty,
SmtpClientHost = builder.Configuration?.GetSection("SmtpClientHost")?.Value?.ToString() ?? string.Empty,
SmtpClientPort = Convert.ToInt32(builder.Configuration?.GetSection("SmtpClientPort")?.Value?.ToString()),
PopHost = builder.Configuration?.GetSection("PopHost")?.Value?.ToString() ?? string.Empty,
PopPort = Convert.ToInt32(builder.Configuration?.GetSection("PopPort")?.Value?.ToString())
});
2024-04-25 13:16:23 +04:00
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
2024-05-12 19:04:40 +04:00
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json",
"AbstractShopRestApi v1"));
2024-04-25 13:16:23 +04:00
}
2024-05-16 18:55:15 +04:00
2024-04-25 13:16:23 +04:00
app.UseAuthorization();
app.MapControllers();
2024-05-12 19:04:40 +04:00
app.Run();