mirror of
https://github.com/fergalmoran/api.fergl.ie.git
synced 2025-12-22 17:29:14 +00:00
92 lines
3.1 KiB
C#
92 lines
3.1 KiB
C#
using System.Net;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using Ferglie.Api.Components;
|
|
using Ferglie.Api.Components.Account;
|
|
using Ferglie.Api.Data;
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
builder.WebHost.ConfigureKestrel(options => {
|
|
var pemFile = builder.Configuration["SSL:PemFile"];
|
|
var keyFile = builder.Configuration["SSL:KeyFile"];
|
|
if (string.IsNullOrEmpty(pemFile) || string.IsNullOrEmpty(keyFile)) {
|
|
return;
|
|
}
|
|
|
|
options.Listen(IPAddress.Any, 5001, listenOptions => {
|
|
var certPem = File.ReadAllText(pemFile);
|
|
var keyPem = File.ReadAllText(keyFile);
|
|
var x509 = X509Certificate2.CreateFromPem(certPem, keyPem);
|
|
listenOptions.UseHttps(x509);
|
|
});
|
|
});
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveServerComponents();
|
|
|
|
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;
|
|
options.RequireAuthenticatedSignIn = true;
|
|
})
|
|
.AddGoogle(googleOptions => {
|
|
googleOptions.ClientId = builder.Configuration["Authentication:Google:ClientId"];
|
|
googleOptions.ClientSecret = builder.Configuration["Authentication:Google:ClientSecret"];
|
|
})
|
|
.AddIdentityCookies();
|
|
|
|
var connectionString =
|
|
builder.Configuration.GetConnectionString("DefaultConnection") ??
|
|
throw new InvalidOperationException("Connection string 'DefaultConnection' not found.");
|
|
builder.Services.AddDbContext<ApplicationDbContext>(options =>
|
|
options.UseNpgsql(connectionString)
|
|
.UseSnakeCaseNamingConvention());
|
|
|
|
builder.Services.AddDatabaseDeveloperPageExceptionFilter();
|
|
|
|
builder.Services.AddIdentityCore<ApplicationUser>(options => {
|
|
options.SignIn.RequireConfirmedAccount = false;
|
|
options.SignIn.RequireConfirmedEmail = false;
|
|
})
|
|
.AddEntityFrameworkStores<ApplicationDbContext>()
|
|
.AddSignInManager()
|
|
.AddDefaultTokenProviders();
|
|
|
|
builder.Services.AddSingleton<IEmailSender<ApplicationUser>, IdentityNoOpEmailSender>();
|
|
builder.Services.Configure<RouteOptions>(options => options.LowercaseUrls = true);
|
|
builder.Services.AddControllers();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment()) {
|
|
app.UseMigrationsEndPoint();
|
|
} else {
|
|
app.UseExceptionHandler("/Error", 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.MapControllers();
|
|
|
|
// Add additional endpoints required by the Identity /Account Razor components.
|
|
app.MapAdditionalIdentityEndpoints();
|
|
|
|
app.Run();
|