66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using BlueWest.Views.Utils;
|
|
using System.Globalization;
|
|
using BlueWest.Data.Auth;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Localization;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddSingleton<LayoutCache>();
|
|
// Add services to the container.
|
|
|
|
builder.Services.Configure<CookiePolicyOptions>(options =>
|
|
{
|
|
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
|
|
options.CheckConsentNeeded = context => true;
|
|
options.MinimumSameSitePolicy = SameSiteMode.None;
|
|
});
|
|
builder.Services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
|
|
.AddCookie(cookieOptions => {
|
|
cookieOptions.LoginPath = "/";
|
|
});
|
|
|
|
builder.Services.AddLogging(builder =>
|
|
{
|
|
builder.AddSimpleConsole();
|
|
});
|
|
|
|
builder.Services.AddSession(options =>
|
|
{
|
|
options.Cookie.Domain = SessionConstants.CookieDomain;
|
|
options.Cookie.HttpOnly = true;
|
|
});
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
// 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.UseRouting();
|
|
|
|
app.UseRequestLocalization(options =>
|
|
{
|
|
var supportedCultures = CultureInfo.GetCultures(CultureTypes.AllCultures);
|
|
options.DefaultRequestCulture = new RequestCulture("en-GB");
|
|
options.SupportedCultures = supportedCultures;
|
|
options.SupportedUICultures = supportedCultures;
|
|
});
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run(); |