All checks were successful
continuous-integration/drone/push Build is passing
70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
using ManagementPage.Auth;
|
|
using ManagementPage.Database;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
|
|
using Microsoft.AspNetCore.HttpOverrides;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
var Configuration = builder.Configuration;
|
|
|
|
builder.Services.Configure<ForwardedHeadersOptions>(options =>
|
|
{
|
|
options.RequireHeaderSymmetry = false;
|
|
options.ForwardedHeaders =
|
|
ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
|
|
});
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorPages();
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddSingleton<MongoDbClient>();
|
|
// Allow sign in via an OpenId Connect provider like OneLogin
|
|
builder.Services.AddAuthentication(options => {
|
|
options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
|
|
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
|
|
})
|
|
.AddCookie()
|
|
.AddOpenIdConnect(options =>
|
|
{
|
|
options.ClientId = Configuration["oidc:clientid"];
|
|
options.ClientSecret = Configuration["oidc:clientsecret"];
|
|
options.Authority = @"https://auth.jacknet.io/auth/realms/JackNet";
|
|
//options.Authority = String.Format("https://{0}.onelogin.com/oidc/2", Configuration["oidc:region"]);
|
|
options.ResponseType = "code";
|
|
options.GetClaimsFromUserInfoEndpoint = true;
|
|
}
|
|
);
|
|
|
|
var app = builder.Build();
|
|
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/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.UseStaticFiles();
|
|
|
|
app.UseAuthentication();
|
|
|
|
app.UseForwardedHeaders();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseForwardedHeaders(new ForwardedHeadersOptions
|
|
{
|
|
RequireHeaderSymmetry = false,
|
|
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
|
|
});
|
|
|
|
app.MapRazorPages();
|
|
|
|
app.Run();
|