notification.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. """Pydantic schemas for notification providers."""
  2. from datetime import datetime
  3. from typing import Any
  4. from pydantic import BaseModel, Field, field_validator, model_validator
  5. from backend.app.core.compat import StrEnum
  6. class ProviderType(StrEnum):
  7. """Supported notification provider types."""
  8. CALLMEBOT = "callmebot"
  9. NTFY = "ntfy"
  10. PUSHOVER = "pushover"
  11. TELEGRAM = "telegram"
  12. EMAIL = "email"
  13. DISCORD = "discord"
  14. WEBHOOK = "webhook"
  15. HOMEASSISTANT = "homeassistant"
  16. BARK = "bark"
  17. class NotificationProviderBase(BaseModel):
  18. """Base schema for notification providers."""
  19. name: str = Field(..., min_length=1, max_length=100, description="User-defined name")
  20. provider_type: ProviderType = Field(..., description="Type of notification provider")
  21. enabled: bool = Field(default=True, description="Whether notifications are enabled")
  22. config: dict[str, Any] = Field(..., description="Provider-specific configuration")
  23. # Event triggers - print lifecycle
  24. on_print_start: bool = Field(default=False, description="Notify on print start")
  25. on_print_complete: bool = Field(default=True, description="Notify on print complete")
  26. on_print_failed: bool = Field(default=True, description="Notify on print failed")
  27. on_print_stopped: bool = Field(default=True, description="Notify when print is stopped/cancelled")
  28. on_print_progress: bool = Field(default=False, description="Notify at 25%, 50%, 75% progress")
  29. on_print_missing_spool_assignment: bool = Field(
  30. default=False,
  31. description="Notify when a print starts with required trays missing spool assignments",
  32. )
  33. on_billing_charge_failed: bool = Field(default=True, description="Notify when a print charge cannot be recorded")
  34. # Event triggers - printer status
  35. on_printer_offline: bool = Field(default=False, description="Notify when printer goes offline")
  36. on_printer_error: bool = Field(default=False, description="Notify on printer errors (AMS, etc.)")
  37. on_ai_failure_detection: bool = Field(
  38. default=False,
  39. description="Notify when Obico AI detects a possible print failure (spaghetti)",
  40. )
  41. on_filament_low: bool = Field(default=False, description="Notify when filament is running low")
  42. on_maintenance_due: bool = Field(default=False, description="Notify when maintenance is due")
  43. # Event triggers - AMS environmental alarms (regular AMS)
  44. on_ams_humidity_high: bool = Field(default=False, description="Notify when AMS humidity exceeds threshold")
  45. on_ams_temperature_high: bool = Field(default=False, description="Notify when AMS temperature exceeds threshold")
  46. on_ams_drying_suspended: bool = Field(
  47. default=True, description="Notify when automatic drying gives up on an AMS unit"
  48. )
  49. # Event triggers - AMS-HT environmental alarms
  50. on_ams_ht_humidity_high: bool = Field(default=False, description="Notify when AMS-HT humidity exceeds threshold")
  51. on_ams_ht_temperature_high: bool = Field(
  52. default=False, description="Notify when AMS-HT temperature exceeds threshold"
  53. )
  54. # Event triggers - Home Assistant sensors bound to a printer (#1148)
  55. on_ha_sensor_alert: bool = Field(
  56. default=False, description="Notify when a bound Home Assistant sensor enters its alert state"
  57. )
  58. # Event triggers - Home Assistant sensors bound to a storage location (#2824)
  59. on_location_ha_sensor_alert: bool = Field(
  60. default=False,
  61. description="Notify when a Home Assistant sensor bound to a storage location enters its alert state",
  62. )
  63. # Event triggers - Build plate detection
  64. on_plate_not_empty: bool = Field(default=True, description="Notify when objects detected on plate before print")
  65. on_plate_clear_required: bool = Field(
  66. default=False, description="Notify when a finished print is waiting for plate-clear confirmation"
  67. )
  68. # Event triggers - Bed cooled
  69. on_bed_cooled: bool = Field(default=False, description="Notify when bed cools after print")
  70. # Event triggers - First layer complete
  71. on_first_layer_complete: bool = Field(default=False, description="Notify when first layer completes")
  72. # Event triggers - Inventory stock alerts
  73. # Missing from this schema until now, so every payload naming them was
  74. # dropped silently: the UI's toggles round-tripped as 200 OK and the row
  75. # never changed, and _provider_to_dict never returned them either, so they
  76. # always read back off. The columns and the sending code have existed since
  77. # the inventory forecast landed.
  78. on_stock_reorder_alert: bool = Field(
  79. default=False, description="Notify when an inventory SKU hits its reorder point"
  80. )
  81. on_stock_break_alert: bool = Field(
  82. default=False, description="Notify when stock will run out before replenishment arrives"
  83. )
  84. # Event triggers - Print queue
  85. on_queue_job_added: bool = Field(default=False, description="Notify when job is added to queue")
  86. on_queue_job_assigned: bool = Field(default=False, description="Notify when model-based job is assigned to printer")
  87. on_queue_job_started: bool = Field(default=False, description="Notify when queue job starts printing")
  88. on_queue_job_waiting: bool = Field(default=True, description="Notify when job is waiting for filament or printer")
  89. on_queue_job_skipped: bool = Field(default=True, description="Notify when job is skipped")
  90. on_queue_job_failed: bool = Field(default=True, description="Notify when job fails to start")
  91. on_queue_completed: bool = Field(default=False, description="Notify when all queue jobs finish")
  92. # Quiet hours
  93. quiet_hours_enabled: bool = Field(default=False, description="Enable quiet hours")
  94. quiet_hours_start: str | None = Field(default=None, description="Start time in HH:MM format")
  95. quiet_hours_end: str | None = Field(default=None, description="End time in HH:MM format")
  96. # Daily digest
  97. daily_digest_enabled: bool = Field(default=False, description="Batch notifications into daily digest")
  98. daily_digest_time: str | None = Field(default=None, description="Time to send digest in HH:MM format")
  99. # Printer filter
  100. printer_id: int | None = Field(default=None, description="Specific printer ID or null for all")
  101. @field_validator("quiet_hours_start", "quiet_hours_end", "daily_digest_time")
  102. @classmethod
  103. def validate_time_format(cls, v: str | None) -> str | None:
  104. if v is None:
  105. return v
  106. try:
  107. parts = v.split(":")
  108. if len(parts) != 2:
  109. raise ValueError("Invalid time format")
  110. hour, minute = int(parts[0]), int(parts[1])
  111. if not (0 <= hour <= 23 and 0 <= minute <= 59):
  112. raise ValueError("Invalid time range")
  113. return f"{hour:02d}:{minute:02d}"
  114. except (ValueError, TypeError):
  115. raise ValueError("Time must be in HH:MM format (e.g., 22:00)")
  116. class NotificationProviderCreate(NotificationProviderBase):
  117. """Schema for creating a notification provider."""
  118. pass
  119. class NotificationProviderUpdate(BaseModel):
  120. """Schema for updating a notification provider (all fields optional)."""
  121. name: str | None = Field(default=None, min_length=1, max_length=100)
  122. provider_type: ProviderType | None = None
  123. enabled: bool | None = None
  124. config: dict[str, Any] | None = None
  125. # Event triggers - print lifecycle
  126. on_print_start: bool | None = None
  127. on_print_complete: bool | None = None
  128. on_print_failed: bool | None = None
  129. on_print_stopped: bool | None = None
  130. on_print_progress: bool | None = None
  131. on_print_missing_spool_assignment: bool | None = None
  132. on_billing_charge_failed: bool | None = None
  133. # Event triggers - printer status
  134. on_printer_offline: bool | None = None
  135. on_printer_error: bool | None = None
  136. on_ai_failure_detection: bool | None = None
  137. on_filament_low: bool | None = None
  138. on_maintenance_due: bool | None = None
  139. # Event triggers - AMS environmental alarms (regular AMS)
  140. on_ams_humidity_high: bool | None = None
  141. on_ams_temperature_high: bool | None = None
  142. on_ams_drying_suspended: bool | None = None
  143. # Event triggers - AMS-HT environmental alarms
  144. on_ams_ht_humidity_high: bool | None = None
  145. on_ams_ht_temperature_high: bool | None = None
  146. # Event triggers - Home Assistant sensors bound to a printer (#1148)
  147. on_ha_sensor_alert: bool | None = None
  148. # Event triggers - Home Assistant sensors bound to a storage location (#2824)
  149. on_location_ha_sensor_alert: bool | None = None
  150. # Event triggers - Build plate detection
  151. on_plate_not_empty: bool | None = None
  152. on_plate_clear_required: bool | None = None
  153. # Event triggers - Bed cooled
  154. on_bed_cooled: bool | None = None
  155. # Event triggers - First layer complete
  156. on_first_layer_complete: bool | None = None
  157. # Event triggers - Inventory stock alerts
  158. on_stock_reorder_alert: bool | None = None
  159. on_stock_break_alert: bool | None = None
  160. # Event triggers - Print queue
  161. on_queue_job_added: bool | None = None
  162. on_queue_job_assigned: bool | None = None
  163. on_queue_job_started: bool | None = None
  164. on_queue_job_waiting: bool | None = None
  165. on_queue_job_skipped: bool | None = None
  166. on_queue_job_failed: bool | None = None
  167. on_queue_completed: bool | None = None
  168. # Quiet hours
  169. quiet_hours_enabled: bool | None = None
  170. quiet_hours_start: str | None = None
  171. quiet_hours_end: str | None = None
  172. # Daily digest
  173. daily_digest_enabled: bool | None = None
  174. daily_digest_time: str | None = None
  175. # Printer filter
  176. printer_id: int | None = None
  177. class NotificationProviderResponse(NotificationProviderBase):
  178. """Schema for notification provider API responses."""
  179. @model_validator(mode="before")
  180. @classmethod
  181. def _null_event_flags_read_as_off(cls, data: Any) -> Any:
  182. """Read a NULL event flag as off instead of failing the whole response.
  183. Every on_* column on notification_providers is nullable with no server
  184. default -- the values come from the ORM at INSERT time. A row created
  185. before a flag's column existed keeps NULL there forever unless a
  186. migration backfills it, and one that did not (the column was created by
  187. Base.metadata before run_migrations, so the ALTER ... DEFAULT false was
  188. swallowed as a duplicate) leaves NULLs behind on a live install.
  189. Those NULLs are harmless until the flag is declared on this schema: the
  190. Response inherits the write model, so `bool` is then required on the way
  191. out, pydantic rejects None, and every provider row fails at once -- the
  192. list route 500s and the UI renders an empty list, which reads to the user
  193. as "my providers are gone". That is exactly what shipped in #2827.
  194. Off is not a guess: _get_providers_for_event selects on `.is_(True)`, so
  195. the sender already skips a NULL flag. This makes the read agree with the
  196. behaviour the row already has, rather than with the field's declared
  197. default -- some of which are True, and none of which should switch a
  198. notification on as a side effect of repairing a legacy row.
  199. Writes are untouched: Create and Update inherit from the base, not here,
  200. so a payload sending null for a flag is still a 422.
  201. """
  202. # Every route returns _provider_to_dict(); anything else (an ORM object
  203. # via from_attributes) is passed through for pydantic to handle.
  204. if not isinstance(data, dict):
  205. return data
  206. flags = [name for name, f in cls.model_fields.items() if f.annotation is bool]
  207. if any(data.get(name, False) is None for name in flags):
  208. data = {**data, **{name: False for name in flags if data.get(name, False) is None}}
  209. return data
  210. id: int
  211. last_success: datetime | None = None
  212. last_error: str | None = None
  213. last_error_at: datetime | None = None
  214. created_at: datetime
  215. updated_at: datetime
  216. class Config:
  217. from_attributes = True
  218. class NotificationTestRequest(BaseModel):
  219. """Schema for testing notification configuration."""
  220. provider_type: ProviderType
  221. config: dict[str, Any]
  222. class NotificationTestResponse(BaseModel):
  223. """Schema for test notification response."""
  224. success: bool
  225. message: str
  226. # Provider-specific config schemas for documentation/validation reference
  227. class CallMeBotConfig(BaseModel):
  228. """CallMeBot/WhatsApp configuration."""
  229. phone: str = Field(..., description="Phone number with country code (e.g., +1234567890)")
  230. apikey: str = Field(..., description="API key from CallMeBot")
  231. class NtfyConfig(BaseModel):
  232. """ntfy configuration."""
  233. server: str = Field(default="https://ntfy.sh", description="ntfy server URL")
  234. topic: str = Field(..., description="Topic name to publish to")
  235. auth_token: str | None = Field(default=None, description="Optional authentication token")
  236. event_priorities: dict[str, int] | None = Field(
  237. default=None,
  238. description=(
  239. "Per-event priority override. Keys are event names (e.g. 'on_print_failed'); "
  240. "values are ntfy priorities 1-5 (1=min, 2=low, 3=default, 4=high, 5=urgent). "
  241. "Events without an entry use ntfy's server-side default."
  242. ),
  243. )
  244. class PushoverConfig(BaseModel):
  245. """Pushover configuration."""
  246. user_key: str = Field(..., description="Your Pushover user key")
  247. app_token: str = Field(..., description="Your Pushover application token")
  248. priority: int = Field(default=0, ge=-2, le=2, description="Message priority (-2 to 2)")
  249. # Emergency priority (2) only: how often to re-alert and when to stop.
  250. # Pushover requires retry >= 30s and expire <= 10800s (3h).
  251. retry: int = Field(default=60, ge=30, le=10800, description="Emergency re-alert interval in seconds (priority 2)")
  252. expire: int = Field(default=3600, ge=30, le=10800, description="Emergency alert expiry in seconds (priority 2)")
  253. class TelegramConfig(BaseModel):
  254. """Telegram bot configuration."""
  255. bot_token: str = Field(..., description="Bot token from @BotFather")
  256. chat_id: str = Field(..., description="Chat ID to send messages to")
  257. class EmailConfig(BaseModel):
  258. """Email/SMTP configuration."""
  259. smtp_server: str = Field(..., description="SMTP server hostname")
  260. smtp_port: int = Field(default=587, description="SMTP port (587 for TLS, 465 for SSL)")
  261. username: str = Field(..., description="SMTP username/email")
  262. password: str = Field(..., description="SMTP password or app password")
  263. from_email: str = Field(..., description="From email address")
  264. to_email: str = Field(..., description="Recipient email address")
  265. use_tls: bool = Field(default=True, description="Use TLS encryption")
  266. # Notification Log schemas
  267. class NotificationLogResponse(BaseModel):
  268. """Schema for notification log API responses."""
  269. id: int
  270. provider_id: int
  271. provider_name: str | None = None
  272. provider_type: str | None = None
  273. event_type: str
  274. title: str
  275. message: str
  276. success: bool
  277. error_message: str | None = None
  278. printer_id: int | None = None
  279. printer_name: str | None = None
  280. created_at: datetime
  281. class Config:
  282. from_attributes = True
  283. class NotificationLogStats(BaseModel):
  284. """Statistics for notification logs."""
  285. total: int
  286. success_count: int
  287. failure_count: int
  288. by_event_type: dict[str, int]
  289. by_provider: dict[str, int]