mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
🔧 HTTP工具优化: • 全局httpx.AsyncClient管理,提升连接复用效率 • AsyncHttpx类重构,支持临时客户端和配置覆盖 • 新增JSON请求方法(get_json/post_json),内置重试机制 • 增强文件下载,支持多镜像回退和流式进度条 🔄 重试机制升级: • Retry装饰器重构,提供simple/api/download预设 • 支持指数退避、条件重试和自定义失败处理 • 扩展异常覆盖范围,提升网络容错能力 🏗️ 架构改进: • 新增AllURIsFailedError统一异常处理 • 浏览器工具模块化,提升代码组织性
87 lines
1.4 KiB
Python
87 lines
1.4 KiB
Python
class HookPriorityException(BaseException):
|
|
"""
|
|
钩子优先级异常
|
|
"""
|
|
|
|
def __init__(self, info: str = "") -> None:
|
|
self.info = info
|
|
|
|
def __str__(self) -> str:
|
|
return self.info
|
|
|
|
|
|
class NotFoundError(Exception):
|
|
"""
|
|
未发现
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class GroupInfoNotFound(Exception):
|
|
"""
|
|
群组未找到
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class EmptyError(Exception):
|
|
"""
|
|
空错误
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class UserAndGroupIsNone(Exception):
|
|
"""
|
|
用户和群组为空
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class InsufficientGold(Exception):
|
|
"""
|
|
金币不足
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class NotFindSuperuser(Exception):
|
|
"""
|
|
未找到超级用户
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class GoodsNotFound(Exception):
|
|
"""
|
|
或找到道具
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class AllURIsFailedError(Exception):
|
|
"""
|
|
当所有备用URL都尝试失败后抛出此异常
|
|
"""
|
|
|
|
def __init__(self, urls: list[str], exceptions: list[Exception]):
|
|
self.urls = urls
|
|
self.exceptions = exceptions
|
|
super().__init__(
|
|
f"All {len(urls)} URIs failed. Last exception: {exceptions[-1]}"
|
|
)
|
|
|
|
def __str__(self) -> str:
|
|
exc_info = "\n".join(
|
|
f" - {url}: {exc.__class__.__name__}({exc})"
|
|
for url, exc in zip(self.urls, self.exceptions)
|
|
)
|
|
return f"All {len(self.urls)} URIs failed:\n{exc_info}"
|