_spoolman_helpers.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. """Pure helper functions for Spoolman spool mapping.
  2. No heavy dependencies — importable in unit tests without the full backend stack.
  3. """
  4. from __future__ import annotations
  5. import json
  6. import logging
  7. import math
  8. import re
  9. from typing import Any
  10. from typing_extensions import TypedDict
  11. from backend.app.api.routes._url_safety import assert_safe_lan_service_url
  12. logger = logging.getLogger(__name__)
  13. class MappedSpoolFields(TypedDict):
  14. """Full shape of the dict returned by _map_spoolman_spool (InventorySpool-compatible)."""
  15. id: int
  16. material: str | None
  17. subtype: str | None
  18. brand: str | None
  19. color_name: str | None
  20. color_name_is_synthesized: bool
  21. rgba: str | None
  22. extra_colors: str | None
  23. effect_type: None
  24. label_weight: int | None
  25. core_weight: int | None
  26. core_weight_catalog_id: None
  27. weight_used: float | None
  28. weight_used_baseline: float | None
  29. weight_locked: bool
  30. last_scale_weight: None
  31. last_weighed_at: None
  32. slicer_filament: None
  33. slicer_filament_name: str | None
  34. nozzle_temp_min: int | None
  35. nozzle_temp_max: None
  36. note: str | None
  37. added_full: None
  38. last_used: str | None
  39. encode_time: str | None
  40. tag_uid: str | None
  41. tray_uuid: str | None
  42. data_origin: str | None
  43. tag_type: str | None
  44. archived_at: str | None
  45. created_at: str | None # None when Spoolman spool has no registered timestamp
  46. updated_at: str | None
  47. cost_per_kg: float | None
  48. storage_location: str | None
  49. location_id: int | None
  50. k_profiles: list[Any]
  51. class NormalizedVendorRef(TypedDict):
  52. """Vendor reference embedded in a NormalizedFilament."""
  53. id: int
  54. name: str
  55. class NormalizedFilament(TypedDict):
  56. """Normalised Spoolman filament dict returned by the /filaments catalog endpoint."""
  57. id: int
  58. name: str
  59. material: str | None
  60. color_hex: str | None
  61. color_name: str | None
  62. weight: int | None
  63. spool_weight: float | None
  64. vendor: NormalizedVendorRef | None
  65. def assert_safe_spoolman_url(url: str) -> None:
  66. """Raise ValueError if the Spoolman *url* should be blocked as an SSRF risk.
  67. Thin wrapper over the shared LAN-service policy — see
  68. ``_url_safety.assert_safe_lan_service_url`` for what is and isn't
  69. rejected, and why loopback/RFC-1918 are deliberately permitted (running
  70. Spoolman on the same host or home LAN is THE normal topology).
  71. Kept as a named function because the "Spoolman URL …" wording in its
  72. errors is user-facing and asserted by existing tests.
  73. """
  74. assert_safe_lan_service_url(url, label="Spoolman URL")
  75. # Six characters, or eight when the filament carries an alpha byte. The write
  76. # side stores eight only for genuinely translucent spools (#2912); rejecting
  77. # them here turned every clear spool into neutral grey on read.
  78. _COLOR_HEX_RE = re.compile(r"^[0-9A-Fa-f]{6}(?:[0-9A-Fa-f]{2})?$")
  79. _TAG_HEX_RE = re.compile(r"^[0-9A-F]+$")
  80. def _safe_int(value: object, fallback: int) -> int:
  81. """Convert value to int, returning fallback for None/NaN/Inf/non-numeric."""
  82. try:
  83. f = float(value) # type: ignore[arg-type]
  84. if math.isfinite(f):
  85. return int(f)
  86. except (TypeError, ValueError):
  87. pass
  88. return fallback
  89. def _safe_float(value: object, fallback: float) -> float:
  90. """Convert value to float, returning fallback for None/NaN/Inf/non-numeric."""
  91. try:
  92. f = float(value) # type: ignore[arg-type]
  93. if math.isfinite(f):
  94. return f
  95. except (TypeError, ValueError):
  96. pass
  97. return fallback
  98. def _safe_optional_float(value: object) -> float | None:
  99. """Convert value to finite float, or None if missing/NaN/Infinite/non-numeric.
  100. Used for optional monetary fields (price) to prevent Infinity/NaN from
  101. reaching JSON serialisation, which raises ValueError with allow_nan=False.
  102. """
  103. if value is None:
  104. return None
  105. try:
  106. f = float(value) # type: ignore[arg-type]
  107. if math.isfinite(f):
  108. return f
  109. except (TypeError, ValueError):
  110. pass
  111. return None
  112. def _extract_extra_str(extra: dict, key: str) -> str:
  113. """Extract a JSON-encoded string from a Spoolman extra dict.
  114. Spoolman stores extra values as JSON-stringified text — a stored string
  115. "GFL05" appears as `'"GFL05"'` (six chars including the quotes). This
  116. unwraps that, returning the bare string. Returns "" for missing keys,
  117. non-strings, or invalid JSON.
  118. """
  119. raw = extra.get(key)
  120. if not isinstance(raw, str):
  121. return ""
  122. try:
  123. decoded = json.loads(raw)
  124. except (json.JSONDecodeError, ValueError):
  125. # Tolerate bare-string values written without JSON encoding.
  126. return raw
  127. return decoded if isinstance(decoded, str) else ""
  128. def parse_spoolman_multi_colors(filament: dict) -> list[str]:
  129. """Spoolman's ``multi_color_hexes`` as a list of bare 6/8-char hex tokens.
  130. Spoolman stores the extra stops of a gradient / dual / multi-colour
  131. filament here, and writes the field as a comma-separated string in some
  132. releases and a list in others -- both shapes are accepted. Tokens keep the
  133. case they arrived in and lose any leading ``#``, which is the form
  134. ``Spool.extra_colors`` stores and ``parseStops`` on the client expects.
  135. Shared with the label renderer rather than parsed twice: the two read the
  136. same field for the same purpose, and a swatch on a printer card that
  137. disagreed with the swatch on the printed label would be worse than either
  138. being wrong on its own.
  139. """
  140. raw = filament.get("multi_color_hexes")
  141. if isinstance(raw, str):
  142. tokens = raw.split(",")
  143. elif isinstance(raw, list):
  144. tokens = [str(token) for token in raw]
  145. else:
  146. return []
  147. return [cleaned for token in tokens if (cleaned := token.strip().lstrip("#"))]
  148. def _map_spoolman_spool(spool: dict) -> MappedSpoolFields:
  149. """Convert a raw Spoolman spool dict to the InventorySpool-compatible format.
  150. Fields not supported by Spoolman (k_profiles, slicer_filament, …) are
  151. returned as None / empty so the frontend can still render them without
  152. errors. The ``data_origin`` field is set to ``"spoolman"`` so UI code can
  153. distinguish these spools from local ones.
  154. """
  155. raw_id = spool.get("id")
  156. if raw_id is None:
  157. raise ValueError("Spoolman spool is missing required 'id' field")
  158. try:
  159. spool_id: int = int(raw_id)
  160. except (TypeError, ValueError):
  161. raise ValueError(f"Spoolman spool 'id' is not a valid integer: {raw_id!r}")
  162. if spool_id <= 0:
  163. raise ValueError(f"Spoolman spool 'id' must be a positive integer, got {spool_id}")
  164. filament: dict = spool.get("filament") or {}
  165. if not filament:
  166. logger.warning(
  167. "Spoolman spool %s has no filament data — all filament fields will use defaults",
  168. spool_id,
  169. )
  170. vendor: dict = filament.get("vendor") or {}
  171. extra: dict = spool.get("extra") or {}
  172. # RFID tag stored as JSON-encoded string in Spoolman extra.tag.
  173. # 32-char hex → Bambu Lab tray UUID; 8–30-char hex → NFC tag UID.
  174. # Accepting the full realistic UID range (4-byte = 8 chars, 7-byte = 14 chars,
  175. # 10-byte = 20 chars) avoids silently dropping valid SpoolBuddy-written tags.
  176. raw_tag: str = (extra.get("tag") or "").strip('"').upper()
  177. _raw_is_hex = bool(_TAG_HEX_RE.match(raw_tag))
  178. tag_uid = raw_tag if _raw_is_hex and 8 <= len(raw_tag) <= 30 else None
  179. tray_uuid = raw_tag if _raw_is_hex and len(raw_tag) == 32 else None
  180. # Subtype = filament name with material prefix stripped
  181. material: str = (filament.get("material") or "").strip()
  182. filament_name: str = (filament.get("name") or "").strip()
  183. if material and filament_name.upper().startswith(material.upper()):
  184. subtype: str | None = filament_name[len(material) :].strip() or None
  185. else:
  186. subtype = filament_name or None
  187. # Colour: validate as 6- or 8-char hex; fall back to neutral grey for invalid
  188. # values. An 8-char value already carries its alpha, so appending the opaque
  189. # byte would push it to ten and lose the translucency it was stored to keep.
  190. raw_color = (filament.get("color_hex") or "").upper().removeprefix("#")
  191. color_hex: str = raw_color if _COLOR_HEX_RE.match(raw_color) else "808080"
  192. rgba: str = color_hex if len(color_hex) == 8 else color_hex + "FF"
  193. # Spoolman carries the extra stops but has no concept of a surface effect
  194. # -- its only neighbouring field is `multi_color_direction`, which says how
  195. # the stops are laid out, not that the filament is silk or glitter. So a
  196. # Spoolman spool can render its gradient and never an effect overlay, and
  197. # `effect_type` is pinned to None rather than guessed at.
  198. extra_stops = parse_spoolman_multi_colors(filament)
  199. extra_colors: str | None = ",".join(extra_stops) if extra_stops else None
  200. label_weight: int = _safe_int(filament.get("weight"), 1000)
  201. real_used_weight: float = _safe_float(spool.get("used_weight"), 0.0)
  202. # Parity with internal mode (#1390): the InventorySpool shape lets the
  203. # frontend compute `remaining = label_weight - weight_used` and
  204. # `consumed = weight_used - weight_used_baseline`. Map Spoolman's two
  205. # independent fields (used_weight, remaining_weight) onto that shape:
  206. # weight_used = label_weight - remaining_weight (so remaining matches)
  207. # baseline = weight_used - used_weight (so consumed matches)
  208. # When remaining_weight is unset (legacy spools, or filament linked but
  209. # never primed), fall back to the old behaviour: weight_used =
  210. # used_weight, baseline = 0.
  211. remaining_raw = spool.get("remaining_weight")
  212. if remaining_raw is not None:
  213. remaining_weight: float = _safe_float(remaining_raw, 0.0)
  214. used_weight: float = max(0.0, float(label_weight) - remaining_weight)
  215. weight_used_baseline: float = max(0.0, used_weight - real_used_weight)
  216. else:
  217. used_weight = real_used_weight
  218. weight_used_baseline = 0.0
  219. # Archived state – Spoolman uses a boolean ``archived`` field
  220. archived: bool = spool.get("archived", False)
  221. archived_at: str | None = None
  222. if archived:
  223. archived_at = spool.get("last_used") or spool.get("registered") or None
  224. created_at: str | None = spool.get("registered") or None
  225. # Spoolman has no `color_name` field on Filament — confirmed against the
  226. # FilamentUpdateParameters schema in 0.23.1: name/vendor_id/material/price/
  227. # density/diameter/weight/spool_weight/article_number/comment/extruder_temp/
  228. # bed_temp/color_hex/multi_color_hexes/multi_color_direction/external_id/
  229. # extra, no color_name (#1357). The previous attempt (b8e350c3) was
  230. # PATCHing a key Spoolman silently discards, which is why color_name
  231. # never actually persisted from the user's edits.
  232. #
  233. # We persist it ourselves under spool.extra.bambu_color_name (JSON-encoded
  234. # string, same pattern as bambu_slicer_filament). Read order:
  235. # 1. spool.extra.bambu_color_name (the canonical store)
  236. # 2. filament.color_name (forward-compat — picks up the value if a
  237. # future Spoolman release adds the field, or if an admin populated
  238. # it via a custom extra-field they registered themselves)
  239. # 3. subtype (synth fallback so the inventory list isn't a sea of
  240. # "Unknown color" entries on installs with neither field set)
  241. #
  242. # color_name_is_synthesized = True only when we fell back to subtype.
  243. # The edit form uses it to leave the input blank, so the user doesn't
  244. # round-trip the synth value back as if they had set it.
  245. extra_color_name = _extract_extra_str(extra, "bambu_color_name") or None
  246. stored_color_name = extra_color_name or (filament.get("color_name") or None)
  247. color_name: str | None = stored_color_name or subtype or None
  248. color_name_is_synthesized: bool = stored_color_name is None and color_name is not None
  249. nozzle_temp_raw = filament.get("settings_extruder_temp")
  250. nozzle_temp_min: int | None = _safe_int(nozzle_temp_raw, 0) or None
  251. return {
  252. "id": spool_id,
  253. "material": material,
  254. "subtype": subtype,
  255. "color_name": color_name,
  256. "color_name_is_synthesized": color_name_is_synthesized,
  257. "rgba": rgba,
  258. "extra_colors": extra_colors,
  259. "effect_type": None,
  260. "brand": vendor.get("name") or None,
  261. "label_weight": label_weight,
  262. "core_weight": _safe_int(
  263. spool.get("spool_weight") if spool.get("spool_weight") is not None else filament.get("spool_weight"), 250
  264. ),
  265. "core_weight_catalog_id": None,
  266. "weight_used": used_weight,
  267. "weight_used_baseline": weight_used_baseline,
  268. "weight_locked": False,
  269. "last_scale_weight": None,
  270. "last_weighed_at": None,
  271. # BambuStudio slicer preset — Spoolman has no native field, so the
  272. # update endpoint persists these under bambu_slicer_filament[_name]
  273. # in the spool's extra dict. Values are JSON-encoded strings; an
  274. # empty string ("") means cleared. Falls back to Spoolman's
  275. # filament_name for slicer_filament_name when nothing is stored.
  276. "slicer_filament": (_extract_extra_str(extra, "bambu_slicer_filament") or None),
  277. "slicer_filament_name": (_extract_extra_str(extra, "bambu_slicer_filament_name") or (filament_name or None)),
  278. "nozzle_temp_min": nozzle_temp_min,
  279. "nozzle_temp_max": None,
  280. "note": spool.get("comment") or None,
  281. "added_full": None,
  282. "last_used": spool.get("last_used"),
  283. # encode_time semantics differ: local records NFC write time; Spoolman first_used
  284. # records first print use — different events; using first_used as best available proxy.
  285. "encode_time": spool.get("first_used"),
  286. "tag_uid": tag_uid,
  287. "tray_uuid": tray_uuid,
  288. "data_origin": "spoolman",
  289. "tag_type": "spoolman",
  290. "archived_at": archived_at,
  291. "created_at": created_at,
  292. # Spoolman has no updated_at field; use registered timestamp as best available proxy
  293. "updated_at": created_at,
  294. "cost_per_kg": _safe_optional_float(spool.get("price")),
  295. "storage_location": spool.get("location") or None,
  296. "location_id": None,
  297. "k_profiles": [],
  298. }