slicer_presets.py 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. """Pydantic schemas for the unified slicer-presets endpoint.
  2. The SliceModal pulls printer/process/filament options from three sources, in
  3. priority order: cloud (the user's Bambu Cloud account), local (DB-backed
  4. imported profiles), and standard (slicer-bundled stock profiles). The endpoint
  5. returns all three lists with name-based dedup applied so each preset appears
  6. exactly once across the response.
  7. """
  8. from typing import Literal
  9. from pydantic import BaseModel
  10. CloudStatus = Literal["ok", "not_authenticated", "expired", "unreachable"]
  11. class UnifiedPreset(BaseModel):
  12. """A single printer/process/filament preset with its source.
  13. The ``id`` shape varies by source:
  14. - cloud → Bambu Cloud setting_id (e.g. ``"PFUS9ac902733670a9"``)
  15. - local → stringified DB row id from ``local_presets``
  16. - standard → preset name as written in the bundled JSON (the slicer
  17. resolves bundled profiles by name during inheritance walk)
  18. The frontend treats ``id`` as opaque; the slice dispatch path uses
  19. ``(source, id)`` to fetch / pass the preset content to the sidecar.
  20. ``filament_type`` and ``filament_colour`` are populated for the filament
  21. slot only — they let the SliceModal pre-pick a preset per plate slot in
  22. the multi-color flow by matching against the source 3MF's per-slot type
  23. and color. Populated when the underlying preset JSON exposes them; left
  24. as ``None`` on bundled profiles where colour is a runtime spool attribute.
  25. ``compatible_printers`` is the slicer's own list of printer-preset names a
  26. process / filament preset declares itself valid for. Populated for the
  27. local tier (stored at import time); left ``None`` for cloud (no per-preset
  28. detail is fetched — rate limits) and standard (the sidecar's bundled
  29. listing doesn't expose it). The SliceModal uses it to filter the
  30. process / filament dropdowns by the selected printer (#1325); when it is
  31. ``None`` the modal falls back to the user's uploaded Slicer Bundles, which
  32. map each printer to the presets it ships.
  33. """
  34. id: str
  35. name: str
  36. source: Literal["orca_cloud", "cloud", "local", "standard"]
  37. filament_type: str | None = None
  38. filament_colour: str | None = None
  39. compatible_printers: list[str] | None = None
  40. class UnifiedPresetsBySlot(BaseModel):
  41. """Three slots in the order Bambu Studio / OrcaSlicer use."""
  42. printer: list[UnifiedPreset] = []
  43. process: list[UnifiedPreset] = []
  44. filament: list[UnifiedPreset] = []
  45. class UnifiedPresetsResponse(BaseModel):
  46. """Every tier carries its full preset list — no cross-tier dedup.
  47. Priority order: ``local > orca_cloud > cloud > standard``. The order
  48. drives auto-pick (first non-empty tier wins, name-lookup walks tiers
  49. in this order, filament scoring tiebreaks by per-tier bonus) and
  50. determines the visual rendering order of the SliceModal's optgroups,
  51. but a name that exists in multiple tiers appears in EACH of their
  52. groups so the user can pick any source.
  53. ``cloud_status`` / ``orca_cloud_status`` let the frontend show a banner
  54. explaining why a cloud tier is empty when the user expected to see it
  55. (signed out / token expired / network down). Each tier has its own
  56. status because they can fail independently.
  57. """
  58. orca_cloud: UnifiedPresetsBySlot = UnifiedPresetsBySlot()
  59. cloud: UnifiedPresetsBySlot = UnifiedPresetsBySlot()
  60. local: UnifiedPresetsBySlot = UnifiedPresetsBySlot()
  61. standard: UnifiedPresetsBySlot = UnifiedPresetsBySlot()
  62. cloud_status: CloudStatus = "ok"
  63. orca_cloud_status: CloudStatus = "ok"