mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
* ✨ feat(http_utils): 重构网络请求工具链,增强稳定性与易用性 🔧 HTTP工具优化: • 全局httpx.AsyncClient管理,提升连接复用效率 • AsyncHttpx类重构,支持临时客户端和配置覆盖 • 新增JSON请求方法(get_json/post_json),内置重试机制 • 兼容httpx>=0.28.0版本 🔄 重试机制升级: • Retry装饰器重构,提供simple/api/download预设 • 支持指数退避、条件重试和自定义失败处理 • 扩展异常覆盖范围,提升网络容错能力 🏗️ 架构改进: • 新增AllURIsFailedError统一异常处理 • 浏览器工具模块化,提升代码组织性 * 🚨 auto fix by pre-commit hooks * 🎨 代码格式化 * 🐛 测试修复 --------- Co-authored-by: webjoin111 <455457521@qq.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: HibiKier <45528451+HibiKier@users.noreply.github.com> Co-authored-by: HibiKier <775757368@qq.com>
95 lines
3.0 KiB
Python
95 lines
3.0 KiB
Python
from collections.abc import AsyncGenerator
|
|
from contextlib import asynccontextmanager
|
|
from pathlib import Path
|
|
from typing import Any, Literal
|
|
|
|
from nonebot_plugin_alconna import UniMessage
|
|
from nonebot_plugin_htmlrender import get_browser
|
|
from playwright.async_api import Page
|
|
|
|
from zhenxun.utils.message import MessageUtils
|
|
|
|
|
|
class BrowserIsNone(Exception):
|
|
pass
|
|
|
|
|
|
class AsyncPlaywright:
|
|
@classmethod
|
|
@asynccontextmanager
|
|
async def new_page(
|
|
cls, cookies: list[dict[str, Any]] | dict[str, Any] | None = None, **kwargs
|
|
) -> AsyncGenerator[Page, None]:
|
|
"""获取一个新页面
|
|
|
|
参数:
|
|
cookies: cookies
|
|
"""
|
|
browser = await get_browser()
|
|
ctx = await browser.new_context(**kwargs)
|
|
if cookies:
|
|
if isinstance(cookies, dict):
|
|
cookies = [cookies]
|
|
await ctx.add_cookies(cookies) # type: ignore
|
|
page = await ctx.new_page()
|
|
try:
|
|
yield page
|
|
finally:
|
|
await page.close()
|
|
await ctx.close()
|
|
|
|
@classmethod
|
|
async def screenshot(
|
|
cls,
|
|
url: str,
|
|
path: Path | str,
|
|
element: str | list[str],
|
|
*,
|
|
wait_time: int | None = None,
|
|
viewport_size: dict[str, int] | None = None,
|
|
wait_until: (
|
|
Literal["domcontentloaded", "load", "networkidle"] | None
|
|
) = "networkidle",
|
|
timeout: float | None = None,
|
|
type_: Literal["jpeg", "png"] | None = None,
|
|
user_agent: str | None = None,
|
|
cookies: list[dict[str, Any]] | dict[str, Any] | None = None,
|
|
**kwargs,
|
|
) -> UniMessage | None:
|
|
"""截图,该方法仅用于简单快捷截图,复杂截图请操作 page
|
|
|
|
参数:
|
|
url: 网址
|
|
path: 存储路径
|
|
element: 元素选择
|
|
wait_time: 等待截取超时时间
|
|
viewport_size: 窗口大小
|
|
wait_until: 等待类型
|
|
timeout: 超时限制
|
|
type_: 保存类型
|
|
user_agent: user_agent
|
|
cookies: cookies
|
|
"""
|
|
if viewport_size is None:
|
|
viewport_size = {"width": 2560, "height": 1080}
|
|
if isinstance(path, str):
|
|
path = Path(path)
|
|
wait_time = wait_time * 1000 if wait_time else None
|
|
element_list = [element] if isinstance(element, str) else element
|
|
async with cls.new_page(
|
|
cookies,
|
|
viewport=viewport_size,
|
|
user_agent=user_agent,
|
|
**kwargs,
|
|
) as page:
|
|
await page.goto(url, timeout=timeout, wait_until=wait_until)
|
|
card = page
|
|
for e in element_list:
|
|
if not card:
|
|
return None
|
|
card = await card.wait_for_selector(e, timeout=wait_time)
|
|
if card:
|
|
await card.screenshot(path=path, timeout=timeout, type=type_)
|
|
return MessageUtils.build_message(path)
|
|
return None
|