API: /api/v1/campaigns (paginated list), /api/v1/campaigns/{uuid}
(soft-merge chain follow), /api/v1/campaigns/{uuid}/identities
(member identities), and /api/v1/campaigns/events (SSE under
campaign.> + JWT-via-?token=, snapshot-on-connect). Mirror of the
identity router; same auth, same shape, same OpenAPI tags pattern.
Frontend: CampaignDetail.tsx page (same visual vocabulary as
IdentityDetail), useCampaignStream hook (mirror of
useIdentityStream), /campaigns/:id route, IdentityDetail's
CAMPAIGN badge becomes clickable and navigates to the campaign.
useIdentityStream now listens for identity.campaign.assigned so
the badge appears live without a manual refresh.
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
"""GET /api/v1/campaigns/{uuid} — single campaign row.
|
|
|
|
Soft-merge handling: if the requested UUID has merged_into_uuid set,
|
|
the repository follows the chain and returns the winner. Mirror of
|
|
:mod:`decnet.web.router.identities.api_get_identity_detail`.
|
|
"""
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException
|
|
|
|
from decnet.telemetry import traced as _traced
|
|
from decnet.web.dependencies import repo, require_viewer
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get(
|
|
"/campaigns/{uuid}",
|
|
tags=["Campaign Clustering"],
|
|
responses={
|
|
401: {"description": "Could not validate credentials"},
|
|
403: {"description": "Insufficient permissions"},
|
|
404: {"description": "Campaign not found"},
|
|
},
|
|
)
|
|
@_traced("api.get_campaign_detail")
|
|
async def get_campaign_detail(
|
|
uuid: str,
|
|
user: dict = Depends(require_viewer),
|
|
) -> dict[str, Any]:
|
|
campaign = await repo.get_campaign_by_uuid(uuid)
|
|
if not campaign:
|
|
raise HTTPException(status_code=404, detail="Campaign not found")
|
|
# Cheap aggregate the CampaignDetail page surfaces — counted off
|
|
# the FK rather than the denormalized identity_count so the answer
|
|
# is always live.
|
|
campaign["identity_count_live"] = await repo.count_identities_for_campaign(
|
|
campaign["uuid"]
|
|
)
|
|
return campaign
|