mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	* POC: Added FastAPI with one endpoint (get /logs/service) * POC: Revert error_log * POC: Converted preview related endpoints to FastAPI * POC: Converted two more endpoints to FastAPI * POC: lint * Convert all media endpoints to FastAPI. Added /media prefix (/media/camera && media/events && /media/preview) * Convert all notifications API endpoints to FastAPI * Convert first review API endpoints to FastAPI * Convert remaining review API endpoints to FastAPI * Convert export endpoints to FastAPI * Fix path parameters * Convert events endpoints to FastAPI * Use body for multiple events endpoints * Use body for multiple events endpoints (create and end event) * Convert app endpoints to FastAPI * Convert app endpoints to FastAPI * Convert auth endpoints to FastAPI * Removed flask app in favour of FastAPI app. Implemented FastAPI middleware to check CSRF, connect and disconnect from DB. Added middleware x-forwared-for headers * Added starlette plugin to expose custom headers * Use slowapi as the limiter * Use query parameters for the frame latest endpoint * Use query parameters for the media snapshot.jpg endpoint * Use query parameters for the media MJPEG feed endpoint * Revert initial nginx.conf change * Added missing even_id for /events/search endpoint * Removed left over comment * Use FastAPI TestClient * severity query parameter should be a string * Use the same pattern for all tests * Fix endpoint * Revert media routers to old names. Order routes to make sure the dynamic ones from media.py are only used whenever there's no match on auth/etc * Reverted paths for media on tsx files * Deleted file * Fix test_http to use TestClient * Formatting * Bind timeline to DB * Fix http tests * Replace filename with pathvalidate * Fix latest.ext handling and disable uvicorn access logs * Add cosntraints to api provided values * Formatting * Remove unused * Remove unused * Get rate limiter working --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Notification apis."""
 | |
| 
 | |
| import logging
 | |
| import os
 | |
| 
 | |
| from cryptography.hazmat.primitives import serialization
 | |
| from fastapi import APIRouter, Request
 | |
| from fastapi.responses import JSONResponse
 | |
| from peewee import DoesNotExist
 | |
| from py_vapid import Vapid01, utils
 | |
| 
 | |
| from frigate.api.defs.tags import Tags
 | |
| from frigate.const import CONFIG_DIR
 | |
| from frigate.models import User
 | |
| 
 | |
| logger = logging.getLogger(__name__)
 | |
| 
 | |
| router = APIRouter(tags=[Tags.notifications])
 | |
| 
 | |
| 
 | |
| @router.get("/notifications/pubkey")
 | |
| def get_vapid_pub_key(request: Request):
 | |
|     if not request.app.frigate_config.notifications.enabled:
 | |
|         return JSONResponse(
 | |
|             content=({"success": False, "message": "Notifications are not enabled."}),
 | |
|             status_code=400,
 | |
|         )
 | |
| 
 | |
|     key = Vapid01.from_file(os.path.join(CONFIG_DIR, "notifications.pem"))
 | |
|     raw_pub = key.public_key.public_bytes(
 | |
|         serialization.Encoding.X962, serialization.PublicFormat.UncompressedPoint
 | |
|     )
 | |
|     return JSONResponse(content=utils.b64urlencode(raw_pub), status_code=200)
 | |
| 
 | |
| 
 | |
| @router.post("/notifications/register")
 | |
| def register_notifications(request: Request, body: dict = None):
 | |
|     if request.app.frigate_config.auth.enabled:
 | |
|         # FIXME: For FastAPI the remote-user is not being populated
 | |
|         username = request.headers.get("remote-user") or "admin"
 | |
|     else:
 | |
|         username = "admin"
 | |
| 
 | |
|     json: dict[str, any] = body or {}
 | |
|     sub = json.get("sub")
 | |
| 
 | |
|     if not sub:
 | |
|         return JSONResponse(
 | |
|             content={"success": False, "message": "Subscription must be provided."},
 | |
|             status_code=400,
 | |
|         )
 | |
| 
 | |
|     try:
 | |
|         User.update(notification_tokens=User.notification_tokens.append(sub)).where(
 | |
|             User.username == username
 | |
|         ).execute()
 | |
|         return JSONResponse(
 | |
|             content=({"success": True, "message": "Successfully saved token."}),
 | |
|             status_code=200,
 | |
|         )
 | |
|     except DoesNotExist:
 | |
|         return JSONResponse(
 | |
|             content=({"success": False, "message": "Could not find user."}),
 | |
|             status_code=404,
 | |
|         )
 |