Some checks failed
CI / build (push) Failing after 3s
PHASE 2.3 (AUDIT-2026-Q3.md):
Task 1 — Wire-in Wave 3 (1 router mounted, 2 deferred):
- app.routers.unified_scanner_router mounted at /api/v2/scanner/* (2 routes:
POST /api/v2/scanner/token/scan, POST /api/v2/scanner/wallet/scan).
Refactored prefix from /api/v2 -> /api/v2/scanner to avoid future conflicts
with the v1 /api/v1/scanner/ stub.
- app.routers.unified_wallet_scanner DEFERRED (no router APIRouter attribute;
library module consumed by unified_scanner_router via get_wallet_scanner()).
- app.routers.admin_extensions DEFERRED (DORMANT per audit; 25 routes at
/api/v1/admin/* would shadow /api/v1/admin/alerts_webhook).
Task 2 — Archive 136 dead-code files to app/_archive/legacy_2026_07/:
- 73 routers in app/routers/ (reach graph showed zero reach into mount.py).
- 63 flat app/*.py (domain modules never imported by live code).
- 1 file RESTORED post-archive: app/routers/x402_bridge_health.py (caught by
tests/unit/test_bridge_health.py which directly imports it; reach graph
considered tests/ only as transitive reach — to be patched in next cycle).
Forced-LIVE (NOT archived per user directive):
- app/ai_pipeline_v3.py (3 importers in audit window, importers themselves DEAD)
- app/splade_bm25.py (LIVE via app.rag_service)
- app/wallet_manager_v2.py (LIVE via x402_enforcement, x402_tools, sweep_all, sweep_now)
- app/crypto_embeddings.py (NOT in audit ARCHIVE list; heavy import graph)
Verification (forward-import closure from mount.py + main.py + factory.py + lifespan.py):
- imports = 348 app.* modules
- reached = 194 files reachable from roots
- archive set = audit_dead (186) - reached - forced_live (4) - test_live (1) = 136
- Net delta: 136 files moved, 44,932 LOC reduction, 293->295 active routes (+2 from Wave 3)
pyproject.toml updates:
- setuptools.packages.find: added exclude for app._archive*
- ruff.extend-exclude: added "app/_archive/"
- mypy.exclude: added "app/_archive/"
Smoke test: pytest tests/ — 817 passed, 3 pre-existing failures unchanged
(0 new failures; 0 routes lost; all 4 forced-LIVE files still importable).
Restoration: git mv app/_archive/legacy_2026_07/<name>.py <original-path>
and add the import to app/mount.py ROUTER_MODULES.
Refs: AUDIT-2026-Q3.md /home/dev/pry/rmi-final-deadcode-2026-07-06.md
78 lines
2.9 KiB
Python
78 lines
2.9 KiB
Python
"""
|
|
RMI Payment Analytics Dashboard
|
|
================================
|
|
Real-time revenue, usage, and customer analytics.
|
|
Reads from Redis counters populated by x402 enforcement + developer tier.
|
|
|
|
Endpoints:
|
|
GET /api/v1/analytics/x402/revenue - Revenue overview
|
|
GET /api/v1/analytics/x402/tools - Per-tool usage + revenue
|
|
GET /api/v1/analytics/x402/daily - Daily breakdown (30 days)
|
|
GET /api/v1/analytics/x402/developers - Developer tier stats
|
|
GET /api/v1/analytics/x402/funnel - Conversion funnel (trial → paid)
|
|
GET /api/v1/analytics/x402/summary - One-line summary for dashboards
|
|
|
|
Author: RMI Development
|
|
Date: 2026-06-05
|
|
"""
|
|
|
|
from datetime import UTC, datetime
|
|
|
|
from fastapi import APIRouter
|
|
from fastapi.responses import JSONResponse
|
|
|
|
router = APIRouter(prefix="/api/v1/analytics/x402", tags=["x402-analytics"])
|
|
|
|
|
|
# ── Redis Helper ─────────────────────────────────────────────────
|
|
|
|
|
|
async def revenue_overview():
|
|
"""Get overall revenue metrics."""
|
|
return JSONResponse(content=get_revenue_overview()) # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
|
|
|
|
@router.get("/tools")
|
|
async def tool_breakdown():
|
|
"""Get per-tool usage and revenue."""
|
|
return JSONResponse(content=get_tool_breakdown()) # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
|
|
|
|
@router.get("/daily")
|
|
async def daily_breakdown(days: int = 30):
|
|
"""Get daily revenue breakdown."""
|
|
days = min(days, 90) # Cap at 90 days
|
|
return JSONResponse(content=get_daily_breakdown(days)) # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
|
|
|
|
@router.get("/developers")
|
|
async def developer_analytics():
|
|
"""Get developer tier analytics."""
|
|
return JSONResponse(content=get_developer_analytics()) # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
|
|
|
|
@router.get("/funnel")
|
|
async def conversion_funnel():
|
|
"""Get trial → paid conversion funnel."""
|
|
return JSONResponse(content=get_conversion_funnel()) # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
|
|
|
|
@router.get("/summary")
|
|
async def analytics_summary():
|
|
"""One-line summary for dashboards."""
|
|
overview = get_revenue_overview() # noqa: F821 -- pre-existing bug, see fix(f821) tracking issue
|
|
if "error" in overview:
|
|
return JSONResponse(content=overview)
|
|
|
|
revenue = overview["revenue"]
|
|
calls = overview["tool_calls"]
|
|
devs = overview["developer_tier"]
|
|
|
|
return JSONResponse(
|
|
content={
|
|
"summary": f"${revenue['total_usd']:.4f} total revenue · {calls['total']} tool calls · {devs['total_keys']} dev keys",
|
|
"today": f"${revenue['today_usd']:.4f} · {calls['today']} calls",
|
|
"developers": f"{devs['total_keys']} registered · {devs['total_free_calls']} free calls used",
|
|
"timestamp": datetime.now(UTC).isoformat(),
|
|
}
|
|
)
|