67 lines
2.1 KiB
C#
67 lines
2.1 KiB
C#
using FWLAZ_Web.Components;
|
|
using FWLAZ_Web.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Blazored.LocalStorage;
|
|
using FWLAZ_Web.Objects;
|
|
using FWLAZ_Web.Components.Account;
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using FWLAZ_Web;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// AppSettings auslesen
|
|
var connectionstring = builder.Configuration.GetConnectionString("QuizDB");
|
|
builder.Services.Configure<AppSettings>(builder.Configuration.GetSection(nameof(AppSettings)));
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveServerComponents();
|
|
builder.Services.AddDbContextFactory<LocalDbContext>(options => options.UseSqlite(connectionstring));
|
|
builder.Services.AddBlazoredLocalStorage();
|
|
builder.Services.AddScoped<SessionState>();
|
|
|
|
builder.Services.AddCascadingAuthenticationState();
|
|
|
|
builder.Services.AddScoped<IdentityUserAccessor>();
|
|
|
|
builder.Services.AddScoped<IdentityRedirectManager>();
|
|
|
|
builder.Services.AddScoped<AuthenticationStateProvider, IdentityRevalidatingAuthenticationStateProvider>();
|
|
|
|
builder.Services.AddAuthentication(options =>
|
|
{
|
|
options.DefaultScheme = IdentityConstants.ApplicationScheme;
|
|
options.DefaultSignInScheme = IdentityConstants.ExternalScheme;
|
|
})
|
|
.AddIdentityCookies();
|
|
|
|
builder.Services.AddIdentityCore<IdentityUser>(options => options.SignIn.RequireConfirmedAccount = true)
|
|
.AddEntityFrameworkStores<LocalDbContext>()
|
|
.AddSignInManager()
|
|
.AddDefaultTokenProviders();
|
|
|
|
builder.Services.AddSingleton<IEmailSender<IdentityUser>, IdentityNoOpEmailSender>();
|
|
|
|
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.UseHttpsRedirection();
|
|
|
|
app.UseStaticFiles();
|
|
app.UseAntiforgery();
|
|
|
|
app.MapRazorComponents<App>()
|
|
.AddInteractiveServerRenderMode();
|
|
|
|
app.MapAdditionalIdentityEndpoints();;
|
|
|
|
app.Run();
|