LANCommander/LANCommander.Server/Startup/Authentication.cs
2025-12-11 16:18:33 +11:00

284 lines
No EOL
12 KiB
C#

using System.Net.Http.Headers;
using System.Security.Claims;
using System.Text.Json;
using LANCommander.Server.Data.Models;
using LANCommander.Server.Models;
using LANCommander.Server.Services;
using LANCommander.Server.Services.Models;
using LANCommander.Server.Settings.Enums;
using LANCommander.Server.Settings.Models;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Identity;
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
using Microsoft.IdentityModel.Tokens;
namespace LANCommander.Server.Startup;
public static class Authentication
{
public static WebApplicationBuilder ConfigureAuthentication(this WebApplicationBuilder builder)
{
builder.Services.AddCascadingAuthenticationState();
return builder;
}
public static AuthenticationBuilder AddAuthenticationProviders(this AuthenticationBuilder authBuilder, Settings.Settings settings)
{
foreach (var authenticationProvider in settings.Server.Authentication.AuthenticationProviders)
{
try
{
switch (authenticationProvider.Type)
{
case AuthenticationProviderType.OAuth2:
authBuilder.AddOAuth(authenticationProvider, settings);
break;
case AuthenticationProviderType.OpenIdConnect:
authBuilder.AddOpenIdConnect(authenticationProvider, settings);
break;
case AuthenticationProviderType.Saml:
throw new NotImplementedException("SAML providers are not supported at this time.");
break;
}
}
catch (Exception ex)
{
Console.WriteLine($"Error: Authentication Provider {authenticationProvider.Name} could not be registered: {ex.Message}");
}
}
return authBuilder;
}
public static AuthenticationBuilder AddOpenIdConnect(this AuthenticationBuilder authBuilder, AuthenticationProvider authenticationProvider, Settings.Settings settings)
{
if (String.IsNullOrWhiteSpace(authenticationProvider.Slug))
return authBuilder;
return authBuilder.AddOpenIdConnect(authenticationProvider.Slug, authenticationProvider.Name, options =>
{
options.ClientId = authenticationProvider.ClientId;
options.ClientSecret = authenticationProvider.ClientSecret;
options.MetadataAddress = authenticationProvider.ConfigurationUrl;
options.ResponseType = OpenIdConnectResponseType.Code;
options.TokenValidationParameters = new TokenValidationParameters
{
ValidateIssuer = false
};
options.CorrelationCookie.SecurePolicy = CookieSecurePolicy.SameAsRequest;
options.NonceCookie.SecurePolicy = CookieSecurePolicy.SameAsRequest;
if (options.MetadataAddress.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
{
options.CorrelationCookie.SameSite = settings.Server.Authentication.HttpsCookiePolicy.SameSite;
options.CorrelationCookie.SecurePolicy = settings.Server.Authentication.HttpsCookiePolicy.Secure;
options.NonceCookie.SameSite = settings.Server.Authentication.HttpsCookiePolicy.SameSite;
options.NonceCookie.SecurePolicy = settings.Server.Authentication.HttpsCookiePolicy.Secure;
options.ResponseMode = OpenIdConnectResponseMode.Query;
}
else
{
options.CorrelationCookie.SameSite = settings.Server.Authentication.HttpCookiePolicy.SameSite;
options.CorrelationCookie.SecurePolicy = settings.Server.Authentication.HttpCookiePolicy.Secure;
options.NonceCookie.SameSite = settings.Server.Authentication.HttpCookiePolicy.SameSite;
options.NonceCookie.SecurePolicy = settings.Server.Authentication.HttpCookiePolicy.Secure;
options.ResponseMode = OpenIdConnectResponseMode.Query;
}
// Callbacks for middleware to properly correlate
options.CallbackPath = new PathString($"/SignInOIDC");
options.SignedOutCallbackPath = new PathString($"/SignOutOIDC");
foreach (var scope in authenticationProvider.Scopes)
{
options.Scope.Add(scope);
}
foreach (var claimMapping in authenticationProvider.ClaimMappings)
{
if (!String.IsNullOrWhiteSpace(claimMapping.Name) && !String.IsNullOrWhiteSpace(claimMapping.Value))
options.ClaimActions.MapJsonKey(claimMapping.Name, claimMapping.Value);
}
options.Events.OnRemoteFailure = async context =>
{
context.Response.Redirect("/Login");
Console.WriteLine($"Error: OIDC authentication failed: {context.Failure?.Message}");
await context.Response.CompleteAsync();
};
options.Events.OnTokenValidated = async context =>
{
var identity = new ClaimsIdentity(context.Principal.Claims, IdentityConstants.ApplicationScheme);
await ProcessLogin(context.HttpContext, context.Response, identity, authenticationProvider, context.Properties);
await context.Response.CompleteAsync();
};
});
}
public static AuthenticationBuilder AddOAuth(this AuthenticationBuilder authBuilder,
AuthenticationProvider authenticationProvider, Settings.Settings settings)
{
if (String.IsNullOrWhiteSpace(authenticationProvider.Slug))
return authBuilder;
return authBuilder.AddOAuth(authenticationProvider.Slug, authenticationProvider.Name, options =>
{
options.ClientId = authenticationProvider.ClientId;
options.ClientSecret = authenticationProvider.ClientSecret;
options.CallbackPath = new PathString($"/SignInOAuth");
options.AuthorizationEndpoint = authenticationProvider.AuthorizationEndpoint;
options.TokenEndpoint = authenticationProvider.TokenEndpoint;
options.UserInformationEndpoint = authenticationProvider.UserInfoEndpoint;
foreach (var scope in authenticationProvider.Scopes)
{
options.Scope.Add(scope);
}
options.SaveTokens = true;
foreach (var claimMapping in authenticationProvider.ClaimMappings)
{
if (!String.IsNullOrWhiteSpace(claimMapping.Name) && !String.IsNullOrWhiteSpace(claimMapping.Value))
options.ClaimActions.MapJsonKey(claimMapping.Name, claimMapping.Value);
}
options.Events.OnRemoteFailure = async context =>
{
context.Response.Redirect("/Login");
Console.WriteLine($"Error: OAuth authentication failed: {context.Failure?.Message}");
await context.Response.CompleteAsync();
};
options.Events.OnCreatingTicket = async context =>
{
var request = new HttpRequestMessage(HttpMethod.Get, context.Options.UserInformationEndpoint);
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", context.AccessToken);
var response = await context.Backchannel.SendAsync(request);
if (!response.IsSuccessStatusCode)
throw new HttpRequestException(
$"An error occurred while retrieving the user profile: {response.StatusCode}");
var oauthUser = JsonDocument.Parse(await response.Content.ReadAsStringAsync());
context.Identity.AddClaim(new Claim("Provider", authenticationProvider.Name));
context.RunClaimActions(oauthUser.RootElement);
var identity = new ClaimsIdentity(context.Identity.Claims, IdentityConstants.ApplicationScheme);
await ProcessLogin(context.HttpContext, context.Response, identity, authenticationProvider, context.Properties);
await context.Response.CompleteAsync();
};
});
}
private static async Task ProcessLogin(
HttpContext httpContext,
HttpResponse response,
ClaimsIdentity identity,
AuthenticationProvider authenticationProvider,
AuthenticationProperties properties)
{
var signInManager = httpContext.RequestServices.GetService<SignInManager<User>>()!;
var userService = httpContext.RequestServices.GetService<UserService>()!;
var userCustomFieldService = httpContext.RequestServices.GetService<UserCustomFieldService>()!;
var idClaim = identity.FindFirst(ClaimTypes.NameIdentifier);
User user;
UserCustomField customField;
var principal = new ClaimsPrincipal(identity);
var action = properties.Items["Action"];
switch (action)
{
case AuthenticationProviderActionType.Login:
customField = await userCustomFieldService.FirstOrDefaultAsync(cf => cf.Name == authenticationProvider.GetCustomFieldName() && cf.Value == idClaim.Value);
if (customField != null)
{
user = await userService.GetAsync(customField.UserId.Value);
await signInManager.SignInAsync(user, true);
response.Redirect(properties.RedirectUri);
}
else
{
await httpContext.SignInAsync(IdentityConstants.ApplicationScheme,
principal,
new AuthenticationProperties
{
AllowRefresh = false,
IsPersistent = false,
});
response.Redirect($"/Register?Provider={authenticationProvider.Slug}");
}
break;
case AuthenticationProviderActionType.AccountLink:
// Link accounts if needed
var userId = Guid.Parse(properties.Items["UserId"]);
user = await userService.GetAsync(userId);
customField = await userCustomFieldService.FirstOrDefaultAsync(cf => cf.UserId == userId && cf.Name == authenticationProvider.GetCustomFieldName());
var collidingCustomField = await userCustomFieldService.FirstOrDefaultAsync(cf => cf.Name == authenticationProvider.GetCustomFieldName() && cf.Value == idClaim.Value);
if (collidingCustomField != null)
throw new Exception("This account is already linked to an existing user.");
if (customField == null)
{
await userCustomFieldService.AddAsync(new UserCustomField
{
Name = authenticationProvider.GetCustomFieldName(),
UserId = userId,
Value = idClaim.Value
});
}
await signInManager.SignInAsync(user, true);
response.Redirect(properties.RedirectUri);
break;
case AuthenticationProviderActionType.Register:
await httpContext.SignInAsync(IdentityConstants.ApplicationScheme,
principal,
new AuthenticationProperties
{
AllowRefresh = false,
IsPersistent = false,
});
response.Redirect($"/Register?Provider={authenticationProvider.Slug}");
break;
}
}
}