mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-25 13:19:02 +03:00
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Jetson Jetpack 6 (push) Waiting to run
* Pin ruff * Add python upgrade fixes This enables python upgrade checks in ruff to look for deprecated types and patterns. This namely fixes: - usage of deprecated `Typing` which is now built in - some specific exceptions which are caught and have new aliases Some specific UP checks were also ignored as they are stylistic / unimportant and likely to cause bugs * Remove async blocking calls Use asyncio.to_thread on two remaining blocking calls to fix hanging event thread loop. Enable this specific rule to block it in the future. * Use proper logging mechanism * Correctly format logs * Raise with context When raising an exception include the from context to improve debugging * Cleanup
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
from enum import Enum
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Extension(str, Enum):
|
|
webp = "webp"
|
|
png = "png"
|
|
jpg = "jpg"
|
|
jpeg = "jpeg"
|
|
|
|
def get_mime_type(self) -> str:
|
|
if self in (Extension.jpg, Extension.jpeg):
|
|
return "image/jpeg"
|
|
return f"image/{self.value}"
|
|
|
|
|
|
class MediaLatestFrameQueryParams(BaseModel):
|
|
bbox: int | None = None
|
|
timestamp: int | None = None
|
|
zones: int | None = None
|
|
mask: int | None = None
|
|
motion: int | None = None
|
|
paths: int | None = None
|
|
regions: int | None = None
|
|
quality: int | None = 70
|
|
height: int | None = None
|
|
store: int | None = None
|
|
|
|
|
|
class MediaEventsSnapshotQueryParams(BaseModel):
|
|
download: bool | None = False
|
|
timestamp: int | None = None
|
|
bbox: int | None = None
|
|
crop: int | None = None
|
|
height: int | None = None
|
|
quality: int | None = None
|
|
|
|
|
|
class MediaMjpegFeedQueryParams(BaseModel):
|
|
fps: int = 3
|
|
height: int = 360
|
|
bbox: int | None = None
|
|
timestamp: int | None = None
|
|
zones: int | None = None
|
|
mask: int | None = None
|
|
motion: int | None = None
|
|
regions: int | None = None
|