56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
using BlazorPolicyAuth;
|
|
using BlazorPolicyAuth.Components;
|
|
using BlazorPolicyAuth.Data;
|
|
using BlazorPolicyAuth.Services.AuthService;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveServerComponents();
|
|
|
|
builder.Services.AddDbContext<AppDbContext>(x =>
|
|
x.UseSqlite(builder.Configuration.GetConnectionString("DbConnectionSQLITE")));
|
|
builder.Services.AddAuthorization(config =>
|
|
{
|
|
foreach (var userPolicy in UserPolicy.GetPolicies())
|
|
{
|
|
config.AddPolicy(userPolicy, cfg => cfg.RequireClaim(userPolicy, "true"));
|
|
}
|
|
|
|
});
|
|
builder.Services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
|
|
.AddCookie(options =>
|
|
{
|
|
options.Cookie.Name = "auth_token";
|
|
options.LoginPath = "/login";
|
|
options.Cookie.MaxAge = TimeSpan.FromMinutes(30);
|
|
options.AccessDeniedPath = "/access-denied";
|
|
});
|
|
|
|
builder.Services.AddCascadingAuthenticationState();
|
|
|
|
builder.Services.AddScoped<IAuthService, AuthService>();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
|
// 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.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true);
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseAntiforgery();
|
|
|
|
app.MapStaticAssets();
|
|
app.MapRazorComponents<App>()
|
|
.AddInteractiveServerRenderMode();
|
|
|
|
app.Run();
|