85 lines
2.9 KiB
C#
85 lines
2.9 KiB
C#
using System;
|
|
using System.Net.Http;
|
|
using Blazored.LocalStorage;
|
|
using Blazored.SessionStorage;
|
|
using BlazorPolicyAuth;
|
|
using BlazorPolicyAuth.Components;
|
|
using BlazorPolicyAuth.Data;
|
|
using BlazorPolicyAuth.Models.ViewModels;
|
|
using BlazorPolicyAuth.Services.AuthService;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using ClientServices = BlazorPolicyAuth.App.Services;
|
|
|
|
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.AddHttpContextAccessor();
|
|
|
|
builder.Services.AddBlazoredLocalStorage();
|
|
builder.Services.AddBlazoredSessionStorage();
|
|
|
|
// Blazor client services
|
|
builder.Services.AddScoped<ClientServices.AuthService.IAuthService, ClientServices.AuthService.AuthService>();
|
|
|
|
// Blazor server services
|
|
builder.Services.AddScoped<IAuthService, AuthService>();
|
|
|
|
// Get server base address when application starts to properly configure HttpClient for client service to call server service
|
|
builder.Services.AddSingleton<HttpClient>();
|
|
builder.Services.AddSingleton<IHostedService, HttpClientSetupService>();
|
|
|
|
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();
|
|
|
|
// Blazor server routing
|
|
app.MapPost("/api/auth/register", async (UserRegister request, IAuthService authService) =>
|
|
await authService.Register(request));
|
|
|
|
app.MapPost("/api/auth/login", async (UserLogin request, IAuthService authService) =>
|
|
await authService.Login(request.Email, request.Password));
|
|
|
|
app.Run();
|