mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-07 04:13:00 +08:00
* 🐛 插入新的Schedulable时应传入use_batch参数 * ✨ 适配ceobecanteen平台 Co-authored-by: phidiaLam <2957035701@qq.com> * ✨ ✨ 明日方舟公告与官网采用截图分享 (#480) * ✨ 明日方舟公告与官网采用截图分享 * 💄 auto fix by pre-commit hooks * 🐛 修复缺少的导入,优化逻辑 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Azide <rukuy@qq.com> * 🐛 优化截图图片效果 * 🐛 修复错误将转发内图片视作头图的问题 * 🍱 使用正式 Bison Logo * 💄 auto fix by pre-commit hooks * 🐛 请求小刻API时不在headers里添加过多字段 * 🐛 get_comb_id方法删除无用的targets参数 * 💡 get_comb_id方法更新注释 * 🔥 移除发送部分的更改 * ✨ 在命名中明确表示cond_func意图 * ♻️ 拆分get_comb_id功能 * ♻️ 调整缓存逻辑 * ✨ 使用uri在theme中调用platform截图 * ♻️ 重构截图逻辑 * ✨ 添加模糊匹配提示 * ✨ 适配新版Site * 💄 auto fix by pre-commit hooks * 🐛 去掉不必要的排序 * 🐛 修正不应出现的驼峰变量名 * ♻️ 按review意见修改 * ♻️ 调整截图函数逻辑 * 🔊 调低日志等级 * ✏️ 修复一些拼写和格式 --------- Co-authored-by: phidiaLam <2957035701@qq.com> Co-authored-by: 洛梧藤 <67498817+phidiaLam@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
21 lines
753 B
Python
21 lines
753 B
Python
from httpx import Response
|
|
from nonebot import logger
|
|
from nonebot.compat import type_validate_python
|
|
|
|
from .exception import CeobeResponseError
|
|
from .models import ResponseModel, CookieIdResponse
|
|
|
|
|
|
def process_response(response: Response, parse_model: type[ResponseModel]) -> ResponseModel:
|
|
response.raise_for_status()
|
|
logger.trace(f"小刻食堂请求结果: {response.json().get('message')} {parse_model=}")
|
|
|
|
try:
|
|
data = type_validate_python(parse_model, response.json())
|
|
except Exception as e:
|
|
raise CeobeResponseError(f"解析小刻食堂响应失败: {e}")
|
|
|
|
if not isinstance(data, CookieIdResponse) and data.code != 0:
|
|
raise CeobeResponseError(f"获取饼数据失败: {data.message}")
|
|
return data
|