Track A (Infrastructure & Data Layer): - docker-compose.yml with all 7 services (nginx, frontend, api, mcp, renderer, worker, postgres, redis) - docker-compose.override.yml for local dev (hot reload, port exposure) - PostgreSQL init.sql with full schema (15 tables, pgvector indexes, creator economy stubs) - .env.example with all required environment variables Track A+B (API Layer): - FastAPI app with 10 routers (auth, shaders, feed, votes, generate, desires, users, payments, mcp_keys, health) - SQLAlchemy ORM models for all 15 tables - Pydantic schemas for all request/response types - JWT auth middleware (access + refresh tokens, Redis blocklist) - Redis rate limiting middleware - Celery worker config with job stubs (render, embed, generate, feed cache, expire bounties) - Alembic migration framework Service stubs: - MCP server (health endpoint, 501 for all tools) - Renderer service (Express + Puppeteer scaffold, 501 for /render) - Frontend (package.json with React/Vite/Three.js/TanStack/Tailwind deps) - Nginx reverse proxy config (/, /api, /mcp, /renders) Project: - DECISIONS.md with 11 recorded architectural decisions - README.md with architecture overview - Sample shader seed data (plasma, fractal noise, raymarched sphere)
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
"""Payments router — Stripe subscriptions, credits, webhooks. (Track H — stubs)"""
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, Request, status
|
|
|
|
from app.models import User
|
|
from app.middleware.auth import get_current_user
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.post("/checkout")
|
|
async def create_checkout(user: User = Depends(get_current_user)):
|
|
"""Create Stripe checkout session for subscription. (Track H)"""
|
|
raise HTTPException(status_code=501, detail="Payments coming in M4")
|
|
|
|
|
|
@router.post("/webhook")
|
|
async def stripe_webhook(request: Request):
|
|
"""Handle Stripe webhook events. (Track H)"""
|
|
raise HTTPException(status_code=501, detail="Payments coming in M4")
|
|
|
|
|
|
@router.get("/portal")
|
|
async def customer_portal(user: User = Depends(get_current_user)):
|
|
"""Get Stripe customer portal URL. (Track H)"""
|
|
raise HTTPException(status_code=501, detail="Payments coming in M4")
|
|
|
|
|
|
@router.post("/credits")
|
|
async def purchase_credits(user: User = Depends(get_current_user)):
|
|
"""Purchase AI credit pack. (Track H)"""
|
|
raise HTTPException(status_code=501, detail="Payments coming in M4")
|
|
|
|
|
|
@router.post("/connect/onboard")
|
|
async def connect_onboard(user: User = Depends(get_current_user)):
|
|
"""Start Stripe Connect creator onboarding. (Track H)"""
|
|
raise HTTPException(status_code=501, detail="Payments coming in M4")
|