Spaces:
Sleeping
Sleeping
File size: 12,977 Bytes
f871fed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
"""
Auto-Update Agent API Router
Endpoints for managing source monitoring and update notifications.
"""
from typing import List, Optional
from fastapi import APIRouter, HTTPException, BackgroundTasks
from pydantic import BaseModel
from loguru import logger
from open_notebook.domain.auto_update import (
SourceMonitor,
UpdateNotification,
MonitorJobRun,
SourceMonitorCreate,
SourceMonitorUpdate,
NotificationAction,
MonitoringStats,
)
from open_notebook.services.auto_update_service import auto_update_service
router = APIRouter(prefix="/monitoring", tags=["monitoring"])
# ============================================================================
# Response Models
# ============================================================================
class SourceMonitorResponse(BaseModel):
"""Response model for source monitor."""
id: Optional[str] = None
source_id: str
enabled: bool
check_frequency: str
last_checked_at: Optional[str] = None
last_content_hash: Optional[str] = None
consecutive_failures: int = 0
class NotificationResponse(BaseModel):
"""Response model for notification."""
id: Optional[str] = None
source_id: str
source_title: str
change_summary: str
diff_highlights: List[str]
old_content_preview: Optional[str] = None
new_content_preview: Optional[str] = None
severity: str
is_read: bool
is_dismissed: bool
created_at: str
class JobRunResponse(BaseModel):
"""Response model for job run."""
id: Optional[str] = None
started_at: str
completed_at: Optional[str] = None
status: str
sources_checked: int
updates_found: int
errors: List[str]
class StatsResponse(BaseModel):
"""Response model for monitoring stats."""
total_monitors: int
enabled_monitors: int
unread_notifications: int
last_job_run: Optional[str] = None
last_job_status: Optional[str] = None
# ============================================================================
# Monitor Endpoints
# ============================================================================
@router.post("/monitors", response_model=SourceMonitorResponse)
async def create_monitor(request: SourceMonitorCreate):
"""
Create or update monitoring for a source.
If monitoring already exists for the source, it will be updated.
"""
try:
monitor = await auto_update_service.create_monitor(
source_id=request.source_id,
check_frequency=request.check_frequency,
enabled=request.enabled,
)
return SourceMonitorResponse(
id=monitor.id,
source_id=monitor.source_id,
enabled=monitor.enabled,
check_frequency=monitor.check_frequency,
last_checked_at=monitor.last_checked_at.isoformat() if monitor.last_checked_at else None,
last_content_hash=monitor.last_content_hash,
consecutive_failures=monitor.consecutive_failures,
)
except Exception as e:
logger.error(f"Failed to create monitor: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/monitors", response_model=List[SourceMonitorResponse])
async def list_monitors():
"""Get all source monitors."""
try:
monitors = await auto_update_service.get_all_monitors()
return [
SourceMonitorResponse(
id=m.id,
source_id=m.source_id,
enabled=m.enabled,
check_frequency=m.check_frequency,
last_checked_at=m.last_checked_at.isoformat() if m.last_checked_at else None,
last_content_hash=m.last_content_hash,
consecutive_failures=m.consecutive_failures,
)
for m in monitors
]
except Exception as e:
logger.error(f"Failed to list monitors: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/monitors/{source_id}", response_model=SourceMonitorResponse)
async def get_monitor(source_id: str):
"""Get monitor for a specific source."""
monitor = await auto_update_service.get_monitor(source_id)
if not monitor:
raise HTTPException(status_code=404, detail="Monitor not found")
return SourceMonitorResponse(
id=monitor.id,
source_id=monitor.source_id,
enabled=monitor.enabled,
check_frequency=monitor.check_frequency,
last_checked_at=monitor.last_checked_at.isoformat() if monitor.last_checked_at else None,
last_content_hash=monitor.last_content_hash,
consecutive_failures=monitor.consecutive_failures,
)
@router.patch("/monitors/{source_id}", response_model=SourceMonitorResponse)
async def update_monitor(source_id: str, request: SourceMonitorUpdate):
"""Update monitoring settings for a source."""
monitor = await auto_update_service.update_monitor(
source_id=source_id,
check_frequency=request.check_frequency,
enabled=request.enabled,
)
if not monitor:
raise HTTPException(status_code=404, detail="Monitor not found")
return SourceMonitorResponse(
id=monitor.id,
source_id=monitor.source_id,
enabled=monitor.enabled,
check_frequency=monitor.check_frequency,
last_checked_at=monitor.last_checked_at.isoformat() if monitor.last_checked_at else None,
last_content_hash=monitor.last_content_hash,
consecutive_failures=monitor.consecutive_failures,
)
@router.delete("/monitors/{source_id}")
async def delete_monitor(source_id: str):
"""Delete monitoring for a source."""
success = await auto_update_service.delete_monitor(source_id)
if not success:
raise HTTPException(status_code=404, detail="Monitor not found")
return {"status": "deleted"}
# ============================================================================
# Notification Endpoints
# ============================================================================
@router.get("/notifications", response_model=List[NotificationResponse])
async def list_notifications(
include_dismissed: bool = False,
limit: int = 100,
):
"""Get notifications."""
try:
notifications = await auto_update_service.get_notifications(
include_dismissed=include_dismissed,
limit=limit,
)
return [
NotificationResponse(
id=n.id,
source_id=n.source_id,
source_title=n.source_title,
change_summary=n.change_summary,
diff_highlights=n.diff_highlights,
old_content_preview=n.old_content_preview,
new_content_preview=n.new_content_preview,
severity=n.severity,
is_read=n.is_read,
is_dismissed=n.is_dismissed,
created_at=n.created_at.isoformat(),
)
for n in notifications
]
except Exception as e:
logger.error(f"Failed to list notifications: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/notifications/unread", response_model=List[NotificationResponse])
async def get_unread_notifications(limit: int = 50):
"""Get unread notifications."""
try:
notifications = await auto_update_service.get_unread_notifications(limit=limit)
return [
NotificationResponse(
id=n.id,
source_id=n.source_id,
source_title=n.source_title,
change_summary=n.change_summary,
diff_highlights=n.diff_highlights,
old_content_preview=n.old_content_preview,
new_content_preview=n.new_content_preview,
severity=n.severity,
is_read=n.is_read,
is_dismissed=n.is_dismissed,
created_at=n.created_at.isoformat(),
)
for n in notifications
]
except Exception as e:
logger.error(f"Failed to get unread notifications: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/notifications/count")
async def get_notification_count():
"""Get count of unread notifications."""
try:
count = auto_update_service.get_unread_count()
return {"unread_count": count}
except Exception as e:
logger.error(f"Failed to get notification count: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.post("/notifications/{notification_id}/read")
async def mark_notification_read(notification_id: str):
"""Mark a notification as read."""
success = await auto_update_service.mark_notification_read(notification_id)
if not success:
raise HTTPException(status_code=404, detail="Notification not found")
return {"status": "marked_read"}
@router.post("/notifications/{notification_id}/dismiss")
async def dismiss_notification(notification_id: str):
"""Dismiss a notification."""
success = await auto_update_service.dismiss_notification(notification_id)
if not success:
raise HTTPException(status_code=404, detail="Notification not found")
return {"status": "dismissed"}
@router.post("/notifications/mark-all-read")
async def mark_all_notifications_read():
"""Mark all notifications as read."""
try:
count = await auto_update_service.mark_all_read()
return {"status": "success", "count": count}
except Exception as e:
logger.error(f"Failed to mark all read: {e}")
raise HTTPException(status_code=500, detail=str(e))
# ============================================================================
# Job Endpoints
# ============================================================================
@router.post("/jobs/run")
async def trigger_check_job(
background_tasks: BackgroundTasks,
frequency: Optional[str] = None,
):
"""
Trigger a monitoring job to check sources for updates.
The job runs in the background. Use /jobs/history to check status.
"""
try:
# Check if already running
running = await MonitorJobRun.get_running()
if running:
return {
"status": "already_running",
"job_id": running.id,
"started_at": running.started_at.isoformat(),
}
# Run in background
background_tasks.add_task(
auto_update_service.run_check_job,
frequency
)
return {"status": "started", "message": "Job started in background"}
except Exception as e:
logger.error(f"Failed to trigger job: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/jobs/history", response_model=List[JobRunResponse])
async def get_job_history(limit: int = 10):
"""Get history of monitoring jobs."""
try:
jobs = await MonitorJobRun.get_latest(limit)
return [
JobRunResponse(
id=j.id,
started_at=j.started_at.isoformat(),
completed_at=j.completed_at.isoformat() if j.completed_at else None,
status=j.status,
sources_checked=j.sources_checked,
updates_found=j.updates_found,
errors=j.errors,
)
for j in jobs
]
except Exception as e:
logger.error(f"Failed to get job history: {e}")
raise HTTPException(status_code=500, detail=str(e))
@router.get("/jobs/current")
async def get_current_job():
"""Get currently running job if any."""
job = await MonitorJobRun.get_running()
if not job:
return {"status": "no_job_running"}
return JobRunResponse(
id=job.id,
started_at=job.started_at.isoformat(),
completed_at=job.completed_at.isoformat() if job.completed_at else None,
status=job.status,
sources_checked=job.sources_checked,
updates_found=job.updates_found,
errors=job.errors,
)
# ============================================================================
# Stats Endpoint
# ============================================================================
@router.get("/stats", response_model=StatsResponse)
async def get_monitoring_stats():
"""Get monitoring statistics."""
try:
stats = await auto_update_service.get_stats()
return StatsResponse(
total_monitors=stats.total_monitors,
enabled_monitors=stats.enabled_monitors,
unread_notifications=stats.unread_notifications,
last_job_run=stats.last_job_run.isoformat() if stats.last_job_run else None,
last_job_status=stats.last_job_status,
)
except Exception as e:
logger.error(f"Failed to get stats: {e}")
raise HTTPException(status_code=500, detail=str(e))
|