123 lines
3.3 KiB
C#
123 lines
3.3 KiB
C#
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Localization;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using OneForMe.Data;
|
|
using OneForMe.Services;
|
|
using System.Globalization;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
// Add Localization
|
|
builder.Services.AddLocalization(options => options.ResourcesPath = "Resources");
|
|
builder.Services.Configure<RequestLocalizationOptions>(options =>
|
|
{
|
|
var supportedCultures = new[] { new CultureInfo("en"), new CultureInfo("de") };
|
|
options.DefaultRequestCulture = new RequestCulture("en");
|
|
options.SupportedCultures = supportedCultures;
|
|
options.SupportedUICultures = supportedCultures;
|
|
});
|
|
|
|
// Add Swagger/OpenAPI
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(options =>
|
|
{
|
|
options.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo
|
|
{
|
|
Title = "OneForMe API",
|
|
Version = "v1",
|
|
Description = "Group Order Management API"
|
|
});
|
|
});
|
|
|
|
// Add Entity Framework Core with SQLite
|
|
builder.Services.AddDbContext<ApplicationDbContext>(options =>
|
|
options.UseSqlite(builder.Configuration.GetConnectionString("DefaultConnection") ??
|
|
"Data Source=OneForMe.db"));
|
|
|
|
// Add Identity
|
|
builder.Services.AddIdentity<IdentityUser, IdentityRole>(options =>
|
|
{
|
|
options.Password.RequiredLength = 6;
|
|
options.Password.RequireNonAlphanumeric = false;
|
|
options.Password.RequireUppercase = false;
|
|
options.Password.RequireLowercase = false;
|
|
options.Password.RequireDigit = false;
|
|
})
|
|
.AddEntityFrameworkStores<ApplicationDbContext>()
|
|
.AddDefaultTokenProviders();
|
|
|
|
// Add LocalizationService
|
|
builder.Services.AddScoped<LocalizationService>();
|
|
|
|
// Add LDAP Service
|
|
builder.Services.AddScoped<ILdapService, LdapService>();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Create and migrate database on startup
|
|
using (var scope = app.Services.CreateScope())
|
|
{
|
|
var db = scope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
|
|
db.Database.Migrate();
|
|
}
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI(options =>
|
|
{
|
|
options.SwaggerEndpoint("/swagger/v1/swagger.json", "OneForMe API v1");
|
|
options.RoutePrefix = "swagger";
|
|
});
|
|
}
|
|
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
// Add localization
|
|
var supportedCultures = new[] { "de", "de-DE", "en-US" };
|
|
var localizationOptions = new RequestLocalizationOptions()
|
|
.SetDefaultCulture("de")
|
|
.AddSupportedCultures(supportedCultures)
|
|
.AddSupportedUICultures(supportedCultures);
|
|
|
|
app.UseRequestLocalization(localizationOptions);
|
|
app.UseRouting();
|
|
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
|
|
app.Use(async (context, next) =>
|
|
{
|
|
if (context.Request.Path.StartsWithSegments("/uploads")
|
|
&& !(context.User.Identity?.IsAuthenticated ?? false))
|
|
{
|
|
context.Response.StatusCode = 401;
|
|
return;
|
|
}
|
|
|
|
await next();
|
|
});
|
|
|
|
app.UseStaticFiles();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}")
|
|
.WithStaticAssets();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run();
|