88 lines
2.5 KiB
C#
88 lines
2.5 KiB
C#
using System.Text;
|
|
using API.Middlewares;
|
|
using Infrastructure;
|
|
using Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using Microsoft.OpenApi.Models;
|
|
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using System.Text;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddInfrastructureServices(builder.Configuration);
|
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(c =>
|
|
{
|
|
c.AddSecurityDefinition("ApiKey", new OpenApiSecurityScheme
|
|
{
|
|
Description = "ApiKey must appear in header",
|
|
Type = SecuritySchemeType.ApiKey,
|
|
Name = "ApiKey",
|
|
In = ParameterLocation.Header,
|
|
Scheme = "ApiKeyScheme"
|
|
});
|
|
var key = new OpenApiSecurityScheme
|
|
{
|
|
Reference = new OpenApiReference
|
|
{
|
|
Type = ReferenceType.SecurityScheme,
|
|
Id = "ApiKey"
|
|
},
|
|
In = ParameterLocation.Header
|
|
};
|
|
var requirement = new OpenApiSecurityRequirement
|
|
{
|
|
{ key, new List<string>() }
|
|
};
|
|
c.AddSecurityRequirement(requirement);
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
//builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
|
|
// .AddJwtBearer(options =>
|
|
// {
|
|
// options.TokenValidationParameters = new TokenValidationParameters
|
|
// {
|
|
// ValidateIssuerSigningKey = true,
|
|
// IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:SecretKey"])),
|
|
// ValidateIssuer = false,
|
|
// ValidateAudience = false,
|
|
// ClockSkew = TimeSpan.Zero
|
|
// };
|
|
// });
|
|
|
|
app.MapControllers();
|
|
|
|
// Middlewares
|
|
app.UseMiddleware<ApiKeyMiddleware>();
|
|
app.UseMiddleware<BodyCheckMiddleware>();
|
|
|
|
using (var scope = app.Services.CreateScope())
|
|
{
|
|
var services = scope.ServiceProvider;
|
|
var dbContext = services.GetRequiredService<HealthcareManagerDatabase>(); // Directly resolving your DbContext
|
|
EnsureDatabaseCreated(dbContext);
|
|
}
|
|
|
|
app.Run();
|
|
|
|
static void EnsureDatabaseCreated(HealthcareManagerDatabase dbContext)
|
|
{
|
|
// Checking for pending migrations is more efficient than applying migrations unconditionally
|
|
if (dbContext.Database.GetPendingMigrations().Any()) dbContext.Database.Migrate();
|
|
} |