platform_config.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. """
  2. Chatto Platform Config
  3. """
  4. import os
  5. import re
  6. # Put the vendored dependencies for THIS platform on sys.path before importing
  7. # anything from chattolib. Imported relatively as part of the plugin package and
  8. # absolutely when this module is loaded standalone (e.g. by the tests).
  9. try:
  10. from .vendor_path import setup_vendor_path
  11. except ImportError: # pragma: no cover - depends on how the module is loaded
  12. from vendor_path import setup_vendor_path
  13. setup_vendor_path()
  14. import logging
  15. from typing import Any, ClassVar, Generic, TypeVar
  16. import utils
  17. # Absolute import — the vendor dir is on sys.path (see above) and chattolib's
  18. # own modules import each other absolutely ("from chattolib.x import y").
  19. # Importing it relatively as well would load a *second* copy of every module
  20. # under a different name, so isinstance() checks across the two would fail.
  21. from chattolib import ChattoClient
  22. from gateway.config import PlatformConfig
  23. logger = logging.getLogger(__name__)
  24. # --------------------------------------------------------------------------- #
  25. # Constants
  26. # --------------------------------------------------------------------------- #
  27. class ChattoConstants:
  28. """
  29. Chatto Platform Constants
  30. """
  31. def __init__(self):
  32. pass
  33. PLATFORM_NAME: str = "chatto-platform"
  34. PLATFORM_LABEL: str = "Chatto"
  35. INSTALL_HINT = "Requires a Chatto server. See https://docs.chatto.run"
  36. # NOTE: env var names live on the ConfigFields below (ConfigField.env_name),
  37. # so there is exactly one source of truth for them.
  38. MAX_MESSAGE_LENGTH = 10000
  39. # Outgoing text is split below this rather than at MAX_MESSAGE_LENGTH, so
  40. # a full chunk plus the gateway's multi-chunk "(1/2)" label stays under
  41. # the server limit.
  42. SPLIT_THRESHOLD = 9900
  43. SEEN_CAP = 500
  44. # Members fetched per roster delivery (the context block handed to the
  45. # agent alongside every channel turn). The roster rides on each message,
  46. # so the cap keeps the prompt block small; larger rooms get an "and N
  47. # more" note instead.
  48. ROSTER_MEMBER_LIMIT = 20
  49. # WebSocket reconnect backoff (the realtime transport itself lives in
  50. # chattolib.realtime, which owns protocol-level constants).
  51. WS_RECONNECT_INITIAL_BACKOFF = 1.0
  52. WS_RECONNECT_MAX_BACKOFF = 30.0
  53. # A candidate @-handle, not a confirmed one — every match is resolved
  54. # against the member directory before it counts. Pattern mirrors the Chatto
  55. # web frontend's mention extraction: dots are internal separators only, so
  56. # a sentence-ending "frag @bob." yields the handle "bob", and a leading
  57. # hyphen ("per @-mention") yields nothing to look up. The lookbehind keeps
  58. # the domain half of an e-mail address from becoming a candidate.
  59. MENTION_RE = re.compile(
  60. r"(?<![\w.])@([A-Za-z0-9_](?:[A-Za-z0-9_-]|\.(?=[A-Za-z0-9_-]))*)"
  61. )
  62. # Handles that address the room rather than a person — the bot is one of
  63. # the addressees, so these do not mean "this is for someone else".
  64. # Chatto defines exactly these two virtual handles (FDR-006); anything
  65. # else must resolve to a real user in the directory.
  66. BROADCAST_MENTIONS = frozenset({"all", "here"})
  67. # Presence is a TTL the server lets lapse — chattolib refuses to set OFFLINE
  68. # at all ("stop refreshing to go offline"), so staying online means
  69. # re-announcing ONLINE on this interval for as long as we are connected.
  70. PRESENCE_REFRESH_INTERVAL = 60.0
  71. # HTTP timeout used for outbound URL fetches
  72. HTTP_TIMEOUT = 30
  73. # Emoji shortcode mapping (Chatto uses shortcode names, not unicode emoji)
  74. EMOJI_TO_SHORTCODE: ClassVar[dict[str, str]] = {
  75. "👍": "thumbsup",
  76. "👎": "thumbsdown",
  77. "❤️": "heart",
  78. "❤": "heart",
  79. "✅": "white_check_mark",
  80. "❌": "x",
  81. "🚫": "no_entry_sign",
  82. "⛔": "no_entry",
  83. "👀": "eyes",
  84. "🫥": "dotted_line_face",
  85. "🎉": "tada",
  86. "😂": "joy",
  87. "🚀": "rocket",
  88. "🔥": "fire",
  89. "💯": "100",
  90. "🤔": "thinking_face",
  91. "👏": "clap",
  92. "🙏": "pray",
  93. "😅": "sweat_smile",
  94. "😴": "sleeping",
  95. "⏳": "hourglass",
  96. "💭": "thought_balloon",
  97. "👓": "glasses",
  98. "👁️‍🗨️": "eye_in_speech_bubble",
  99. "💬": "speech_balloon",
  100. "🗨️": "left_speech_bubble",
  101. "🗯️": "right_anger_bubble",
  102. "🦾": "mechanical_arm",
  103. "🦿": "mechanical_leg",
  104. }
  105. # Chunk size for asset uploads (256 KB)
  106. UPLOAD_CHUNK_SIZE = 256 * 1024
  107. def _get_env_or_extra_str_opt(
  108. env_var: str, extra_val: str | bool | None, default: str | None = None
  109. ) -> str | None:
  110. """Get a value from environment variable or extra config."""
  111. env_value = os.getenv(env_var)
  112. if env_value is not None:
  113. return env_value.strip()
  114. if extra_val is not None:
  115. if isinstance(extra_val, str):
  116. return extra_val.strip()
  117. elif isinstance(extra_val, bool):
  118. return str(extra_val)
  119. else:
  120. logger.error(
  121. "extra_val: %s is supposed to be str, but %s was found.",
  122. extra_val,
  123. str(type(extra_val)),
  124. )
  125. if default is not None:
  126. logger.debug("Chatto: Defaulting to '%s'", default)
  127. return default.strip()
  128. return None
  129. def _get_env_or_extra_str(
  130. env_var: str, extra_val: str | bool | None, default: str | None = None
  131. ) -> str:
  132. """Get a value from environment variable or extra config."""
  133. my_string = _get_env_or_extra_str_opt(env_var, extra_val, default)
  134. if my_string:
  135. return my_string
  136. return ""
  137. def _get_env_or_extra_truthy(
  138. env_var: str, extra_val: str | bool | None, default: bool = False
  139. ) -> bool:
  140. """Get a boolean value from environment variable or extra config."""
  141. return utils.is_truthy_value(
  142. _get_env_or_extra_str(env_var, extra_val, str(default)), default
  143. )
  144. def _split_str_to_list(mystring: str) -> list[str]:
  145. """Split a comma-separated string, trimming whitespace and dropping empties."""
  146. return [part.strip() for part in mystring.split(",") if part.strip()]
  147. def _get_env_or_extra_list(env_var: str, extra_val: list[str] | None) -> list[str]:
  148. """Get a list of values from environment variable or extra config."""
  149. env_value = os.getenv(env_var)
  150. if env_value is not None:
  151. return _split_str_to_list(env_value)
  152. if extra_val is not None:
  153. if isinstance(extra_val, list):
  154. return [str(c).strip() for c in extra_val if str(c).strip()]
  155. if isinstance(extra_val, str):
  156. return _split_str_to_list(extra_val)
  157. return []
  158. def _get_env_or_extra_int(env_var: str, extra_val: Any, default: int) -> int:
  159. """Get an integer value from environment variable or extra config.
  160. Unparseable values fall back to the default with a warning rather than
  161. raising — a typo in an env var must not keep the plugin from starting.
  162. """
  163. raw = os.getenv(env_var)
  164. if raw is None or not raw.strip():
  165. raw = extra_val
  166. if isinstance(raw, bool): # a YAML true/false is not a number
  167. raw = None
  168. elif isinstance(raw, (int, float)):
  169. return int(raw)
  170. elif isinstance(raw, str) and raw.strip():
  171. try:
  172. return int(raw.strip())
  173. except ValueError:
  174. logger.warning(
  175. "Chatto: %s=%r is not an integer, using default %d",
  176. env_var,
  177. raw,
  178. default,
  179. )
  180. return default
  181. T = TypeVar("T")
  182. class ConfigValue(Generic[T]):
  183. """The resolved value of a single config field, bound to one configuration
  184. instance.
  185. Access the payload via ``.value``. ``__bool__``/``__eq__`` delegate to it,
  186. so a forgotten ``.value`` (``if config.allow_all_users:``) still evaluates
  187. the actual setting instead of the always-truthy wrapper object.
  188. """
  189. __slots__ = ("env_name", "field_name", "value")
  190. def __init__(self, value: T, field_name: str, env_name: str) -> None:
  191. self.value = value
  192. self.field_name = field_name
  193. self.env_name = env_name
  194. def __bool__(self) -> bool:
  195. return bool(self.value)
  196. def __eq__(self, other: object) -> bool:
  197. if isinstance(other, ConfigValue):
  198. return self.value == other.value
  199. return self.value == other
  200. def __hash__(self) -> int:
  201. return hash(self.value)
  202. def __contains__(self, item: Any) -> bool:
  203. return item in self.value # type: ignore[operator]
  204. def __iter__(self):
  205. return iter(self.value) # type: ignore[call-overload]
  206. def __str__(self) -> str:
  207. return str(self.value)
  208. def __repr__(self) -> str:
  209. return f"{self.field_name}={self.value!r}"
  210. class ConfigField(Generic[T]):
  211. """Declarative descriptor for one config field.
  212. Declares *how* a field is read (kind, env var name, default); the resolved
  213. payload lives per configuration instance in ``instance._values``, never on
  214. the descriptor itself. Reading a field on the class (rather than on an
  215. instance) yields the descriptor, so ``ChattoConfiguration.token.env_name``
  216. keeps working for the registration hooks.
  217. """
  218. field_name: str = ""
  219. env_name: str = ""
  220. def __init__(
  221. self,
  222. kind: str,
  223. *,
  224. default: Any = None,
  225. config_key: str | None = None,
  226. doc: str = "",
  227. ) -> None:
  228. # kind: "str" | "str_opt" | "bool" | "list"
  229. self.kind = kind
  230. self.default = default
  231. # config_key: the name used in config.yaml's "extra" block and (upper-cased,
  232. # CHATTO_-prefixed) as the env var, where it differs from the attribute name.
  233. self._config_key = config_key
  234. self.__doc__ = doc
  235. def __set_name__(self, owner: Any, name: str) -> None:
  236. self.field_name = str(name).lower().replace("chatto_", "", 1)
  237. self.config_key = self._config_key or self.field_name
  238. self.env_name = f"CHATTO_{self.config_key.upper()}"
  239. def __get__(self, instance: Any, owner: Any = None) -> "ConfigValue[T]":
  240. if instance is None:
  241. return self # type: ignore[return-value]
  242. return instance._values[self.field_name]
  243. def __set__(self, instance: Any, value: Any) -> None:
  244. raise AttributeError(
  245. f"Chatto: config field '{self.field_name}' is read-only; "
  246. f"set '{self.field_name}.value' if you really need to override it."
  247. )
  248. def resolve(self, extra: dict[str, Any]) -> ConfigValue:
  249. """Read this field from the environment, then from ``extra``, then the default."""
  250. raw = extra.get(self.config_key)
  251. if self.kind == "list":
  252. value: Any = _get_env_or_extra_list(self.env_name, raw)
  253. elif self.kind == "bool":
  254. value = _get_env_or_extra_truthy(self.env_name, raw, bool(self.default))
  255. elif self.kind == "int":
  256. value = _get_env_or_extra_int(self.env_name, raw, int(self.default))
  257. elif self.kind == "str_opt":
  258. value = _get_env_or_extra_str_opt(self.env_name, raw, self.default)
  259. else:
  260. value = _get_env_or_extra_str(self.env_name, raw, self.default)
  261. return ConfigValue(value, self.field_name, self.env_name)
  262. class ChattoConfiguration:
  263. """Chatto platform configuration.
  264. Every field is resolved once per instance, in this order:
  265. environment variable → ``PlatformConfig.extra`` → declared default.
  266. """
  267. base_url = ConfigField("str", default=ChattoClient.DEFAULT_BASE_URL)
  268. token = ConfigField("str_opt")
  269. login = ConfigField("str")
  270. password = ConfigField("str")
  271. home_channel = ConfigField("str")
  272. allowed_users = ConfigField("list")
  273. # Participation in multi-person rooms is opt-in: require_mention_rooms
  274. # lists rooms where the bot answers only when addressed
  275. # (@name/@all/@here), optional_mention_rooms lists rooms where it answers
  276. # everything. A room in neither list stays silent — read-only, never
  277. # seeded into context or answered. Chatto has no group rooms like Signal:
  278. # every non-DM surface is a channel-kind room, so these two lists are the
  279. # only inbound gate; DMs always answer.
  280. require_mention_rooms = ConfigField("list")
  281. optional_mention_rooms = ConfigField("list")
  282. # Auto-thread: by default, Chatto creates a thread for replies to room
  283. # messages (not DMs, not already in a thread). This keeps conversations
  284. # organized in the room. Can be disabled via extra.auto_thread=false.
  285. auto_thread = ConfigField("bool", default=True)
  286. allow_all_users = ConfigField("bool", default=False)
  287. reactions = ConfigField("bool", default=True)
  288. # Inbound edits: a message_edited event re-runs the admission gates against
  289. # the new body. A message currently being processed is cancelled and
  290. # re-dispatched with the corrected text; a message that never passed the
  291. # gates (e.g. a forgotten @mention) gets a fresh turn; an already-answered
  292. # message stays answered.
  293. edit_dispatch = ConfigField("bool", default=True)
  294. # How long after posting an edit may still land, in seconds — edits to
  295. # hours-old messages must not resurrect old conversations. Parsed by
  296. # ConfigField's "int" kind; unparseable input falls back to the default.
  297. edit_window = ConfigField("int", default=300)
  298. def __init__(self, pconfig: PlatformConfig):
  299. """Resolve every declared ConfigField against env vars and
  300. ``PlatformConfig.extra`` (which Hermes pre-populates from config.yaml).
  301. """
  302. extra: dict[str, Any] = getattr(pconfig, "extra", None) or {}
  303. self._values: dict[str, ConfigValue] = {
  304. field.field_name: field.resolve(extra) for field in self.fields()
  305. }
  306. logger.debug("ChattoConfiguration: %s", self)
  307. @classmethod
  308. def fields(cls) -> list[ConfigField]:
  309. """All declared config fields, in declaration order."""
  310. return [v for v in vars(cls).values() if isinstance(v, ConfigField)]
  311. def __str__(self) -> str:
  312. redacted = {"token", "password"}
  313. parts = [
  314. f"{name}={'***' if name in redacted and cv.value else cv.value!r}"
  315. for name, cv in self._values.items()
  316. ]
  317. return "ChattoConfiguration(" + ", ".join(parts) + ")"