Files
bakery-ia/services/notification/app/api/notifications.py

518 lines
19 KiB
Python
Raw Normal View History

2025-07-21 22:44:11 +02:00
# ================================================================
# services/notification/app/api/notifications.py - COMPLETE IMPLEMENTATION
# ================================================================
"""
Complete notification API routes with full CRUD operations
"""
from fastapi import APIRouter, Depends, HTTPException, Query, BackgroundTasks
2025-07-21 14:41:33 +02:00
from typing import List, Optional, Dict, Any
import structlog
2025-07-21 22:44:11 +02:00
from datetime import datetime
2025-07-21 14:41:33 +02:00
2025-07-21 22:44:11 +02:00
from app.schemas.notifications import (
2025-07-21 14:41:33 +02:00
NotificationCreate,
NotificationResponse,
2025-07-21 22:44:11 +02:00
NotificationHistory,
NotificationStats,
2025-07-21 14:41:33 +02:00
NotificationPreferences,
2025-07-21 22:44:11 +02:00
PreferencesUpdate,
BulkNotificationCreate,
TemplateCreate,
TemplateResponse,
DeliveryWebhook,
ReadReceiptWebhook,
NotificationType,
NotificationStatus
2025-07-21 14:41:33 +02:00
)
from app.services.notification_service import NotificationService
2025-07-21 22:44:11 +02:00
from app.services.messaging import (
handle_email_delivery_webhook,
handle_whatsapp_delivery_webhook,
process_scheduled_notifications
)
2025-07-21 14:41:33 +02:00
2025-07-21 22:44:11 +02:00
# Import unified authentication from shared library
2025-07-21 14:41:33 +02:00
from shared.auth.decorators import (
get_current_user_dep,
get_current_tenant_id_dep,
require_role
)
2025-07-21 22:44:11 +02:00
router = APIRouter()
2025-07-21 14:41:33 +02:00
logger = structlog.get_logger()
2025-07-21 22:44:11 +02:00
# ================================================================
# NOTIFICATION ENDPOINTS
# ================================================================
2025-07-21 14:41:33 +02:00
@router.post("/send", response_model=NotificationResponse)
async def send_notification(
notification: NotificationCreate,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
2025-07-21 22:44:11 +02:00
"""Send a single notification"""
2025-07-21 14:41:33 +02:00
try:
logger.info("Sending notification",
tenant_id=tenant_id,
sender_id=current_user["user_id"],
2025-07-21 22:44:11 +02:00
type=notification.type.value)
2025-07-21 14:41:33 +02:00
notification_service = NotificationService()
# Ensure notification is scoped to tenant
notification.tenant_id = tenant_id
notification.sender_id = current_user["user_id"]
2025-07-21 22:44:11 +02:00
# Check permissions for broadcast notifications
2025-07-21 14:41:33 +02:00
if notification.broadcast and current_user.get("role") not in ["admin", "manager"]:
raise HTTPException(
status_code=403,
detail="Only admins and managers can send broadcast notifications"
)
result = await notification_service.send_notification(notification)
return result
except HTTPException:
raise
except Exception as e:
logger.error("Failed to send notification", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
2025-07-21 22:44:11 +02:00
@router.post("/send-bulk")
async def send_bulk_notifications(
bulk_request: BulkNotificationCreate,
background_tasks: BackgroundTasks,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Send bulk notifications"""
try:
# Check permissions
if current_user.get("role") not in ["admin", "manager"]:
raise HTTPException(
status_code=403,
detail="Only admins and managers can send bulk notifications"
)
logger.info("Sending bulk notifications",
tenant_id=tenant_id,
count=len(bulk_request.recipients),
type=bulk_request.type.value)
notification_service = NotificationService()
# Process bulk notifications in background
background_tasks.add_task(
notification_service.send_bulk_notifications,
bulk_request
)
return {
"message": "Bulk notification processing started",
"total_recipients": len(bulk_request.recipients),
"type": bulk_request.type.value
}
except HTTPException:
raise
except Exception as e:
logger.error("Failed to start bulk notifications", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/history", response_model=NotificationHistory)
async def get_notification_history(
page: int = Query(1, ge=1),
per_page: int = Query(50, ge=1, le=100),
type_filter: Optional[NotificationType] = Query(None),
status_filter: Optional[NotificationStatus] = Query(None),
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Get notification history for current user"""
try:
notification_service = NotificationService()
history = await notification_service.get_notification_history(
user_id=current_user["user_id"],
tenant_id=tenant_id,
page=page,
per_page=per_page,
type_filter=type_filter,
status_filter=status_filter
)
return history
except Exception as e:
logger.error("Failed to get notification history", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/stats", response_model=NotificationStats)
async def get_notification_stats(
days: int = Query(30, ge=1, le=365),
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(require_role(["admin", "manager"])),
):
"""Get notification statistics for tenant (admin/manager only)"""
try:
notification_service = NotificationService()
stats = await notification_service.get_notification_stats(
tenant_id=tenant_id,
days=days
)
return stats
except Exception as e:
logger.error("Failed to get notification stats", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/{notification_id}", response_model=NotificationResponse)
async def get_notification(
notification_id: str,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Get a specific notification by ID"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
raise HTTPException(
status_code=501,
detail="Get single notification not yet implemented"
)
except HTTPException:
raise
except Exception as e:
logger.error("Failed to get notification", notification_id=notification_id, error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.patch("/{notification_id}/read")
async def mark_notification_read(
notification_id: str,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Mark a notification as read"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
return {"message": "Notification marked as read", "notification_id": notification_id}
except Exception as e:
logger.error("Failed to mark notification as read", notification_id=notification_id, error=str(e))
raise HTTPException(status_code=500, detail=str(e))
# ================================================================
# PREFERENCE ENDPOINTS
# ================================================================
2025-07-21 14:41:33 +02:00
@router.get("/preferences", response_model=NotificationPreferences)
async def get_notification_preferences(
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Get user's notification preferences"""
try:
notification_service = NotificationService()
preferences = await notification_service.get_user_preferences(
user_id=current_user["user_id"],
tenant_id=tenant_id
)
2025-07-21 22:44:11 +02:00
return NotificationPreferences(**preferences)
2025-07-21 14:41:33 +02:00
except Exception as e:
logger.error("Failed to get preferences", error=str(e))
2025-07-21 22:44:11 +02:00
raise HTTPException(status_code=500, detail=str(e))
@router.patch("/preferences", response_model=NotificationPreferences)
async def update_notification_preferences(
updates: PreferencesUpdate,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Update user's notification preferences"""
try:
notification_service = NotificationService()
# Convert Pydantic model to dict, excluding None values
update_data = updates.dict(exclude_none=True)
preferences = await notification_service.update_user_preferences(
user_id=current_user["user_id"],
tenant_id=tenant_id,
updates=update_data
)
return NotificationPreferences(**preferences)
except Exception as e:
logger.error("Failed to update preferences", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
# ================================================================
# TEMPLATE ENDPOINTS
# ================================================================
@router.post("/templates", response_model=TemplateResponse)
async def create_notification_template(
template: TemplateCreate,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(require_role(["admin", "manager"])),
):
"""Create a new notification template (admin/manager only)"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
raise HTTPException(
status_code=501,
detail="Template creation not yet implemented"
)
except HTTPException:
raise
except Exception as e:
logger.error("Failed to create template", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/templates", response_model=List[TemplateResponse])
async def list_notification_templates(
category: Optional[str] = Query(None),
type_filter: Optional[NotificationType] = Query(None),
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""List notification templates"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
return []
except Exception as e:
logger.error("Failed to list templates", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/templates/{template_id}", response_model=TemplateResponse)
async def get_notification_template(
template_id: str,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(get_current_user_dep),
):
"""Get a specific notification template"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
raise HTTPException(
status_code=501,
detail="Get template not yet implemented"
)
except HTTPException:
raise
except Exception as e:
logger.error("Failed to get template", template_id=template_id, error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.put("/templates/{template_id}", response_model=TemplateResponse)
async def update_notification_template(
template_id: str,
template: TemplateCreate,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(require_role(["admin", "manager"])),
):
"""Update a notification template (admin/manager only)"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
raise HTTPException(
status_code=501,
detail="Template update not yet implemented"
)
except HTTPException:
raise
except Exception as e:
logger.error("Failed to update template", template_id=template_id, error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.delete("/templates/{template_id}")
async def delete_notification_template(
template_id: str,
tenant_id: str = Depends(get_current_tenant_id_dep),
current_user: Dict[str, Any] = Depends(require_role(["admin"])),
):
"""Delete a notification template (admin only)"""
try:
# This would require implementation in NotificationService
# For now, return a placeholder response
return {"message": "Template deleted successfully", "template_id": template_id}
except Exception as e:
logger.error("Failed to delete template", template_id=template_id, error=str(e))
raise HTTPException(status_code=500, detail=str(e))
# ================================================================
# WEBHOOK ENDPOINTS
# ================================================================
@router.post("/webhooks/email-delivery")
async def email_delivery_webhook(webhook: DeliveryWebhook):
"""Handle email delivery status webhooks from external providers"""
try:
logger.info("Received email delivery webhook",
notification_id=webhook.notification_id,
status=webhook.status.value)
await handle_email_delivery_webhook(webhook.dict())
return {"status": "received"}
except Exception as e:
logger.error("Failed to process email delivery webhook", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.post("/webhooks/whatsapp-delivery")
async def whatsapp_delivery_webhook(webhook_data: Dict[str, Any]):
"""Handle WhatsApp delivery status webhooks from Twilio"""
try:
logger.info("Received WhatsApp delivery webhook",
message_sid=webhook_data.get("MessageSid"),
status=webhook_data.get("MessageStatus"))
await handle_whatsapp_delivery_webhook(webhook_data)
return {"status": "received"}
except Exception as e:
logger.error("Failed to process WhatsApp delivery webhook", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.post("/webhooks/read-receipt")
async def read_receipt_webhook(webhook: ReadReceiptWebhook):
"""Handle read receipt webhooks"""
try:
logger.info("Received read receipt webhook",
notification_id=webhook.notification_id)
# This would require implementation to update notification read status
# For now, just log the event
return {"status": "received"}
except Exception as e:
logger.error("Failed to process read receipt webhook", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
# ================================================================
# ADMIN ENDPOINTS
# ================================================================
@router.post("/admin/process-scheduled")
async def process_scheduled_notifications_endpoint(
background_tasks: BackgroundTasks,
current_user: Dict[str, Any] = Depends(require_role(["admin"])),
):
"""Manually trigger processing of scheduled notifications (admin only)"""
try:
background_tasks.add_task(process_scheduled_notifications)
return {"message": "Scheduled notification processing started"}
except Exception as e:
logger.error("Failed to start scheduled notification processing", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.get("/admin/queue-status")
async def get_notification_queue_status(
current_user: Dict[str, Any] = Depends(require_role(["admin", "manager"])),
):
"""Get notification queue status (admin/manager only)"""
try:
# This would require implementation to check queue status
# For now, return a placeholder response
return {
"pending_notifications": 0,
"scheduled_notifications": 0,
"failed_notifications": 0,
"retry_queue_size": 0
}
except Exception as e:
logger.error("Failed to get queue status", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.post("/admin/retry-failed")
async def retry_failed_notifications(
background_tasks: BackgroundTasks,
max_retries: int = Query(3, ge=1, le=10),
current_user: Dict[str, Any] = Depends(require_role(["admin"])),
):
"""Retry failed notifications (admin only)"""
try:
# This would require implementation to retry failed notifications
# For now, return a placeholder response
return {"message": f"Retry process started for failed notifications (max_retries: {max_retries})"}
except Exception as e:
logger.error("Failed to start retry process", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
# ================================================================
# TESTING ENDPOINTS (Development only)
# ================================================================
@router.post("/test/send-email")
async def test_send_email(
to_email: str = Query(...),
subject: str = Query("Test Email"),
current_user: Dict[str, Any] = Depends(require_role(["admin"])),
):
"""Send test email (admin only, development use)"""
try:
from app.services.email_service import EmailService
email_service = EmailService()
success = await email_service.send_email(
to_email=to_email,
subject=subject,
text_content="This is a test email from the notification service.",
html_content="<h1>Test Email</h1><p>This is a test email from the notification service.</p>"
)
return {"success": success, "message": "Test email sent" if success else "Test email failed"}
except Exception as e:
logger.error("Failed to send test email", error=str(e))
raise HTTPException(status_code=500, detail=str(e))
@router.post("/test/send-whatsapp")
async def test_send_whatsapp(
to_phone: str = Query(...),
message: str = Query("Test WhatsApp message"),
current_user: Dict[str, Any] = Depends(require_role(["admin"])),
):
"""Send test WhatsApp message (admin only, development use)"""
try:
from app.services.whatsapp_service import WhatsAppService
whatsapp_service = WhatsAppService()
success = await whatsapp_service.send_message(
to_phone=to_phone,
message=message
)
return {"success": success, "message": "Test WhatsApp sent" if success else "Test WhatsApp failed"}
except Exception as e:
logger.error("Failed to send test WhatsApp", error=str(e))
2025-07-21 14:41:33 +02:00
raise HTTPException(status_code=500, detail=str(e))