merge: chore/cleanup-remove-bloat-and-secrets into main

This commit is contained in:
Crypto Rug Munch 2026-07-02 01:24:22 +07:00
commit bde2f3a97d
1173 changed files with 437609 additions and 0 deletions

View file

@ -0,0 +1,4 @@
"""Admin routes — admin role required.
Target: user management, system config, ops, bulletin moderation.
"""

View file

@ -0,0 +1,32 @@
"""Admin alerts webhook — /api/v1/admin/alerts/webhook.
Stub endpoint for receiving alert webhooks from external sources
(monitoring, observability platforms).
"""
from __future__ import annotations
from typing import Any
from fastapi import APIRouter, HTTPException
from pydantic import BaseModel
router = APIRouter(prefix="/alerts", tags=["admin"])
class AlertWebhookPayload(BaseModel):
"""Generic webhook payload from external alert sources."""
source: str # "prometheus" | "grafana" | "sentry" | "custom"
severity: str # "info" | "warning" | "critical"
title: str
description: str | None = None
labels: dict[str, str] = {}
@router.post("/webhook")
async def receive_alert_webhook(payload: AlertWebhookPayload) -> dict[str, Any]:
"""Receive an alert webhook from external monitoring."""
raise HTTPException(
status_code=501,
detail="Alert webhook ingestion not yet implemented — pending T08 GlitchTip wiring",
)

View file

@ -0,0 +1,60 @@
"""T07 GlitchTip test endpoint.
POST /api/v1/_test/glitchtip
{"type": "error", "message": "test error"}
POST /api/v1/_test/exception
triggers a real exception, captured by GlitchTip
POST /api/v1/_test/message
captures an info-level message
Used for:
- Verifying the GlitchTip pipeline works
- Smoke testing after deploys
- Demonstrating the secret-scrubbing before_send hook
"""
from __future__ import annotations
import logging
from fastapi import APIRouter
from pydantic import BaseModel
log = logging.getLogger(__name__)
router = APIRouter(prefix="/api/v1/_test", tags=["test"])
class GlitchtipTestRequest(BaseModel):
type: str = "error" # error | exception | message
message: str = "test event from RMI"
secret: str | None = None # should be REDACTED in Sentry
@router.post("/glitchtip")
async def test_glitchtip(req: GlitchtipTestRequest) -> dict:
"""Trigger a test event. Tests the secret-scrubbing before_send hook."""
if req.type == "exception":
try:
raise ValueError(req.message)
except Exception as e:
try:
from app.core.observability import capture_exception
capture_exception(e, secret=req.secret, route="/api/v1/_test/glitchtip")
except ImportError:
log.exception("test_exception_no_sentry")
return {"captured": "exception", "message": req.message}
if req.type == "message":
try:
from app.core.observability import capture_message
capture_message(req.message, level="warning", secret=req.secret)
except ImportError:
log.warning(f"test_message_no_sentry: {req.message}")
return {"captured": "message", "message": req.message}
# default: error log + capture
log.error(f"test_error: {req.message} (secret={req.secret})")
try:
from app.core.observability import capture_message
capture_message(req.message, level="error", secret=req.secret)
except ImportError:
pass
return {"captured": "error", "message": req.message, "secret_redacted_in_sentry": True}