feat(kitchen-ops): add priority edge flow

Why: baseline pending kitchen priority edge handlers and runtime assets before security wave.

What: add set-priority contracts/handlers, service adapter updates, and docs/docker assets.

Rule: keep technical intent and align repository workflow.
This commit is contained in:
José René White Enciso 2026-03-08 15:00:08 -06:00
parent d3042cc19a
commit c4d903016b
11 changed files with 140 additions and 0 deletions

9
.dockerignore Normal file
View File

@ -0,0 +1,9 @@
**/bin/
**/obj/
.vs/
TestResults/
.git/
.repo-tasks/
.repo-context/
.tasks/
.agile/

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
# syntax=docker/dockerfile:1.7
ARG SDK_IMAGE=mcr.microsoft.com/dotnet/sdk:10.0
ARG RUNTIME_IMAGE=mcr.microsoft.com/dotnet/aspnet:10.0
FROM ${SDK_IMAGE} AS build
ARG NUGET_FEED_URL=http://192.168.10.100:3000/api/packages/AgileWebs/nuget/index.json
ARG NUGET_FEED_USERNAME=
ARG NUGET_FEED_TOKEN=
WORKDIR /src
COPY . .
RUN if [ -n "$NUGET_FEED_USERNAME" ] && [ -n "$NUGET_FEED_TOKEN" ]; then dotnet nuget add source "$NUGET_FEED_URL" --name gitea-org --username "$NUGET_FEED_USERNAME" --password "$NUGET_FEED_TOKEN" --store-password-in-clear-text --allow-insecure-connections --configfile /root/.nuget/NuGet/NuGet.Config; fi
RUN dotnet restore "src/Kitchen.Ops.Bff.Rest/Kitchen.Ops.Bff.Rest.csproj" --configfile /root/.nuget/NuGet/NuGet.Config
RUN dotnet publish "src/Kitchen.Ops.Bff.Rest/Kitchen.Ops.Bff.Rest.csproj" -c Release -o /app/publish /p:UseAppHost=false --no-restore
FROM ${RUNTIME_IMAGE} AS runtime
WORKDIR /app
ENV ASPNETCORE_URLS=http://+:8080 ASPNETCORE_ENVIRONMENT=Production
EXPOSE 8080
COPY --from=build /app/publish .
ENTRYPOINT ["dotnet", "Kitchen.Ops.Bff.Rest.dll"]

View File

@ -0,0 +1,18 @@
# Feature Epics
## Repository
kitchen-ops-bff
## Core Epics
- Epic 1: Expand domain-aligned capabilities for restaurant operations.
- Epic 2: Stabilize service contracts for containerized runtime integration.
- Epic 3: Improve observability and operational readiness for demo compose environments.
## Domain-Specific Candidate Features
- Order lifecycle consistency and state transitions.
- Kitchen queue and dispatch optimization hooks.
- Operations control-plane policies (flags, service windows, overrides).
- POS closeout and settlement summary alignment.
## Documentation Contract
Any code change in this repository must include docs updates in the same branch.

View File

@ -0,0 +1,40 @@
# Containerization Runbook
## Image Build
If the repo consumes internal packages from Gitea, pass feed credentials as build args.
```bash
docker build --build-arg NUGET_FEED_USERNAME=<gitea-login> --build-arg NUGET_FEED_TOKEN=<gitea-token> -t agilewebs/kitchen-ops-bff:dev .
```
## Local Run
```bash
docker run --rm -p 8080:8080 --name kitchen-ops-bff agilewebs/kitchen-ops-bff:dev
```
## Health Probe
- Path: `/health`
- Fallback path: `/healthz`
- Port: `8080`
## Runtime Notes
- Exposes REST edge endpoints for kitchen operations dashboards.
## Health Endpoint Consistency
- Canonical probe: `/health`
- Compatibility probe: `/healthz`
- Container port: `8080`
## Demo Integration
- Participates in: **restaurant** demo compose stack.
- Integration artifact path: `greenfield/demo/restaurant/docker-compose.yml`
## Known Limitations
- Current runtime adapters are still predominantly in-memory for deterministic local/demo behavior.
- Demo PostgreSQL seeds validate integration contracts and smoke determinism, but do not yet imply full persistence implementation parity.

