Rewrite README for post-decoupling architecture
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 42s

Remove stale /adopt endpoint reference, document submodules, all
services, glue integration, checkout flow, and domain events.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-14 19:29:03 +00:00
parent 34032160f9
commit 4f9f482c6c

105
README.md
View File

@@ -1,71 +1,84 @@
# Cart App # Cart App
Shopping cart, checkout, and order management service for the Rose Ash cooperative marketplace. Shopping cart, checkout, and order management service for the Rose Ash cooperative.
## Overview
This is the **cart** microservice, split from the Rose Ash monolith. It handles:
- **Shopping cart** - Add/remove products, view cart, cart summary API
- **Checkout** - SumUp payment integration with hosted checkout
- **Orders** - Order listing, detail view, payment status tracking
- **Calendar bookings** - Calendar entry cart items and checkout integration
## Architecture ## Architecture
- **Framework:** Quart (async Flask) One of four Quart microservices sharing a single PostgreSQL database:
- **Database:** PostgreSQL 16 via SQLAlchemy 2.0 (async)
- **Payments:** SumUp Hosted Checkout
- **Frontend:** HTMX + Jinja2 templates + Tailwind CSS
## Directory Structure | App | Port | Domain |
|-----|------|--------|
| blog (coop) | 8000 | Auth, blog, admin, menus, snippets |
| market | 8001 | Product browsing, Suma scraping |
| **cart** | 8002 | Shopping cart, checkout, orders |
| events | 8003 | Calendars, bookings, tickets |
## Structure
``` ```
app.py # Quart application factory app.py # Application factory (create_base_app + blueprints)
path_setup.py # Adds project root + app dir to sys.path
config/app-config.yaml # App URLs, SumUp config
models/ # Cart-domain models
order.py # Order, OrderItem
page_config.py # PageConfig (per-page SumUp credentials)
bp/ bp/
cart/ # Cart blueprint (add, view, checkout, webhooks) cart/ # Cart blueprint
routes.py global_routes.py # Add to cart, checkout, webhooks, return page
api.py # Internal API (server-to-server, CSRF-exempt) page_routes.py # Page-scoped cart and checkout
login_helper.py # Cart merge on login overview_routes.py # Cart overview / summary page
services/ # Business logic layer api.py # Internal API (/internal/cart/summary)
order/ # Single order detail blueprint services/ # Business logic
routes.py checkout.py # Order creation, SumUp integration
filters/qs.py # Query string helpers check_sumup_status.py # Payment status polling
orders/ # Order listing blueprint calendar_cart.py # Calendar entry cart queries
routes.py page_cart.py # Page-scoped cart queries
filters/qs.py get_cart.py # Cart item queries
templates/ identity.py # Cart identity (user_id / session_id)
_types/cart/ # Cart templates total.py # Price calculations
_types/order/ # Single order templates clear_cart_for_order.py # Soft-delete cart after checkout
_types/orders/ # Order listing templates order/ # Single order detail view
entrypoint.sh # Docker entrypoint (migrations + server start) orders/ # Order listing view
Dockerfile # Container build templates/ # Jinja2 templates
.gitea/workflows/ci.yml # CI/CD pipeline entrypoint.sh # Docker entrypoint
Dockerfile
shared/ # Submodule → git.rose-ash.com/coop/shared.git
glue/ # Submodule → git.rose-ash.com/coop/glue.git
```
## Cross-App Integration
- **Internal API:** `GET /internal/cart/summary` returns cart count + total for the current session/user. Called by blog and market context processors.
- **Calendar entries:** Checkout marks CalendarEntries (events domain) as "ordered" via `glue/services/order_lifecycle.py` — not by direct model write.
- **Payment confirmation:** When SumUp payment confirms, entries are marked "provisional" via the same glue service.
- **Domain events:** Emits `order.created` and `order.paid` events for observability.
- **Login adoption:** Anonymous cart/entries are adopted when `user.logged_in` event fires (handled by `glue/handlers/login_handlers.py`).
## Checkout Flow
```
1. User clicks "Checkout"
2. create_order_from_cart() creates Order + OrderItems
3. glue: claim_entries_for_order() marks CalendarEntries as "ordered"
4. emit: order.created event
5. SumUp hosted checkout created, user redirected
6. SumUp webhook / return page triggers check_sumup_status()
7. If PAID: glue: confirm_entries_for_order(), emit: order.paid
``` ```
## Running ## Running
```bash ```bash
# Set environment variables
export APP_MODULE=app:app
export DATABASE_URL_ASYNC=postgresql+asyncpg://user:pass@localhost/coop export DATABASE_URL_ASYNC=postgresql+asyncpg://user:pass@localhost/coop
export REDIS_URL=redis://localhost:6379/0 export REDIS_URL=redis://localhost:6379/0
export SECRET_KEY=your-secret-key export SECRET_KEY=your-secret-key
# Run the server
hypercorn app:app --reload --bind 0.0.0.0:8002 hypercorn app:app --reload --bind 0.0.0.0:8002
``` ```
## Cross-App Communication
The cart app exposes internal API endpoints at `/internal/cart/` for other services:
- `GET /internal/cart/summary` - Cart count and total for the current session/user
- `POST /internal/cart/adopt` - Adopt anonymous cart items after user login
## Docker ## Docker
```bash ```bash
docker build -t cart:latest . docker build -t cart .
docker run -p 8002:8000 --env-file .env cart:latest docker run -p 8002:8000 --env-file .env cart
``` ```