Files
orion/app/modules/payments/routes/api/admin.py
Samir Boulahtit 30c4593e0f
Some checks failed
CI / ruff (push) Successful in 9s
CI / pytest (push) Has been cancelled
CI / validate (push) Has been cancelled
CI / dependency-scanning (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / deploy (push) Has been cancelled
refactor(P6): standardize route variable naming to router
All route files (admin.py, store.py) now export `router` instead of
`admin_router`/`store_router`. Consumer code (definition.py, __init__.py)
imports as `router as admin_router` where distinction is needed.
ModuleDefinition fields remain admin_router/store_router.

64 files changed across all modules. Architecture rules, docs, and
migration plan updated. Added noqa:API001 support to validator for
pre-existing raw dict endpoints now visible with standardized router name.
All 1114 tests pass.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 11:05:34 +01:00

54 lines
1.4 KiB
Python

# app/modules/payments/routes/api/admin.py
"""
Admin routes for payments module.
Provides routes for:
- Payment gateway configuration
- Transaction monitoring
- Refund management
"""
import logging
from fastapi import APIRouter, Depends
from app.api.deps import require_module_access
from app.modules.enums import FrontendType
router = APIRouter(
prefix="/payments",
dependencies=[Depends(require_module_access("payments", FrontendType.ADMIN))],
)
logger = logging.getLogger(__name__)
@router.get("/gateways") # noqa: API001
async def list_gateways():
"""List configured payment gateways."""
# TODO: Implement gateway listing
return {
"gateways": [
{"code": "stripe", "name": "Stripe", "enabled": True},
{"code": "paypal", "name": "PayPal", "enabled": False},
{"code": "bank_transfer", "name": "Bank Transfer", "enabled": True},
]
}
@router.get("/transactions") # noqa: API001
async def list_transactions():
"""List recent transactions across all gateways."""
# TODO: Implement transaction listing
return {"transactions": [], "total": 0}
@router.post("/refunds/{transaction_id}") # noqa: API001
async def issue_refund(transaction_id: str, amount: float | None = None):
"""Issue a refund for a transaction."""
# TODO: Implement refund logic
return {
"status": "pending",
"transaction_id": transaction_id,
"refund_amount": amount,
}