View File

@ -9,4 +9,9 @@ public sealed class DefaultKitchenServiceClient : IKitchenServiceClient
{
return Task.FromResult(new GetKitchenOpsBoardResponse(request.ContextId, "Default service-backed response."));
}
public Task<SetKitchenOrderPriorityResponse> SetOrderPriorityAsync(SetKitchenOrderPriorityRequest request, CancellationToken cancellationToken)
{
return Task.FromResult(new SetKitchenOrderPriorityResponse(request.ContextId, request.OrderId, true, "Order priority updated by default adapter."));
}
}

View File

@ -6,4 +6,5 @@ namespace Kitchen.Ops.Bff.Application.Adapters;
public interface IKitchenServiceClient
{
Task<GetKitchenOpsBoardResponse> FetchAsync(GetKitchenOpsBoardRequest request, CancellationToken cancellationToken);
Task<SetKitchenOrderPriorityResponse> SetOrderPriorityAsync(SetKitchenOrderPriorityRequest request, CancellationToken cancellationToken);
}

View File

@ -0,0 +1,9 @@
using Kitchen.Ops.Bff.Contracts.Requests;
using Kitchen.Ops.Bff.Contracts.Responses;
namespace Kitchen.Ops.Bff.Application.Handlers;
public interface ISetKitchenOrderPriorityHandler
{
Task<SetKitchenOrderPriorityResponse> HandleAsync(SetKitchenOrderPriorityRequest request, CancellationToken cancellationToken);
}

View File

@ -0,0 +1,13 @@
using Kitchen.Ops.Bff.Application.Adapters;
using Kitchen.Ops.Bff.Contracts.Requests;
using Kitchen.Ops.Bff.Contracts.Responses;
namespace Kitchen.Ops.Bff.Application.Handlers;
public sealed class SetKitchenOrderPriorityHandler(IKitchenServiceClient serviceClient) : ISetKitchenOrderPriorityHandler
{
public Task<SetKitchenOrderPriorityResponse> HandleAsync(SetKitchenOrderPriorityRequest request, CancellationToken cancellationToken)
{
return serviceClient.SetOrderPriorityAsync(request, cancellationToken);
}
}

View File

@ -0,0 +1,7 @@
namespace Kitchen.Ops.Bff.Contracts.Requests;
public sealed record SetKitchenOrderPriorityRequest(
string ContextId,
string OrderId,
int Priority,
string UpdatedBy);

View File

@ -0,0 +1,7 @@
namespace Kitchen.Ops.Bff.Contracts.Responses;
public sealed record SetKitchenOrderPriorityResponse(
string ContextId,
string OrderId,
bool Updated,
string Summary);

View File

@ -5,6 +5,7 @@ using Kitchen.Ops.Bff.Contracts.Requests;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddSingleton<IKitchenServiceClient, DefaultKitchenServiceClient>();
builder.Services.AddSingleton<IGetKitchenOpsBoardHandler, GetKitchenOpsBoardHandler>();
builder.Services.AddSingleton<ISetKitchenOrderPriorityHandler, SetKitchenOrderPriorityHandler>();
var app = builder.Build();
@ -14,4 +15,12 @@ app.MapGet("/api/kitchen/ops/board", async (string contextId, IGetKitchenOpsBoar
return Results.Ok(await handler.HandleAsync(request, ct));
});
app.MapPost("/api/kitchen/ops/board/priority", async (SetKitchenOrderPriorityRequest request, ISetKitchenOrderPriorityHandler handler, CancellationToken ct) =>
{
return Results.Ok(await handler.HandleAsync(request, ct));
});
app.MapGet("/health", () => Results.Ok(new { status = "ok", service = "kitchen-ops-bff" }));
app.MapGet("/healthz", () => Results.Ok(new { status = "ok", service = "kitchen-ops-bff" }));
app.Run();