Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3847927ace | |||
| d38d1dd059 | |||
| c27aba1954 | |||
| e646d16053 | |||
| 1c946dab26 | |||
| 20c3ad9569 | |||
| 9977cf27b9 | |||
| cf7eed0603 | |||
| 8e9ac1e1ad | |||
| fa79bd8021 | |||
| 16dae7c9fb | |||
| 5666ffd474 | |||
| f8153e86b4 | |||
| eef1096ec5 | |||
| 84d33d3607 | |||
| 8f97d7cf38 | |||
| f51cc03327 | |||
| 652ca82a57 | |||
| aff6fcabf4 | |||
| a50830ffaa | |||
| ee6f8a283e | |||
| 8140b5fe65 | |||
| fda97db5fa |
@@ -363,3 +363,4 @@ MigrationBackup/
|
|||||||
FodyWeavers.xsd
|
FodyWeavers.xsd
|
||||||
/LiteCharms.Features.Tests/http/http-client.env.json
|
/LiteCharms.Features.Tests/http/http-client.env.json
|
||||||
/LiteCharms.Features.Tests/http/midrandshop-api/http-client.env.json
|
/LiteCharms.Features.Tests/http/midrandshop-api/http-client.env.json
|
||||||
|
/LiteCharms.Features.Tests/http/authentik/http-client.env.json
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"FeatureManagement": {
|
"FeatureManagement": {
|
||||||
"CategorySeederService": true,
|
"CategorySeederService": false,
|
||||||
"CustomerSeederService": false,
|
"CustomerSeederService": false,
|
||||||
"ProductsSeederService": false
|
"ProductsSeederService": false
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
### Authentik Token Request (Service Account Explicit)
|
||||||
|
POST {{authority}}
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
Accept-Encoding: identity
|
||||||
|
|
||||||
|
grant_type={{grantType}}&client_id={{clientId}}&username={{username}}&password={{password}}&scope={{scope}}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
namespace LiteCharms.Features.Api.Configuration;
|
||||||
|
|
||||||
|
public sealed class AuthentikSettings
|
||||||
|
{
|
||||||
|
public string? Authority { get; set; }
|
||||||
|
|
||||||
|
public string? IntrospectionEndpoint { get; set; }
|
||||||
|
|
||||||
|
public string? MetadataEndpoint { get; set; }
|
||||||
|
|
||||||
|
public string? RevokationEndpoint { get; set; }
|
||||||
|
|
||||||
|
public string? ClientId { get; set; }
|
||||||
|
|
||||||
|
public string? ClientSecret { get; set; }
|
||||||
|
|
||||||
|
public string? RequiredClaimName { get; set; }
|
||||||
|
|
||||||
|
public string? RequiredClaimNameValue { get; set; }
|
||||||
|
|
||||||
|
public bool RequireHttpsMetadata { get; set; }
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
using LiteCharms.Features.Abstractions;
|
using LiteCharms.Features.Abstractions;
|
||||||
using LiteCharms.Features.Api;
|
using LiteCharms.Features.Api;
|
||||||
|
using LiteCharms.Features.Api.Configuration;
|
||||||
|
|
||||||
namespace LiteCharms.Features.Extensions;
|
namespace LiteCharms.Features.Extensions;
|
||||||
|
|
||||||
@@ -8,41 +9,137 @@ public static class Api
|
|||||||
public const string Books = nameof(Books);
|
public const string Books = nameof(Books);
|
||||||
public const string Payments = nameof(Payments);
|
public const string Payments = nameof(Payments);
|
||||||
|
|
||||||
public static IApplicationBuilder MapEndpoints(this WebApplication app, IDictionary<int, RouteGroupBuilder> versionGroups)
|
public static IServiceCollection AddAuthentikUiSecurity(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
var endpoints = app.Services.GetRequiredService<IEnumerable<IEndpoint>>();
|
var configSection = configuration.GetSection(nameof(AuthentikSettings));
|
||||||
|
|
||||||
foreach (var endpoint in endpoints)
|
var authOptions = new AuthentikSettings();
|
||||||
|
configSection.Bind(authOptions);
|
||||||
|
|
||||||
|
services.Configure<AuthentikSettings>(configSection);
|
||||||
|
|
||||||
|
services.AddAuthentication(options =>
|
||||||
{
|
{
|
||||||
var versionAttributes = endpoint.GetType().GetCustomAttributes<ApiVersionTargetAttribute>().ToList();
|
options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
|
||||||
|
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
|
||||||
|
})
|
||||||
|
.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme)
|
||||||
|
.AddOpenIdConnect(OpenIdConnectDefaults.AuthenticationScheme, options =>
|
||||||
|
{
|
||||||
|
options.Authority = authOptions.Authority;
|
||||||
|
options.MetadataAddress = authOptions.MetadataEndpoint;
|
||||||
|
|
||||||
if (versionAttributes.Count != 0)
|
options.ClientId = authOptions.ClientId;
|
||||||
|
options.ClientSecret = authOptions.ClientSecret;
|
||||||
|
options.SignedOutCallbackPath = "/signout-callback-oidc";
|
||||||
|
|
||||||
|
options.ResponseType = "code";
|
||||||
|
options.SaveTokens = true;
|
||||||
|
options.GetClaimsFromUserInfoEndpoint = true;
|
||||||
|
|
||||||
|
options.Scope.Clear();
|
||||||
|
options.Scope.Add("openid");
|
||||||
|
options.Scope.Add("profile");
|
||||||
|
options.Scope.Add("email");
|
||||||
|
|
||||||
|
options.Events = new OpenIdConnectEvents
|
||||||
{
|
{
|
||||||
foreach (var attr in versionAttributes)
|
OnRedirectToIdentityProvider = context =>
|
||||||
if (versionGroups.TryGetValue(attr.MajorVersion, out var targetGroup))
|
{
|
||||||
endpoint.Map(targetGroup);
|
if (!string.IsNullOrEmpty(context.ProtocolMessage.RedirectUri) && context.ProtocolMessage.RedirectUri.StartsWith("http://", StringComparison.OrdinalIgnoreCase))
|
||||||
}
|
{
|
||||||
else
|
var uriBuilder = new UriBuilder(context.ProtocolMessage.RedirectUri)
|
||||||
endpoint.Map(app);
|
{
|
||||||
}
|
Scheme = "https",
|
||||||
|
Port = -1,
|
||||||
|
};
|
||||||
|
|
||||||
return app;
|
context.ProtocolMessage.RedirectUri = uriBuilder.Uri.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IServiceCollection AddEndpoints(this IServiceCollection services, Assembly assembly)
|
return Task.CompletedTask;
|
||||||
{
|
},
|
||||||
ServiceDescriptor[] discriptors = [.. assembly.DefinedTypes
|
};
|
||||||
.Where(t => t is { IsInterface: false, IsAbstract: false })
|
});
|
||||||
.Where(t => t.IsAssignableTo(typeof(IEndpoint)))
|
|
||||||
.Select(t => ServiceDescriptor.Transient(typeof(IEndpoint), t))];
|
|
||||||
|
|
||||||
services.TryAddEnumerable(discriptors);
|
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ToEndpointName(this Type target, string? annotation = "") =>
|
public static IServiceCollection AddAuthentikApiSecurity(this IServiceCollection services, IConfiguration configuration)
|
||||||
$"{target.Name.Replace("Endpoint", string.Empty)}{annotation}".ToLower(CultureInfo.CurrentCulture);
|
{
|
||||||
|
var configSection = configuration.GetSection(nameof(AuthentikSettings));
|
||||||
|
|
||||||
|
var authOptions = new AuthentikSettings();
|
||||||
|
configSection.Bind(authOptions);
|
||||||
|
|
||||||
|
services.Configure<AuthentikSettings>(configSection);
|
||||||
|
|
||||||
|
services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
|
||||||
|
.AddOAuth2Introspection(OAuth2IntrospectionDefaults.AuthenticationScheme, options =>
|
||||||
|
{
|
||||||
|
options.Authority = authOptions.Authority;
|
||||||
|
options.IntrospectionEndpoint = authOptions.IntrospectionEndpoint;
|
||||||
|
options.ClientId = authOptions.ClientId;
|
||||||
|
options.ClientSecret = authOptions.ClientSecret;
|
||||||
|
|
||||||
|
options.NameClaimType = "sub";
|
||||||
|
options.DiscoveryPolicy.RequireHttps = authOptions.RequireHttpsMetadata;
|
||||||
|
options.DiscoveryPolicy.ValidateEndpoints = false;
|
||||||
|
options.EnableCaching = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(authOptions.RequiredClaimName) && !string.IsNullOrWhiteSpace(authOptions.RequiredClaimNameValue))
|
||||||
|
{
|
||||||
|
services.AddAuthorizationBuilder()
|
||||||
|
.AddPolicy("RequiredScope", policy =>
|
||||||
|
policy.RequireClaim(authOptions.RequiredClaimName, authOptions.RequiredClaimNameValue));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
services.AddAuthorization();
|
||||||
|
|
||||||
|
return services;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static WebApplication AddSecurityEndpoints(this WebApplication app)
|
||||||
|
{
|
||||||
|
app.MapGet("/login", async (HttpContext context, string redirectUri = "/") =>
|
||||||
|
{
|
||||||
|
await context.ChallengeAsync(OpenIdConnectDefaults.AuthenticationScheme, new AuthenticationProperties
|
||||||
|
{
|
||||||
|
RedirectUri = redirectUri,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
app.MapGet("/logout", async (HttpContext context, IHttpClientFactory httpClientFactory, IOptions<AuthentikSettings> settings) =>
|
||||||
|
{
|
||||||
|
var authOptions = settings.Value;
|
||||||
|
var accessToken = await context.GetTokenAsync("access_token");
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(accessToken))
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var client = httpClientFactory.CreateClient();
|
||||||
|
|
||||||
|
var requestContent = new FormUrlEncodedContent(new Dictionary<string, string>(StringComparer.Ordinal)
|
||||||
|
{
|
||||||
|
{ "token", accessToken },
|
||||||
|
{ "client_id", authOptions.ClientId! },
|
||||||
|
{ "client_secret", authOptions.ClientSecret! },
|
||||||
|
});
|
||||||
|
|
||||||
|
await client.PostAsync(authOptions.RevokationEndpoint, requestContent, context.RequestAborted);
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
||||||
|
|
||||||
|
return Results.Redirect($"{authOptions.Authority}end-session/");
|
||||||
|
});
|
||||||
|
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
public static IServiceCollection AddApiServices(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddApiServices(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
@@ -95,4 +192,40 @@ public static class Api
|
|||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static IApplicationBuilder MapEndpoints(this WebApplication app, IDictionary<int, RouteGroupBuilder> versionGroups)
|
||||||
|
{
|
||||||
|
var endpoints = app.Services.GetRequiredService<IEnumerable<IEndpoint>>();
|
||||||
|
|
||||||
|
foreach (var endpoint in endpoints)
|
||||||
|
{
|
||||||
|
var versionAttributes = endpoint.GetType().GetCustomAttributes<ApiVersionTargetAttribute>().ToList();
|
||||||
|
|
||||||
|
if (versionAttributes.Count != 0)
|
||||||
|
{
|
||||||
|
foreach (var attr in versionAttributes)
|
||||||
|
if (versionGroups.TryGetValue(attr.MajorVersion, out var targetGroup))
|
||||||
|
endpoint.Map(targetGroup);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
endpoint.Map(app);
|
||||||
|
}
|
||||||
|
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IServiceCollection AddEndpoints(this IServiceCollection services, Assembly assembly)
|
||||||
|
{
|
||||||
|
ServiceDescriptor[] discriptors = [.. assembly.DefinedTypes
|
||||||
|
.Where(t => t is { IsInterface: false, IsAbstract: false })
|
||||||
|
.Where(t => t.IsAssignableTo(typeof(IEndpoint)))
|
||||||
|
.Select(t => ServiceDescriptor.Transient(typeof(IEndpoint), t))];
|
||||||
|
|
||||||
|
services.TryAddEnumerable(discriptors);
|
||||||
|
|
||||||
|
return services;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string ToEndpointName(this Type target, string? annotation = "") =>
|
||||||
|
$"{target.Name.Replace("Endpoint", string.Empty)}{annotation}".ToLower(CultureInfo.CurrentCulture);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ namespace LiteCharms.Features.Hasher;
|
|||||||
|
|
||||||
public sealed partial class HashService(IHashids hasher) : IService
|
public sealed partial class HashService(IHashids hasher) : IService
|
||||||
{
|
{
|
||||||
[GeneratedRegex(@"\A\b[0-9a-fA-F]+\b\Z")]
|
[GeneratedRegex(@"\A\b[0-9a-fA-F]+\b\Z", RegexOptions.None, matchTimeoutMilliseconds: 100)]
|
||||||
private static partial Regex HexHashRegex { get; }
|
private static partial Regex HexHashRegex { get; }
|
||||||
|
|
||||||
[GeneratedRegex(@"\A[0-9a-fA-F]{32}\Z", RegexOptions.None, matchTimeoutMilliseconds: 100)]
|
[GeneratedRegex(@"\A[0-9a-fA-F]{32}\Z", RegexOptions.None, matchTimeoutMilliseconds: 100)]
|
||||||
|
|||||||
@@ -29,6 +29,21 @@
|
|||||||
<None Include="..\icon.png" Pack="true" PackagePath="\" />
|
<None Include="..\icon.png" Pack="true" PackagePath="\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- Security (IODC)-->
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="IdentityModel.AspNetCore" Version="4.3.0" />
|
||||||
|
<PackageReference Include="IdentityModel.AspNetCore.OAuth2introspection" Version="6.2.0" />
|
||||||
|
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
|
||||||
|
<PackageReference Include="IdentityModel" Version="6.2.0" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="10.0.8" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.8" />
|
||||||
|
|
||||||
|
<Using Include="Microsoft.AspNetCore.Authentication"/>
|
||||||
|
<Using Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"/>
|
||||||
|
<Using Include="Microsoft.AspNetCore.Authentication.Cookies"/>
|
||||||
|
<Using Include="IdentityModel.AspNetCore.OAuth2Introspection"/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- API Versioning -->
|
<!-- API Versioning -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AccessTokenClient.Extensions" Version="5.1.0" />
|
<PackageReference Include="AccessTokenClient.Extensions" Version="5.1.0" />
|
||||||
|
|||||||
Reference in New Issue
Block a user