mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
92 lines
2.3 KiB
C#
92 lines
2.3 KiB
C#
using Api.Configurations;
|
|
using Api.Middleware;
|
|
using Application;
|
|
using Database;
|
|
using HealthChecks.UI.Client;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
|
using Serilog;
|
|
using Utilities.Classes;
|
|
|
|
|
|
Log.Logger = new LoggerConfiguration()
|
|
.WriteTo.Console()
|
|
.CreateBootstrapLogger();
|
|
|
|
try
|
|
{
|
|
Log.Information("Starting Player Manager API . . . ");
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
var logPath = Path.Combine(AppContext.BaseDirectory, "logs", "log-.txt");
|
|
builder.Host.UseSerilog((context, _, configuration) =>
|
|
{
|
|
configuration.ReadFrom.Configuration(context.Configuration)
|
|
.WriteTo.File(logPath, rollingInterval: RollingInterval.Day, rollOnFileSizeLimit: true);
|
|
});
|
|
|
|
builder.Services.AddDatabase(builder.Configuration);
|
|
builder.Services.AddApplication();
|
|
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
|
builder.Services.ConfigureAndApiVersioning();
|
|
builder.Services.ConfigureAndAddSwagger();
|
|
builder.Services.ConfigureAndAddCors();
|
|
builder.Services.ConfigureAndAddHealthChecks(builder.Configuration);
|
|
|
|
builder.Services.AddOptions<EmailConfiguration>()
|
|
.BindConfiguration("EmailSettings")
|
|
.ValidateDataAnnotations()
|
|
.ValidateOnStart();
|
|
|
|
builder.Services.AddOptions<GitHubSetting>()
|
|
.BindConfiguration("GitHubSettings")
|
|
.ValidateDataAnnotations()
|
|
.ValidateOnStart();
|
|
|
|
var jwtSection = builder.Configuration.GetRequiredSection("Jwt");
|
|
builder.Services.ConfigureAndAddAuthentication(jwtSection);
|
|
|
|
var app = builder.Build();
|
|
|
|
app.UseStaticFiles();
|
|
app.UseDefaultFiles();
|
|
|
|
app.MapOpenApi();
|
|
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
|
|
app.UseCors("AllowAll");
|
|
|
|
app.UseSerilogRequestLogging();
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAuthentication();
|
|
app.UseMiddleware<ApiKeyMiddleware>();
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.MapHealthChecks("/health", new HealthCheckOptions()
|
|
{
|
|
ResponseWriter = UIResponseWriter.WriteHealthCheckUIResponse
|
|
});
|
|
|
|
app.MapFallbackToFile("index.html");
|
|
|
|
app.Run();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Log.Fatal(e, e.Message);
|
|
}
|
|
finally
|
|
{
|
|
Log.CloseAndFlush();
|
|
}
|
|
|