zhenxun_bot/plugins/pid_search.py

109 lines
3.9 KiB
Python
Raw Normal View History

2021-06-30 19:50:55 +08:00
from nonebot import on_command
from nonebot.adapters.cqhttp import Bot, MessageEvent, Message, GroupMessageEvent
from nonebot.typing import T_State
from utils.utils import get_message_text, is_number
2021-07-30 21:21:51 +08:00
from utils.message_builder import image
2021-06-30 19:50:55 +08:00
import aiohttp
from services.log import logger
from asyncio.exceptions import TimeoutError
import asyncio
import aiofiles
from configs.path_config import IMAGE_PATH
try:
import ujson as json
except ModuleNotFoundError:
import json
2021-07-30 21:21:51 +08:00
__plugin_name__ = "p搜"
__plugin_usage__ = "用法: 通过pid在Pixiv上搜索图片\n格式p搜 [pid]\n\t示例p搜 79520120"
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
pid_search = on_command("p搜", aliases={"pixiv搜", "P搜"}, priority=5, block=True)
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
url = "https://api.fantasyzone.cc/tu/search.php"
2021-06-30 19:50:55 +08:00
@pid_search.args_parser
async def _(bot: Bot, event: MessageEvent, state: T_State):
pid = get_message_text(event.json())
if pid:
2021-07-30 21:21:51 +08:00
if pid in ["取消", "算了"]:
await pid_search.finish("已取消操作...")
2021-06-30 19:50:55 +08:00
if not is_number(pid):
2021-07-30 21:21:51 +08:00
await pid_search.reject("笨蛋,重新输入数!字!", at_sender=True)
state["pid"] = pid
2021-06-30 19:50:55 +08:00
@pid_search.handle()
async def _(bot: Bot, event: MessageEvent, state: T_State):
pid = get_message_text(event.json())
if pid:
2021-07-30 21:21:51 +08:00
state["pid"] = pid
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
@pid_search.got("pid", prompt="需要查询的图片PID是")
2021-06-30 19:50:55 +08:00
async def _(bot: Bot, event: MessageEvent, state: T_State):
2021-07-30 21:21:51 +08:00
pid = state["pid"]
2021-06-30 19:50:55 +08:00
params = {
2021-07-30 21:21:51 +08:00
"id": pid,
"p": 1,
2021-06-30 19:50:55 +08:00
}
async with aiohttp.ClientSession() as session:
for _ in range(10):
try:
async with session.get(url, timeout=2, params=params) as response:
data = json.loads(await response.text())
except TimeoutError:
pass
else:
2021-07-30 21:21:51 +08:00
if not data["width"] and not data["height"]:
await pid_search.finish(f"没有搜索到 PID{pid} 的图片", at_sender=True)
pid = data["id"]
title = data["title"]
author = data["userName"]
author_id = data["userId"]
img_url = data["url"]
2021-06-30 19:50:55 +08:00
for _ in range(5):
try:
await download_pic(img_url, event.user_id)
except TimeoutError:
pass
else:
break
else:
2021-07-30 21:21:51 +08:00
await pid_search.finish("图片下载失败了....", at_sender=True)
tmp = ""
2021-06-30 19:50:55 +08:00
if isinstance(event, GroupMessageEvent):
2021-07-30 21:21:51 +08:00
tmp = "\n【注】将在30后撤回......"
msg_id = await pid_search.send(
Message(
f"title{title}\n"
f"pid{pid}\n"
f"author{author}\n"
f"author_id{author_id}\n"
f'{image(f"pid_search_{event.user_id}.png", "temp")}'
f"{tmp}"
)
)
2021-06-30 19:50:55 +08:00
logger.info(
2021-07-30 21:21:51 +08:00
f"(USER {event.user_id}, GROUP {event.group_id if isinstance(event, GroupMessageEvent) else 'private'})"
f" 查询图片 PID{pid}"
)
2021-06-30 19:50:55 +08:00
if isinstance(event, GroupMessageEvent):
await asyncio.sleep(30)
2021-07-30 21:21:51 +08:00
await bot.delete_msg(
message_id=msg_id["message_id"], self_id=int(bot.self_id)
)
2021-06-30 19:50:55 +08:00
break
else:
2021-07-30 21:21:51 +08:00
await pid_search.finish("图片下载失败了....", at_sender=True)
2021-06-30 19:50:55 +08:00
async def download_pic(img_url: str, user_id: int):
async with aiohttp.ClientSession() as session:
async with session.get(img_url, timeout=2) as res:
2021-07-30 21:21:51 +08:00
async with aiofiles.open(
f"{IMAGE_PATH}/temp/pid_search_{user_id}.png", "wb"
) as f:
2021-06-30 19:50:55 +08:00
await f.write(await res.read())