85 lines
3.1 KiB
C#
85 lines
3.1 KiB
C#
using UniversityBusinessLogics.BusinessLogic;
|
|
using UniversityContracts.BusinessLogicContracts;
|
|
using UniversityContracts.StoragesContracts;
|
|
|
|
using Serilog;
|
|
|
|
using UniversityDatabaseImplement.Implements;
|
|
using UiversityDatabaseImplement.Implements;
|
|
using UniversityBusinessLogics.MailWorker;
|
|
using UniversityBusinessLogics.OfficePackage.Implements;
|
|
using UniversityBusinessLogics.OfficePackage;
|
|
using UniversityContracts.BindingModels;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddControllersWithViews();
|
|
builder.Services.AddSession(); // Äîáàâëÿåì ñåññèþ äëÿ àâòîðèçàöèè
|
|
|
|
builder.Services.AddTransient<IClientLogic, ClientLogic>();
|
|
builder.Services.AddTransient<IPurchaseLogic, PurchaseLogic>();
|
|
builder.Services.AddTransient<IClassLogic, ClassLogic>();
|
|
builder.Services.AddTransient<IReportLogic, ReportLogic>();
|
|
builder.Services.AddTransient<IPaymentLogic, PaymentLogic>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
builder.Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
builder.Services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
|
|
|
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
|
builder.Services.AddTransient<IPurchaseStorage, PurchaseStorage>();
|
|
builder.Services.AddTransient<IClassStorage, ClassStorage>();
|
|
builder.Services.AddTransient<IPaymentStorage, PaymentStorage>();
|
|
|
|
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
|
|
|
builder.Services.AddLogging(option =>
|
|
{
|
|
var configuration = new ConfigurationBuilder()
|
|
.SetBasePath(Directory.GetCurrentDirectory())
|
|
.AddJsonFile(path: "appsettings.json", optional: false, reloadOnChange: true)
|
|
.Build();
|
|
|
|
var logger = new LoggerConfiguration()
|
|
.ReadFrom.Configuration(configuration)
|
|
.CreateLogger();
|
|
|
|
option.AddSerilog(logger);
|
|
});
|
|
|
|
var app = builder.Build();
|
|
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())
|
|
});
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
app.UseSession(); // Äîáàâëÿåì ñåññèþ äëÿ àâòîðèçàöèè
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run();
|