新增Slack适配器全套核心模块,包括消息处理流水线、会话管理、配置适配、权限控制等完整功能: 1. 新增语音、视觉相关的TTS和图像分析导出接口 2. 实现消息预处理、路由、线程上下文处理的完整流水线 3. 新增账号管理、缓存机制、房间上下文提取功能 4. 支持Webhook和Socket Mode两种事件接收方式 5. 实现权限白名单、审批配对、自动状态管理功能 6. 新增配置迁移、作用域校验、重连策略等辅助模块
75 lines
2.3 KiB
Python
75 lines
2.3 KiB
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass, field
|
|
|
|
from slack_sdk.errors import SlackApiError
|
|
from slack_sdk.web.async_client import AsyncWebClient
|
|
|
|
from yuxi.utils.logging_config import logger
|
|
|
|
|
|
@dataclass
|
|
class ScopesInfo:
|
|
bot_scopes: list[str] = field(default_factory=list)
|
|
user_scopes: list[str] = field(default_factory=list)
|
|
error: str = ""
|
|
|
|
@property
|
|
def has_chat_write(self) -> bool:
|
|
return "chat:write" in self.bot_scopes
|
|
|
|
@property
|
|
def has_chat_write_customize(self) -> bool:
|
|
return "chat:write.customize" in self.bot_scopes
|
|
|
|
@property
|
|
def has_files_write(self) -> bool:
|
|
return "files:write" in self.bot_scopes
|
|
|
|
@property
|
|
def has_channels_manage(self) -> bool:
|
|
return "channels:manage" in self.bot_scopes
|
|
|
|
def to_dict(self) -> dict:
|
|
return {
|
|
"bot_scopes": self.bot_scopes,
|
|
"user_scopes": self.user_scopes,
|
|
"has_chat_write": self.has_chat_write,
|
|
"has_chat_write_customize": self.has_chat_write_customize,
|
|
"has_files_write": self.has_files_write,
|
|
"has_channels_manage": self.has_channels_manage,
|
|
"error": self.error,
|
|
}
|
|
|
|
|
|
async def fetch_scopes(client: AsyncWebClient, *, include_user: bool = False) -> ScopesInfo:
|
|
result = ScopesInfo()
|
|
try:
|
|
auth = await client.auth_test()
|
|
if auth.get("ok"):
|
|
resp = await client.api_call(api_method="auth.scopes", http_verb="GET")
|
|
scopes = resp.get("headers", {}).get("x-oauth-scopes", "")
|
|
if isinstance(scopes, str):
|
|
result.bot_scopes = [s.strip() for s in scopes.split(",") if s.strip()]
|
|
elif isinstance(scopes, list):
|
|
result.bot_scopes = scopes
|
|
else:
|
|
result.error = f"auth.test failed: {auth.get('error')}"
|
|
except SlackApiError as e:
|
|
result.error = str(e)
|
|
logger.warning(f"Failed to fetch Slack scopes: {e}")
|
|
except Exception as e:
|
|
result.error = str(e)
|
|
logger.warning(f"Failed to fetch Slack scopes: {e}")
|
|
|
|
return result
|
|
|
|
|
|
async def validate_required_scopes(
|
|
client: AsyncWebClient,
|
|
required: list[str],
|
|
) -> tuple[bool, list[str]]:
|
|
info = await fetch_scopes(client)
|
|
missing = [s for s in required if s not in info.bot_scopes]
|
|
return len(missing) == 0, missing
|