Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fe801583e | |||
| de714d2271 | |||
| af3d40531b | |||
| 64b46865cf | |||
| bc2b9f81e0 | |||
| db74ffbebe | |||
| 49279c0cec | |||
| 8f68d8c60e | |||
| edabe266e5 | |||
| 58dc67e680 | |||
| 248dd32b1b | |||
| 5123a4d3ac | |||
| 1645b6bbae | |||
| ae51a3a864 | |||
| 72725a302a | |||
| 31a640d672 | |||
| 097ecd6421 | |||
| f3d79174be | |||
| 9b3e889d89 | |||
| c086aa60e4 | |||
| e35a68f7e8 | |||
| 66b377bf69 | |||
| b70ecab9ea | |||
| 82389a9304 | |||
| 209947d70f | |||
| 4bf1d2e77a | |||
| edb9c281ef | |||
| 2b6576de85 | |||
| b189b26b62 | |||
| 7de957ed6f | |||
| 52e3ab16bf | |||
| 16fdcc8005 | |||
| 26cd12532c |
@@ -1,10 +0,0 @@
|
|||||||
namespace MidrandBookshop.Components.Layout;
|
|
||||||
|
|
||||||
public class CartItem
|
|
||||||
{
|
|
||||||
public int Id { get; set; }
|
|
||||||
public string Title { get; set; } = string.Empty;
|
|
||||||
public string Author { get; set; } = string.Empty;
|
|
||||||
public int Price { get; set; }
|
|
||||||
public int Quantity { get; set; }
|
|
||||||
}
|
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" />
|
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" />
|
||||||
<circle cx="12" cy="7" r="4" />
|
<circle cx="12" cy="7" r="4" />
|
||||||
</svg>
|
</svg>
|
||||||
LogIn
|
Account
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="/profile" class="btn btn-sm btn-dark rounded-circle d-inline-flex d-md-none align-items-center justify-content-center border-0 p-0 shadow-sm"
|
<a href="/profile" class="btn btn-sm btn-dark rounded-circle d-inline-flex d-md-none align-items-center justify-content-center border-0 p-0 shadow-sm"
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
@page "/"
|
@page "/"
|
||||||
@rendermode InteractiveServer
|
@rendermode InteractiveServer
|
||||||
|
|
||||||
<div id="top-target" class="container text-center text-hero-wrapper">
|
<div id="top-target" @ref="topTargetRef" class="container text-center text-hero-wrapper" />
|
||||||
|
|
||||||
|
<div class="container text-center text-hero-wrapper">
|
||||||
<h1 class="display-3 text-dark mb-3 px-2 master-headline">
|
<h1 class="display-3 text-dark mb-3 px-2 master-headline">
|
||||||
Discover thoughtfully curated<br>books for every reader.
|
Discover thoughtfully curated<br>books for every reader.
|
||||||
</h1>
|
</h1>
|
||||||
@@ -147,7 +149,7 @@
|
|||||||
{
|
{
|
||||||
<BookCard Id="@book.Id"
|
<BookCard Id="@book.Id"
|
||||||
Title="@book.Name"
|
Title="@book.Name"
|
||||||
Author="@(ActiveAuthorFilterName ?? "Multiple Authors")"
|
Author="@(ProductAuthorCache.TryGetValue(book.Id, out var authorName) ? authorName : "Unknown Author")"
|
||||||
Price="@ProductPriceCache[book.Id]"
|
Price="@ProductPriceCache[book.Id]"
|
||||||
Category="@ProductPrimaryCategoryCache[book.Id]"
|
Category="@ProductPrimaryCategoryCache[book.Id]"
|
||||||
IsNew="@book.Enabled"
|
IsNew="@book.Enabled"
|
||||||
@@ -166,7 +168,7 @@
|
|||||||
@onclick="() => NavigateToProduct(book.Id)">
|
@onclick="() => NavigateToProduct(book.Id)">
|
||||||
<div class="d-flex align-items-center gap-4 structural-list-left">
|
<div class="d-flex align-items-center gap-4 structural-list-left">
|
||||||
<span class="text-dark fw-medium list-item-title">@book.Name</span>
|
<span class="text-dark fw-medium list-item-title">@book.Name</span>
|
||||||
<span class="text-muted small list-item-author">by @(ActiveAuthorFilterName ?? "Multiple Authors")</span>
|
<span class="text-muted small list-item-author">by @(ProductAuthorCache.TryGetValue(book.Id, out var authorName) ? authorName : "Unknown Author")</span>
|
||||||
<span class="badge bg-light text-secondary border rounded-pill px-2.5 py-1 font-monospace list-item-tag">@ProductPrimaryCategoryCache[book.Id].ToUpper()</span>
|
<span class="badge bg-light text-secondary border rounded-pill px-2.5 py-1 font-monospace list-item-tag">@ProductPrimaryCategoryCache[book.Id].ToUpper()</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex align-items-center gap-4">
|
<div class="d-flex align-items-center gap-4">
|
||||||
@@ -196,7 +198,6 @@
|
|||||||
|
|
||||||
<a class="back-to-top-btn d-flex align-items-center justify-content-center"
|
<a class="back-to-top-btn d-flex align-items-center justify-content-center"
|
||||||
aria-label="Back to top"
|
aria-label="Back to top"
|
||||||
href="#top-target"
|
href="#top-target">
|
||||||
onclick="window.scrollTo({top: 0, behavior: 'smooth'}); return false;">
|
|
||||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><line x1="12" y1="19" x2="12" y2="5" /><polyline points="5,12 12,5 19,12" /></svg>
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><line x1="12" y1="19" x2="12" y2="5" /><polyline points="5,12 12,5 19,12" /></svg>
|
||||||
</a>
|
</a>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using LiteCharms.Features.MidrandBooks;
|
using LiteCharms.Features;
|
||||||
using LiteCharms.Features.MidrandBooks.AuthorBooks;
|
using LiteCharms.Features.MidrandBooks.AuthorBooks;
|
||||||
using LiteCharms.Features.MidrandBooks.Authors;
|
using LiteCharms.Features.MidrandBooks.Authors;
|
||||||
using LiteCharms.Features.MidrandBooks.Categories;
|
using LiteCharms.Features.MidrandBooks.Categories;
|
||||||
@@ -19,6 +19,7 @@ public partial class Home : ComponentBase
|
|||||||
[SupplyParameterFromQuery(Name = "q")] public string? SharedSearchQuery { get; set; }
|
[SupplyParameterFromQuery(Name = "q")] public string? SharedSearchQuery { get; set; }
|
||||||
[SupplyParameterFromQuery] public long? AuthorId { get; set; }
|
[SupplyParameterFromQuery] public long? AuthorId { get; set; }
|
||||||
|
|
||||||
|
private ElementReference topTargetRef;
|
||||||
public enum ViewMode { Grid, List }
|
public enum ViewMode { Grid, List }
|
||||||
private ViewMode CurrentViewMode = ViewMode.Grid;
|
private ViewMode CurrentViewMode = ViewMode.Grid;
|
||||||
private string ActiveCategory = "All";
|
private string ActiveCategory = "All";
|
||||||
|
|||||||
@@ -170,3 +170,8 @@ html {
|
|||||||
border-color: #ffffff !important;
|
border-color: #ffffff !important;
|
||||||
box-shadow: 0 0 0 2px #1a1a1a, 0 6px 16px rgba(0, 0, 0, 0.25) !important;
|
box-shadow: 0 0 0 2px #1a1a1a, 0 6px 16px rgba(0, 0, 0, 0.25) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Direct the smooth scroll action straight to the layout viewport boundary */
|
||||||
|
#top-target {
|
||||||
|
scroll-margin-top: 100vh;
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using LiteCharms.Features.MidrandBooks;
|
using LiteCharms.Features;
|
||||||
using LiteCharms.Features.MidrandBooks.Authors;
|
using LiteCharms.Features.MidrandBooks.Authors;
|
||||||
using LiteCharms.Features.MidrandBooks.Authors.Models;
|
using LiteCharms.Features.MidrandBooks.Authors.Models;
|
||||||
using LiteCharms.Features.MidrandBooks.Products;
|
using LiteCharms.Features.MidrandBooks.Products;
|
||||||
@@ -35,7 +35,6 @@ public partial class ProductView : ComponentBase
|
|||||||
CurrentAuthor = null;
|
CurrentAuthor = null;
|
||||||
Thumbnails.Clear();
|
Thumbnails.Clear();
|
||||||
|
|
||||||
// 1. Resolve product listing details
|
|
||||||
var productResult = await ProductService.GetProductAsync(BookId);
|
var productResult = await ProductService.GetProductAsync(BookId);
|
||||||
|
|
||||||
if (productResult.IsSuccess && productResult.Value != null)
|
if (productResult.IsSuccess && productResult.Value != null)
|
||||||
@@ -43,31 +42,24 @@ public partial class ProductView : ComponentBase
|
|||||||
CurrentProduct = productResult.Value;
|
CurrentProduct = productResult.Value;
|
||||||
AuthorName = CurrentProduct.Metadata?.Manufacturer ?? "Unknown Author";
|
AuthorName = CurrentProduct.Metadata?.Manufacturer ?? "Unknown Author";
|
||||||
|
|
||||||
// 2. Load pricing data
|
|
||||||
var priceResult = await ProductService.GetProductPriceAsync(BookId);
|
var priceResult = await ProductService.GetProductPriceAsync(BookId);
|
||||||
LivePrice = priceResult.IsSuccess ? priceResult.Value.Amount : 0m;
|
LivePrice = priceResult.IsSuccess ? priceResult.Value.Amount : 0m;
|
||||||
|
|
||||||
// 3. Extract active catalog categories
|
|
||||||
var categoryResult = await ProductService.GetProductCategoriesAsync(BookId);
|
var categoryResult = await ProductService.GetProductCategoriesAsync(BookId);
|
||||||
if (categoryResult.IsSuccess && categoryResult.Value.Length > 0)
|
if (categoryResult.IsSuccess && categoryResult.Value.Length > 0)
|
||||||
{
|
|
||||||
PrimaryCategory = categoryResult.Value[0].Name ?? "General";
|
PrimaryCategory = categoryResult.Value[0].Name ?? "General";
|
||||||
}
|
|
||||||
|
|
||||||
// 4. Retrieve complete contextual model through the newly instantiated AuthorService lookup
|
|
||||||
var authorResult = await AuthorService.GetAuthorByProductIdAsync(BookId);
|
var authorResult = await AuthorService.GetAuthorByProductIdAsync(BookId);
|
||||||
if (authorResult.IsSuccess && authorResult.Value != null)
|
if (authorResult.IsSuccess && authorResult.Value != null)
|
||||||
{
|
{
|
||||||
CurrentAuthor = authorResult.Value;
|
CurrentAuthor = authorResult.Value;
|
||||||
|
|
||||||
// Format fully qualified author text cleanly depending on their publisher model details
|
|
||||||
if (CurrentAuthor.PublisherType == PublisherTypes.Company && !string.IsNullOrWhiteSpace(CurrentAuthor.Company))
|
if (CurrentAuthor.PublisherType == PublisherTypes.Company && !string.IsNullOrWhiteSpace(CurrentAuthor.Company))
|
||||||
AuthorName = CurrentAuthor.Company;
|
AuthorName = CurrentAuthor.Company;
|
||||||
else
|
else
|
||||||
AuthorName = $"{CurrentAuthor.Name} {CurrentAuthor.LastName}".Trim();
|
AuthorName = $"{CurrentAuthor.Name} {CurrentAuthor.LastName}".Trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
// 5. Build presentation image viewer variables
|
|
||||||
if (!string.IsNullOrWhiteSpace(CurrentProduct.ImageUrl))
|
if (!string.IsNullOrWhiteSpace(CurrentProduct.ImageUrl))
|
||||||
Thumbnails.Add(CurrentProduct.ImageUrl);
|
Thumbnails.Add(CurrentProduct.ImageUrl);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
@page "/profile"
|
@page "/profile"
|
||||||
|
@using Microsoft.AspNetCore.Components.Authorization
|
||||||
|
@inject NavigationManager Navigation
|
||||||
|
@rendermode InteractiveServer
|
||||||
|
|
||||||
|
<AuthorizeView>
|
||||||
|
<Authorized>
|
||||||
<div class="container py-5">
|
<div class="container py-5">
|
||||||
<h2 class="fw-bold mb-5 tracking-tight">My Account</h2>
|
<h2 class="fw-bold mb-5 tracking-tight">My Account</h2>
|
||||||
<div class="row g-5">
|
<div class="row g-5">
|
||||||
@@ -9,7 +14,7 @@
|
|||||||
<button class="nav-link text-start" data-bs-toggle="pill" data-bs-target="#shipping" role="tab">Shipping Address</button>
|
<button class="nav-link text-start" data-bs-toggle="pill" data-bs-target="#shipping" role="tab">Shipping Address</button>
|
||||||
<button class="nav-link text-start" data-bs-toggle="pill" data-bs-target="#profile" role="tab">Profile Settings</button>
|
<button class="nav-link text-start" data-bs-toggle="pill" data-bs-target="#profile" role="tab">Profile Settings</button>
|
||||||
<hr />
|
<hr />
|
||||||
<button class="nav-link text-danger text-start">Logout</button>
|
<button class="nav-link text-danger text-start" @onclick="TriggerLogout">Logout</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -193,6 +198,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</Authorized>
|
||||||
|
|
||||||
|
<NotAuthorized>
|
||||||
|
<RedirectToLogin />
|
||||||
|
</NotAuthorized>
|
||||||
|
</AuthorizeView>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private bool showAddForm = false;
|
private bool showAddForm = false;
|
||||||
@@ -216,6 +227,8 @@
|
|||||||
new AddressItem { Id = 3, Name = "Midrand Books Warehouse", Street = "Unit 8, Corporate Park North", City = "Randjespark", PostalCode = "1683", IsBilling = false, IsShipping = true, IsPrimary = false }
|
new AddressItem { Id = 3, Name = "Midrand Books Warehouse", Street = "Unit 8, Corporate Park North", City = "Randjespark", PostalCode = "1683", IsBilling = false, IsShipping = true, IsPrimary = false }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private void TriggerLogout() => Navigation.NavigateTo("/logout", forceLoad: true);
|
||||||
|
|
||||||
private void DownloadInvoice(string orderId)
|
private void DownloadInvoice(string orderId)
|
||||||
{
|
{
|
||||||
// Handle invoice downloading logic here
|
// Handle invoice downloading logic here
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
@inject NavigationManager Navigation
|
||||||
|
|
||||||
|
@code {
|
||||||
|
protected override void OnInitialized()
|
||||||
|
{
|
||||||
|
var returnUrl = Navigation.ToBaseRelativePath(Navigation.Uri);
|
||||||
|
|
||||||
|
Navigation.NavigateTo($"/login?redirectUri={Uri.EscapeDataString(returnUrl)}", forceLoad: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,14 @@
|
|||||||
@using MidrandBookshop.Components.Pages
|
@using Microsoft.AspNetCore.Components.Authorization
|
||||||
|
@using MidrandBookshop.Components.Pages
|
||||||
|
|
||||||
|
<CascadingAuthenticationState>
|
||||||
<Router AppAssembly="@typeof(Program).Assembly">
|
<Router AppAssembly="@typeof(Program).Assembly">
|
||||||
<Found Context="routeData">
|
<Found Context="routeData">
|
||||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
|
||||||
|
<NotAuthorized>
|
||||||
|
<RedirectToLogin />
|
||||||
|
</NotAuthorized>
|
||||||
|
</AuthorizeRouteView>
|
||||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||||||
</Found>
|
</Found>
|
||||||
<NotFound>
|
<NotFound>
|
||||||
@@ -10,3 +17,4 @@
|
|||||||
</LayoutView>
|
</LayoutView>
|
||||||
</NotFound>
|
</NotFound>
|
||||||
</Router>
|
</Router>
|
||||||
|
</CascadingAuthenticationState>
|
||||||
@@ -18,13 +18,13 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="LiteCharms.Features" Version="1.57.0" />
|
<PackageReference Include="LiteCharms.Features" Version="1.87.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- UI -->
|
<!-- UI -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ANM.Blazored.Toast" Version="0.1.1" />
|
<PackageReference Include="ANM.Blazored.Toast" Version="0.1.1" />
|
||||||
<PackageReference Include="LiteCharms.Features.MidrandBooks" Version="1.57.0" />
|
<PackageReference Include="LiteCharms.Features.MidrandBooks" Version="1.87.0" />
|
||||||
|
|
||||||
<!-- Global Usings -->
|
<!-- Global Usings -->
|
||||||
<Using Include="Blazored.Toast.Services" />
|
<Using Include="Blazored.Toast.Services" />
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
using LiteCharms.Features.Extensions;
|
using LiteCharms.Features.Extensions;
|
||||||
using LiteCharms.Features.Mediator;
|
using LiteCharms.Features.Mediator;
|
||||||
using LiteCharms.Features.MidrandBooks.Extensions;
|
using LiteCharms.Features.MidrandBooks.Extensions;
|
||||||
|
using Microsoft.AspNetCore.HttpOverrides;
|
||||||
using MidrandBookshop.Components;
|
using MidrandBookshop.Components;
|
||||||
using static LiteCharms.Features.Extensions.Quartz;
|
using static LiteCharms.Features.Extensions.Quartz;
|
||||||
|
|
||||||
|
AppContext.SetSwitch("Microsoft.IdentityModel.DisableTelemetry", true);
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
builder.Services.AddRazorComponents()
|
builder.Services.AddRazorComponents()
|
||||||
@@ -13,6 +16,7 @@ builder.AddMonitoring();
|
|||||||
builder.Services.AddEndpointsApiExplorer();
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
|
|
||||||
builder.Services.AddMediator();
|
builder.Services.AddMediator();
|
||||||
|
builder.Services.AddAuthentikUiSecurity(builder.Configuration);
|
||||||
|
|
||||||
builder.Services.AddScoped(typeof(IPipelineBehavior<,>), typeof(TelemetryPipelineBehavior<,>));
|
builder.Services.AddScoped(typeof(IPipelineBehavior<,>), typeof(TelemetryPipelineBehavior<,>));
|
||||||
builder.Services.AddScoped(typeof(IPipelineBehavior<,>), typeof(LoggingPipelineBehavior<,>));
|
builder.Services.AddScoped(typeof(IPipelineBehavior<,>), typeof(LoggingPipelineBehavior<,>));
|
||||||
@@ -22,15 +26,27 @@ builder.Services.AddQuartzSchedulerClient(MidrandShopSchedulerName, builder.Conf
|
|||||||
builder.Services.AddEmailServices(builder.Configuration);
|
builder.Services.AddEmailServices(builder.Configuration);
|
||||||
builder.Services.AddEmailServiceBus();
|
builder.Services.AddEmailServiceBus();
|
||||||
|
|
||||||
|
builder.Services.AddHttpClient();
|
||||||
builder.Services.AddShopServices();
|
builder.Services.AddShopServices();
|
||||||
|
builder.Services.AddHashServices(builder.Configuration);
|
||||||
builder.Services.AddMidrandShopDatabase(builder.Configuration);
|
builder.Services.AddMidrandShopDatabase(builder.Configuration);
|
||||||
|
|
||||||
builder.Services.AddMidrandShopPostgresHealthCheck();
|
builder.Services.AddMidrandShopPostgresHealthCheck();
|
||||||
builder.Services.AddMidrandShopQuartzHealthCheck();
|
builder.Services.AddMidrandShopQuartzHealthCheck();
|
||||||
builder.Services.AddHealthChecksSupport(builder.Configuration);
|
builder.Services.AddHealthChecksSupport(builder.Configuration);
|
||||||
|
builder.Services.AddCascadingAuthenticationState();
|
||||||
|
|
||||||
|
builder.Services.Configure<ForwardedHeadersOptions>(options =>
|
||||||
|
{
|
||||||
|
options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
|
||||||
|
options.KnownProxies.Clear();
|
||||||
|
});
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
|
app.UseForwardedHeaders();
|
||||||
|
app.AddSecurityEndpoints();
|
||||||
|
|
||||||
var schedulerFactory = app.Services.GetRequiredService<ISchedulerFactory>();
|
var schedulerFactory = app.Services.GetRequiredService<ISchedulerFactory>();
|
||||||
var scheduler = await schedulerFactory.GetScheduler(MidrandShopSchedulerName);
|
var scheduler = await schedulerFactory.GetScheduler(MidrandShopSchedulerName);
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,12 @@
|
|||||||
{
|
{
|
||||||
|
"AuthentikSettings": {
|
||||||
|
"Authority": "https://id.khongisa.co.za/application/o/midrand-books-uat/",
|
||||||
|
"MetadataEndpoint": "https://id.khongisa.co.za/application/o/midrand-books-uat/.well-known/openid-configuration",
|
||||||
|
"RevokationEndpoint": "https://id.khongisa.co.za/application/o/revoke/"
|
||||||
|
},
|
||||||
|
"HasherSettings": {
|
||||||
|
"MinHashLength": 11
|
||||||
|
},
|
||||||
"BookshopS3Settings": {
|
"BookshopS3Settings": {
|
||||||
"ServiceUrl": "http://192.168.1.177:30900",
|
"ServiceUrl": "http://192.168.1.177:30900",
|
||||||
"Region": "garage",
|
"Region": "garage",
|
||||||
|
|||||||
+52
-10
@@ -14,6 +14,22 @@ data:
|
|||||||
ASPNETCORE_URLS: "http://0.0.0.0:8080"
|
ASPNETCORE_URLS: "http://0.0.0.0:8080"
|
||||||
Monitoring__Address: "http://aspire-dashboard-service.aspire.svc.cluster.local:18889"
|
Monitoring__Address: "http://aspire-dashboard-service.aspire.svc.cluster.local:18889"
|
||||||
Monitoring__ServiceName: "MidrandBooks.Uat"
|
Monitoring__ServiceName: "MidrandBooks.Uat"
|
||||||
|
HasherSettings__MinHashLength: "11"
|
||||||
|
BookshopS3Settings__ServiceUrl: "http://garage.garage.svc.cluster.local:3900"
|
||||||
|
BookshopS3Settings__Region: "garage"
|
||||||
|
BookshopS3Settings__BucketName: "bookshop"
|
||||||
|
BookshopS3Settings__CdnBaseUrl: "https://bookshop.cdn.khongisa.co.za"
|
||||||
|
ValidPayfastHosts__0: "www.payfast.co.za"
|
||||||
|
ValidPayfastHosts__1: "sandbox.payfast.co.za"
|
||||||
|
ValidPayfastHosts__2: "w1w.payfast.co.za"
|
||||||
|
ValidPayfastHosts__3: "w2w.payfast.co.za"
|
||||||
|
ValidPayfastHosts__4: "ips.payfast.co.za"
|
||||||
|
ValidPayfastHosts__5: "api.payfast.co.za"
|
||||||
|
ValidPayfastHosts__6: "payment.payfast.io"
|
||||||
|
AuthentikSettings__Authority: "https://id.khongisa.co.za/application/o/midrand-books-api-uat/"
|
||||||
|
AuthentikSettings__MetadataEndpoint: "https://id.khongisa.co.za/application/o/midrand-books-uat/.well-known/openid-configuration"
|
||||||
|
AuthentikSettings__RevokationEndpoint: "https://id.khongisa.co.za/application/o/revoke/"
|
||||||
|
ASPNETCORE_FORWARDEDHEADERS_ENABLED: "true"
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Secret
|
kind: Secret
|
||||||
@@ -25,6 +41,12 @@ data:
|
|||||||
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPW1pZHJhbmRzaG9wLWRldjtVc2VybmFtZT1taWRyYW5kc2hvcC1kZXYtdXNlcjtQYXNzd29yZD1hUFh5a0tnM3RTOWNtRDtQZXJzaXN0IFNlY3VyaXR5IEluZm89VHJ1ZQ==
|
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPW1pZHJhbmRzaG9wLWRldjtVc2VybmFtZT1taWRyYW5kc2hvcC1kZXYtdXNlcjtQYXNzd29yZD1hUFh5a0tnM3RTOWNtRDtQZXJzaXN0IFNlY3VyaXR5IEluZm89VHJ1ZQ==
|
||||||
connection-string-quartz: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
connection-string-quartz: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
||||||
aspire-apikey: bWMzRzYzSzJqNVpPRXNpMEFqTW9qTFRYbTFLRVpGY3R6SUlqU3dEaVRHdXQ4cUdTa1B1V3d4R1AxUmJzY0pVbw==
|
aspire-apikey: bWMzRzYzSzJqNVpPRXNpMEFqTW9qTFRYbTFLRVpGY3R6SUlqU3dEaVRHdXQ4cUdTa1B1V3d4R1AxUmJzY0pVbw==
|
||||||
|
hasher-salt: VEdsbmFIUWdRMmhoY20xekxDQk5hV1J5WVc1a1FtOXZhM01nYldGclpTQnNiM1J6SUc5bUlHMXZibVY1SUdGdVpDQmhjbVVnWVNCemRXTmpaWE56Wm5Wc0lIWnBjbUZzSUhOMGIzSjVJR2x1SUZOdmRYUm9JRUZtY21sallRPT0=
|
||||||
|
hasher-payfastpassphrase: OUdBSVIwdFdwaFgwcU8=
|
||||||
|
bookshop-s3-accesskey: R0s1MTRkMmNlOGRjNjkyMzdhMDVjMDFlZWY=
|
||||||
|
bookshop-s3-secretkey: ZWFhZmVkYTFhZWQ0MDllY2ZlNjA3MTRlY2RhNTQ5YjgyYmRmNWEzZGFmOWYxOGRkNjFmNjZiNDk3M2E2NDgyZQ==
|
||||||
|
authentik-clientid: Nm9oZk1lSndQNWR0YWY1RFMzZU9MY2NNSHF6WXlma1YzRTNGeE5Tbw==
|
||||||
|
authentik-clientsecret: TXV2a0FLQklHR3BkdEsyaFlabVU1dFRaUmNuM2FhRzhoMWhlVE1nazFYOGVwczYyMzNCS0REWGdpNXo0T01RalVzMGZEUEFmakpmVVRNN1h3ZjllMU01MTQyVGlvOXRycUdmZTM1THhPaExEUnp6N2gxSm5jVkNLYXZXUllndmQ=
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
@@ -77,6 +99,36 @@ spec:
|
|||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: midrandbooks-config
|
name: midrandbooks-config
|
||||||
env:
|
env:
|
||||||
|
- name: AuthentikSettings__ClientId
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: authentik-clientid
|
||||||
|
- name: AuthentikSettings__ClientSecret
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: authentik-clientsecret
|
||||||
|
- name: BookshopS3Settings__AccessKey
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: bookshop-s3-accesskey
|
||||||
|
- name: BookshopS3Settings__SecretKey
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: bookshop-s3-secretkey
|
||||||
|
- name: HasherSettings__Salt
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: hasher-salt
|
||||||
|
- name: HasherSettings__PayfastPassphrase
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: midrandbooks-secrets
|
||||||
|
key: hasher-payfastpassphrase
|
||||||
- name: ConnectionStrings__PostgresScheduler
|
- name: ConnectionStrings__PostgresScheduler
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
@@ -87,16 +139,6 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: midrandbooks-secrets
|
name: midrandbooks-secrets
|
||||||
key: connection-string
|
key: connection-string
|
||||||
- name: Monitoring__Address
|
|
||||||
valueFrom:
|
|
||||||
configMapKeyRef:
|
|
||||||
name: midrandbooks-config
|
|
||||||
key: Monitoring__Address
|
|
||||||
- name: Monitoring__ServiceName
|
|
||||||
valueFrom:
|
|
||||||
configMapKeyRef:
|
|
||||||
name: midrandbooks-config
|
|
||||||
key: Monitoring__ServiceName
|
|
||||||
- name: Monitoring__ApiKey
|
- name: Monitoring__ApiKey
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|||||||
Reference in New Issue
Block a user