Private
Public Access
Scoped to direct messages only, and deliberately narrower than the existing push/desktop "offline" (not connected to this room's channel right now, which fires on every message) -- email uses GlobalPresence instead (no open connection anywhere, or appear_offline), since the other participant could easily just be active in a different room. Debounced to the first unread message in the conversation rather than firing on every message in a burst, resetting once they mark it read. Reuses the existing SMTP/send_email infrastructure from the invite feature, so it silently no-ops if SMTP isn't configured, same as everywhere else that already uses it. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, Request
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.database import get_db
|
|
from app.schemas.webhook import IncomingWebhookPost
|
|
from app.services.message_events import broadcast_new_message
|
|
from app.services.webhook_service import RoomArchivedError, WebhookNotFoundError, post_via_webhook
|
|
|
|
router = APIRouter(prefix="/api/webhooks", tags=["webhooks"])
|
|
|
|
|
|
@router.post("/incoming/{token}", status_code=204)
|
|
async def incoming_webhook_endpoint(
|
|
token: str,
|
|
data: IncomingWebhookPost,
|
|
request: Request,
|
|
db: AsyncSession = Depends(get_db),
|
|
) -> None:
|
|
# No auth dependency at all -- the token in the URL is the credential,
|
|
# per ARCHITECTURE.md's incoming-webhook design.
|
|
try:
|
|
message, room, sender = await post_via_webhook(db, token, data.content)
|
|
except WebhookNotFoundError:
|
|
raise HTTPException(status_code=404, detail="Unknown webhook")
|
|
except RoomArchivedError:
|
|
raise HTTPException(status_code=403, detail="This room has been archived and is read-only")
|
|
|
|
broadcaster = request.app.state.broadcaster
|
|
presence = request.app.state.presence
|
|
focus_presence = request.app.state.focus_presence
|
|
global_presence = request.app.state.global_presence
|
|
await broadcast_new_message(
|
|
db,
|
|
broadcaster,
|
|
presence,
|
|
focus_presence,
|
|
global_presence,
|
|
str(request.base_url),
|
|
room.id,
|
|
message,
|
|
sender,
|
|
)
|