该提交实现了支持企业微信、微信公众号、个人微信桥接三种模式的完整微信渠道适配器,包含以下核心模块: 1. 基础认证与配置相关:auth_adapter、config_reload、setup_contract等 2. 消息处理与格式转换:format、attachment_adapter、outbound_adapter等 3. 多模式客户端支持:wecom/mp子模块,包含加解密、消息收发能力 4. 辅助能力:限速器、防抖、会话绑定、事件映射、模板渲染等 5. 扩展能力:二维码登录、消息读取、特权用户、心跳监控等 实现了完整的微信生态对接能力,支持消息收发、事件处理、API调用限流、配置热重载等功能。
101 lines
3.5 KiB
Python
101 lines
3.5 KiB
Python
from __future__ import annotations
|
|
|
|
import hashlib
|
|
import time
|
|
from typing import Any
|
|
|
|
from yuxi.utils.logging_config import logger
|
|
|
|
SECRET_PREFIXES = ("corp_secret", "app_secret", "token", "bridge_url")
|
|
|
|
|
|
def _hash_credential(value: str) -> str:
|
|
return hashlib.sha256(value.encode()).hexdigest()[:16]
|
|
|
|
|
|
class WeChatSecretsAdapter:
|
|
def __init__(self):
|
|
self._watchlist: dict[str, str] = {}
|
|
self._subscribers: list[callable] = []
|
|
self._last_check: float = 0.0
|
|
self._check_interval: float = 5.0
|
|
|
|
def register_subscriber(self, callback: callable) -> None:
|
|
if callback not in self._subscribers:
|
|
self._subscribers.append(callback)
|
|
|
|
def _notify_subscribers(self, changed_keys: list[str]) -> None:
|
|
for cb in self._subscribers:
|
|
try:
|
|
cb(changed_keys)
|
|
except Exception as e:
|
|
logger.warning(f"[WeChat/Secrets] Subscriber error: {e}")
|
|
|
|
def build_watchlist(self, config: dict[str, Any]) -> dict[str, str]:
|
|
snap: dict[str, str] = {}
|
|
for key in SECRET_PREFIXES:
|
|
value = config.get(key)
|
|
if value:
|
|
snap[key] = _hash_credential(str(value))
|
|
accounts = config.get("accounts", {})
|
|
for account_id, acc_cfg in accounts.items():
|
|
for key in SECRET_PREFIXES:
|
|
value = acc_cfg.get(key)
|
|
if value:
|
|
snap[f"accounts.{account_id}.{key}"] = _hash_credential(str(value))
|
|
return snap
|
|
|
|
def detect_changes(self, config: dict[str, Any]) -> list[str]:
|
|
current = self.build_watchlist(config)
|
|
changed: list[str] = []
|
|
for key, digest in current.items():
|
|
if key in self._watchlist and self._watchlist[key] != digest:
|
|
changed.append(key)
|
|
self._watchlist = current
|
|
return changed
|
|
|
|
def should_check(self) -> bool:
|
|
now = time.monotonic()
|
|
if now - self._last_check >= self._check_interval:
|
|
self._last_check = now
|
|
return True
|
|
return False
|
|
|
|
async def monitor_and_reload(self, config: dict[str, Any], reload_fn: callable) -> None:
|
|
if not self.should_check():
|
|
return
|
|
changed = self.detect_changes(config)
|
|
if changed:
|
|
logger.info(f"[WeChat/Secrets] Credential changes detected: {changed}")
|
|
self._notify_subscribers(changed)
|
|
if reload_fn:
|
|
await reload_fn(changed)
|
|
|
|
def snapshot_secrets(self, config: dict[str, Any]) -> list[dict[str, Any]]:
|
|
items: list[dict[str, Any]] = []
|
|
for key in SECRET_PREFIXES:
|
|
value = config.get(key)
|
|
if value:
|
|
items.append(
|
|
{
|
|
"key": key,
|
|
"source": "root config",
|
|
"configured": True,
|
|
"digest_prefix": _hash_credential(str(value)),
|
|
}
|
|
)
|
|
accounts = config.get("accounts", {})
|
|
for account_id, acc_cfg in accounts.items():
|
|
for key in SECRET_PREFIXES:
|
|
value = acc_cfg.get(key)
|
|
if value:
|
|
items.append(
|
|
{
|
|
"key": key,
|
|
"source": f"accounts.{account_id}",
|
|
"configured": True,
|
|
"digest_prefix": _hash_credential(str(value)),
|
|
}
|
|
)
|
|
return items
|