Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 787507bed9 | |||
| 59af9a5406 | |||
| 5140da2c6c | |||
| 02ff14ccc8 | |||
| 0ad410c64e | |||
| e193aa7c1c | |||
| 840d4568e2 | |||
| 6e580ecdf6 | |||
| 60095057b7 | |||
| 4c194c1141 | |||
| b41136e2c7 | |||
| 41eb4daeb4 | |||
| c423f04b42 | |||
| 7fe5f7aef3 | |||
| a567fc7cd7 | |||
| 31254932ae | |||
| c53434a578 | |||
| 5a0aae8182 | |||
| 3f3e0dbe88 | |||
| 8d8ebffabf | |||
| dc4addb43a | |||
| e2d29261da | |||
| 5d5b59d610 | |||
| f001b02633 | |||
| 90a11dc65e | |||
| de955a96a8 | |||
| cdf5cfb5cd | |||
| c4d3bb4cdf | |||
| 65f102f18a | |||
| cdc80db214 | |||
| 4576b5aa2b |
@@ -11,7 +11,7 @@
|
|||||||
<!-- Quartz Scheduler-->
|
<!-- Quartz Scheduler-->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Bogus" Version="35.6.5" />
|
<PackageReference Include="Bogus" Version="35.6.5" />
|
||||||
<PackageReference Include="Meziantou.Analyzer" Version="3.0.98">
|
<PackageReference Include="Meziantou.Analyzer" Version="3.0.102">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
@@ -116,8 +116,8 @@
|
|||||||
|
|
||||||
<!-- Amazon S3 SDK -->
|
<!-- Amazon S3 SDK -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.3" />
|
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.5" />
|
||||||
<PackageReference Include="AWSSDK.S3" Version="4.0.24" />
|
<PackageReference Include="AWSSDK.S3" Version="4.0.24.2" />
|
||||||
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
||||||
|
|
||||||
<!-- global Usings -->
|
<!-- global Usings -->
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<!-- Quartz Scheduler-->
|
<!-- Quartz Scheduler-->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Humanizer" Version="3.0.10" />
|
<PackageReference Include="Humanizer" Version="3.0.10" />
|
||||||
<PackageReference Include="Meziantou.Analyzer" Version="3.0.98">
|
<PackageReference Include="Meziantou.Analyzer" Version="3.0.102">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
@@ -136,8 +136,8 @@
|
|||||||
|
|
||||||
<!-- Amazon S3 SDK -->
|
<!-- Amazon S3 SDK -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.3" />
|
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.5" />
|
||||||
<PackageReference Include="AWSSDK.S3" Version="4.0.24" />
|
<PackageReference Include="AWSSDK.S3" Version="4.0.24.2" />
|
||||||
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
||||||
|
|
||||||
<!-- global Usings -->
|
<!-- global Usings -->
|
||||||
|
|||||||
@@ -0,0 +1,128 @@
|
|||||||
|
using LiteCharms.Features.Abstractions;
|
||||||
|
using LiteCharms.Features.MidrandBooks.Orders.Models;
|
||||||
|
using LiteCharms.Features.MidrandBooks.Products.Models;
|
||||||
|
|
||||||
|
namespace LiteCharms.Features.MidrandBooks.Orders;
|
||||||
|
|
||||||
|
public sealed class CartService : IService
|
||||||
|
{
|
||||||
|
private Cart cart = new();
|
||||||
|
|
||||||
|
public Cart GetCart() => cart;
|
||||||
|
|
||||||
|
public void LoadCart(Cart savedCart) => cart = savedCart;
|
||||||
|
|
||||||
|
public void AddItem(ProductPrice productPrice)
|
||||||
|
{
|
||||||
|
var itemExists = false;
|
||||||
|
|
||||||
|
for (var i = 0; i < cart.Items.Count; i++)
|
||||||
|
{
|
||||||
|
if (cart.Items[i].Price!.Id == productPrice.Id)
|
||||||
|
{
|
||||||
|
cart.Items[i].Quantity++;
|
||||||
|
cart.Items[i].Amount += productPrice.Amount;
|
||||||
|
|
||||||
|
itemExists = true;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!itemExists)
|
||||||
|
cart.Items.Add(new CartItem
|
||||||
|
{
|
||||||
|
Price = productPrice,
|
||||||
|
Amount = productPrice.Amount,
|
||||||
|
Quantity = 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
CalculateTotalPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateQuantity(long productPriceId, int newQuantity)
|
||||||
|
{
|
||||||
|
if (newQuantity <= 0)
|
||||||
|
{
|
||||||
|
RemoveAllSameItem(productPriceId);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var i = 0; i < cart.Items.Count; i++)
|
||||||
|
{
|
||||||
|
if (cart.Items[i].Price!.Id == productPriceId)
|
||||||
|
{
|
||||||
|
var oldQuantity = cart.Items[i].Quantity;
|
||||||
|
var pricePerUnit = cart.Items[i].Price!.Amount;
|
||||||
|
|
||||||
|
cart.Items[i].Quantity = newQuantity;
|
||||||
|
cart.Items[i].Amount = pricePerUnit * newQuantity;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CalculateTotalPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveOneItem(long productPriceId)
|
||||||
|
{
|
||||||
|
for (var i = 0; i < cart.Items.Count; i++)
|
||||||
|
{
|
||||||
|
if (cart.Items[i].Price!.Id == productPriceId)
|
||||||
|
{
|
||||||
|
if (cart.Items[i].Quantity <= 1)
|
||||||
|
{
|
||||||
|
cart.Items.RemoveAt(i);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cart.Items[i].Quantity--;
|
||||||
|
cart.Items[i].Amount -= cart.Items[i].Price!.Amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CalculateTotalPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveAllSameItem(long productPriceId)
|
||||||
|
{
|
||||||
|
if (cart.Items.Count == 0) return;
|
||||||
|
|
||||||
|
var item = cart.Items.FirstOrDefault(i => i.Price?.Id == productPriceId);
|
||||||
|
|
||||||
|
if (item is not null) cart.Items.Remove(item);
|
||||||
|
|
||||||
|
CalculateTotalPrice();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Clear()
|
||||||
|
{
|
||||||
|
if(cart.CustomerId is not null || cart.OrderId is not null)
|
||||||
|
{
|
||||||
|
cart.TotalPrice = 0;
|
||||||
|
cart.TotalVat = 0;
|
||||||
|
cart.Items.Clear();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
cart = new Cart();
|
||||||
|
}
|
||||||
|
|
||||||
|
public decimal CalculateTotalPrice()
|
||||||
|
{
|
||||||
|
if (cart.Items.Count == 0) return 0;
|
||||||
|
|
||||||
|
var gross = cart.Items.Sum(i => i.Amount);
|
||||||
|
|
||||||
|
if (!cart.IsVatInclusive) cart.TotalVat = gross * cart.VatRate;
|
||||||
|
|
||||||
|
cart.TotalPrice = gross + cart.TotalVat;
|
||||||
|
|
||||||
|
return cart.TotalPrice;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
|
||||||
|
|
||||||
|
public sealed class Cart
|
||||||
|
{
|
||||||
|
public long? CustomerId { get; set; }
|
||||||
|
|
||||||
|
public long? OrderId { get; set; }
|
||||||
|
|
||||||
|
public decimal TotalPrice { get; set; }
|
||||||
|
|
||||||
|
public decimal TotalVat { get; set; }
|
||||||
|
|
||||||
|
public decimal VatRate { get; set; } = 0.15m;
|
||||||
|
|
||||||
|
public bool IsVatInclusive { get; set; } = true;
|
||||||
|
|
||||||
|
public IList<CartItem> Items { get; set; } = [];
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
using LiteCharms.Features.MidrandBooks.Products.Models;
|
||||||
|
|
||||||
|
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
|
||||||
|
|
||||||
|
public sealed class CartItem
|
||||||
|
{
|
||||||
|
public ProductPrice? Price { get; set; }
|
||||||
|
|
||||||
|
public long Quantity { get; set; }
|
||||||
|
|
||||||
|
public decimal Amount { get; set; }
|
||||||
|
}
|
||||||
@@ -136,8 +136,8 @@
|
|||||||
|
|
||||||
<!-- Amazon S3 SDK -->
|
<!-- Amazon S3 SDK -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.3" />
|
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.5" />
|
||||||
<PackageReference Include="AWSSDK.S3" Version="4.0.24" />
|
<PackageReference Include="AWSSDK.S3" Version="4.0.24.2" />
|
||||||
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
<ProjectReference Include="..\LiteCharms.Features\LiteCharms.Features.csproj" />
|
||||||
|
|
||||||
<!-- global Usings -->
|
<!-- global Usings -->
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
### Authentik Token Request (Service Account Explicit)
|
### Authentik Token Request (Service Account Explicit)
|
||||||
POST {{authority}}
|
POST {{authority}}/connect/token
|
||||||
Content-Type: application/x-www-form-urlencoded
|
Content-Type: application/x-www-form-urlencoded
|
||||||
Accept-Encoding: identity
|
Accept-Encoding: identity
|
||||||
|
|
||||||
grant_type={{grantType}}&client_id={{clientId}}&username={{username}}&password={{password}}&scope={{scope}}
|
grant_type={{grantType}}&client_id={{clientId}}&client_secret={{clientSecret}}&scope={{scope}}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"uat": {
|
||||||
|
"authority": "https://sts.security.khongisa.co.za",
|
||||||
|
"grantType": "client_credentials",
|
||||||
|
"clientId": "midrandbooks-api-scaler-uat",
|
||||||
|
"clientSecret": "secret_0a8dc1f99061590a52b1272db3a1871d2761c79fbd058b2a968911029e4b208a",
|
||||||
|
"scope": "midrandbooks-api"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
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; }
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
namespace LiteCharms.Features.Api.Configuration;
|
||||||
|
|
||||||
|
public sealed class LiteCharmsSettings
|
||||||
|
{
|
||||||
|
public string? Authority { get; set; }
|
||||||
|
|
||||||
|
public string? ClientId { get; set; }
|
||||||
|
|
||||||
|
public string? ClientSecret { get; set; }
|
||||||
|
|
||||||
|
public string? Audience { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
using LiteCharms.Features.Abstractions;
|
||||||
|
|
||||||
|
namespace LiteCharms.Features.Browser;
|
||||||
|
|
||||||
|
public sealed class LocalStorageService(ProtectedLocalStorage storage) : IService
|
||||||
|
{
|
||||||
|
public async ValueTask<Result> DeleteAsync(string key)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await storage.DeleteAsync(key);
|
||||||
|
|
||||||
|
return Result.Ok();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Result.Fail(new Error(ex.Message).CausedBy(ex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<Result> SaveAsync(string key, string value)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await storage.SetAsync(key, value);
|
||||||
|
|
||||||
|
return Result.Ok();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Result.Fail(new Error(ex.Message).CausedBy(ex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<Result> SaveAsync<TValue>(string key, TValue value) where TValue : class
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await storage.SetAsync(key, value);
|
||||||
|
|
||||||
|
return Result.Ok();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Result.Fail(new Error(ex.Message).CausedBy(ex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<Result<string>> GetAsync(string key)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var retrieval = await storage.GetAsync<string>(key);
|
||||||
|
|
||||||
|
return retrieval.Success && !string.IsNullOrWhiteSpace(retrieval.Value)
|
||||||
|
? Result.Ok(retrieval.Value)
|
||||||
|
: Result.Fail($"Could not find object by key {key}");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Result.Fail(new Error(ex.Message).CausedBy(ex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<Result<TValue>> GetAsync<TValue>(string key) where TValue : class
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var retrieval = await storage.GetAsync<TValue>(key);
|
||||||
|
|
||||||
|
return retrieval.Success && retrieval.Value is not null
|
||||||
|
? Result.Ok(retrieval.Value)
|
||||||
|
: Result.Fail($"Could not find object by key {key}");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return Result.Fail(new Error(ex.Message).CausedBy(ex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
using LiteCharms.Features.Abstractions;
|
using LiteCharms.Features.Abstractions;
|
||||||
using LiteCharms.Features.Api;
|
using LiteCharms.Features.Api;
|
||||||
using LiteCharms.Features.Api.Configuration;
|
using LiteCharms.Features.Api.Configuration;
|
||||||
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
||||||
|
|
||||||
namespace LiteCharms.Features.Extensions;
|
namespace LiteCharms.Features.Extensions;
|
||||||
|
|
||||||
@@ -9,14 +10,14 @@ 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 IServiceCollection AddAuthentikUiSecurity(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddLiteCharmsWebSecurity(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
var configSection = configuration.GetSection(nameof(AuthentikSettings));
|
var configSection = configuration.GetSection(nameof(LiteCharmsSettings));
|
||||||
|
|
||||||
var authOptions = new AuthentikSettings();
|
var authOptions = new LiteCharmsSettings();
|
||||||
configSection.Bind(authOptions);
|
configSection.Bind(authOptions);
|
||||||
|
|
||||||
services.Configure<AuthentikSettings>(configSection);
|
services.Configure<LiteCharmsSettings>(configSection);
|
||||||
|
|
||||||
services.AddAuthentication(options =>
|
services.AddAuthentication(options =>
|
||||||
{
|
{
|
||||||
@@ -27,13 +28,11 @@ public static class Api
|
|||||||
.AddOpenIdConnect(OpenIdConnectDefaults.AuthenticationScheme, options =>
|
.AddOpenIdConnect(OpenIdConnectDefaults.AuthenticationScheme, options =>
|
||||||
{
|
{
|
||||||
options.Authority = authOptions.Authority;
|
options.Authority = authOptions.Authority;
|
||||||
options.MetadataAddress = authOptions.MetadataEndpoint;
|
|
||||||
|
|
||||||
options.ClientId = authOptions.ClientId;
|
options.ClientId = authOptions.ClientId;
|
||||||
options.ClientSecret = authOptions.ClientSecret;
|
options.ClientSecret = authOptions.ClientSecret;
|
||||||
options.SignedOutCallbackPath = "/signout-callback-oidc";
|
|
||||||
|
|
||||||
options.ResponseType = "code";
|
options.ResponseType = "code";
|
||||||
|
|
||||||
options.SaveTokens = true;
|
options.SaveTokens = true;
|
||||||
options.GetClaimsFromUserInfoEndpoint = true;
|
options.GetClaimsFromUserInfoEndpoint = true;
|
||||||
|
|
||||||
@@ -44,17 +43,16 @@ public static class Api
|
|||||||
|
|
||||||
options.Events = new OpenIdConnectEvents
|
options.Events = new OpenIdConnectEvents
|
||||||
{
|
{
|
||||||
OnRedirectToIdentityProvider = context =>
|
OnRedirectToIdentityProviderForSignOut = context =>
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(context.ProtocolMessage.RedirectUri) && context.ProtocolMessage.RedirectUri.StartsWith("http://", StringComparison.OrdinalIgnoreCase))
|
var idToken = context.ProtocolMessage.IdTokenHint;
|
||||||
{
|
|
||||||
var uriBuilder = new UriBuilder(context.ProtocolMessage.RedirectUri)
|
|
||||||
{
|
|
||||||
Scheme = "https",
|
|
||||||
Port = -1,
|
|
||||||
};
|
|
||||||
|
|
||||||
context.ProtocolMessage.RedirectUri = uriBuilder.Uri.ToString();
|
if (string.IsNullOrEmpty(idToken))
|
||||||
|
{
|
||||||
|
var tokens = context.Properties.GetTokens();
|
||||||
|
var idTokenItem = tokens.FirstOrDefault(t => string.Equals(t.Name, "id_token", StringComparison.Ordinal));
|
||||||
|
|
||||||
|
if (idTokenItem != null) context.ProtocolMessage.IdTokenHint = idTokenItem.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
@@ -62,40 +60,34 @@ public static class Api
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
services.AddCascadingAuthenticationState();
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IServiceCollection AddAuthentikApiSecurity(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddLiteCharmsApiSecurity(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
var configSection = configuration.GetSection(nameof(AuthentikSettings));
|
var configSection = configuration.GetSection(nameof(LiteCharmsSettings));
|
||||||
|
|
||||||
var authOptions = new AuthentikSettings();
|
var authOptions = new LiteCharmsSettings();
|
||||||
configSection.Bind(authOptions);
|
configSection.Bind(authOptions);
|
||||||
|
|
||||||
services.Configure<AuthentikSettings>(configSection);
|
services.Configure<LiteCharmsSettings>(configSection);
|
||||||
|
|
||||||
services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
|
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
|
||||||
.AddOAuth2Introspection(OAuth2IntrospectionDefaults.AuthenticationScheme, options =>
|
.AddJwtBearer(options =>
|
||||||
{
|
{
|
||||||
options.Authority = authOptions.Authority;
|
options.Authority = authOptions.Authority;
|
||||||
options.IntrospectionEndpoint = authOptions.IntrospectionEndpoint;
|
options.Audience = authOptions.Audience;
|
||||||
options.ClientId = authOptions.ClientId;
|
options.TokenValidationParameters = new TokenValidationParameters
|
||||||
options.ClientSecret = authOptions.ClientSecret;
|
{
|
||||||
|
ValidIssuer = authOptions.Authority,
|
||||||
options.NameClaimType = "sub";
|
ValidateAudience = true,
|
||||||
options.DiscoveryPolicy.RequireHttps = authOptions.RequireHttpsMetadata;
|
ValidateIssuer = true,
|
||||||
options.DiscoveryPolicy.ValidateEndpoints = false;
|
};
|
||||||
options.EnableCaching = false;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(authOptions.RequiredClaimName) && !string.IsNullOrWhiteSpace(authOptions.RequiredClaimNameValue))
|
services.AddAuthorization();
|
||||||
{
|
|
||||||
services.AddAuthorizationBuilder()
|
|
||||||
.AddPolicy("RequiredScope", policy =>
|
|
||||||
policy.RequireClaim(authOptions.RequiredClaimName, authOptions.RequiredClaimNameValue));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
services.AddAuthorization();
|
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
@@ -110,32 +102,17 @@ public static class Api
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.MapGet("/logout", async (HttpContext context, IHttpClientFactory httpClientFactory, IOptions<AuthentikSettings> settings) =>
|
app.MapGet("/logout", async (HttpContext context) =>
|
||||||
{
|
{
|
||||||
var authOptions = settings.Value;
|
var idToken = await context.GetTokenAsync("id_token");
|
||||||
var accessToken = await context.GetTokenAsync("access_token");
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(accessToken))
|
var authProperties = new AuthenticationProperties { RedirectUri = "/", };
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var client = httpClientFactory.CreateClient();
|
|
||||||
|
|
||||||
var requestContent = new FormUrlEncodedContent(new Dictionary<string, string>(StringComparer.Ordinal)
|
if (!string.IsNullOrEmpty(idToken))
|
||||||
{
|
authProperties.Parameters.Add("id_token_hint", idToken);
|
||||||
{ "token", accessToken },
|
|
||||||
{ "client_id", authOptions.ClientId! },
|
|
||||||
{ "client_secret", authOptions.ClientSecret! },
|
|
||||||
});
|
|
||||||
|
|
||||||
await client.PostAsync(authOptions.RevokationEndpoint, requestContent, context.RequestAborted);
|
|
||||||
}
|
|
||||||
catch { }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
await context.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme, authProperties);
|
||||||
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
||||||
|
|
||||||
return Results.Redirect($"{authOptions.Authority}end-session/");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return app;
|
return app;
|
||||||
|
|||||||
@@ -38,10 +38,10 @@
|
|||||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="10.0.8" />
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="10.0.8" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.8" />
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.8" />
|
||||||
|
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication"/>
|
<Using Include="Microsoft.AspNetCore.Authentication" />
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"/>
|
<Using Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication.Cookies"/>
|
<Using Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
||||||
<Using Include="IdentityModel.AspNetCore.OAuth2Introspection"/>
|
<Using Include="IdentityModel.AspNetCore.OAuth2Introspection" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- API Versioning -->
|
<!-- API Versioning -->
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
<!-- Quartz Scheduler-->
|
<!-- Quartz Scheduler-->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Hashids.net" Version="1.7.0" />
|
<PackageReference Include="Hashids.net" Version="1.7.0" />
|
||||||
<PackageReference Include="Meziantou.Analyzer" Version="3.0.98">
|
<PackageReference Include="Meziantou.Analyzer" Version="3.0.102">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
@@ -171,8 +171,8 @@
|
|||||||
|
|
||||||
<!-- Amazon S3 SDK -->
|
<!-- Amazon S3 SDK -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.3" />
|
<PackageReference Include="AWSSDK.Extensions.NetCore.Setup" Version="4.0.4.5" />
|
||||||
<PackageReference Include="AWSSDK.S3" Version="4.0.24" />
|
<PackageReference Include="AWSSDK.S3" Version="4.0.24.2" />
|
||||||
|
|
||||||
<!-- global Usings -->
|
<!-- global Usings -->
|
||||||
<Using Include="Amazon.S3" />
|
<Using Include="Amazon.S3" />
|
||||||
@@ -182,6 +182,7 @@
|
|||||||
|
|
||||||
<!-- Shared Usings -->
|
<!-- Shared Usings -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Using Include="Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage" />
|
||||||
<Using Include="System.Reflection" />
|
<Using Include="System.Reflection" />
|
||||||
<Using Include="Microsoft.Extensions.DependencyInjection.Extensions" />
|
<Using Include="Microsoft.Extensions.DependencyInjection.Extensions" />
|
||||||
<Using Include="Microsoft.AspNetCore.Routing" />
|
<Using Include="Microsoft.AspNetCore.Routing" />
|
||||||
|
|||||||
Reference in New Issue
Block a user