2021-05-20 19:21:05 +08:00
|
|
|
|
from nonebot import on_command
|
|
|
|
|
|
from nonebot.typing import T_State
|
2021-07-30 21:21:51 +08:00
|
|
|
|
from nonebot.adapters.cqhttp import Bot, MessageEvent, GroupMessageEvent
|
2021-05-20 19:21:05 +08:00
|
|
|
|
from services.log import logger
|
2021-09-05 02:21:38 +08:00
|
|
|
|
from asyncio.exceptions import TimeoutError
|
2021-07-30 21:21:51 +08:00
|
|
|
|
from utils.message_builder import image
|
2021-09-05 02:21:38 +08:00
|
|
|
|
from configs.path_config import IMAGE_PATH
|
|
|
|
|
|
import aiohttp
|
|
|
|
|
|
import aiofiles
|
|
|
|
|
|
import re
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
__plugin_name__ = "coser"
|
2021-06-15 10:57:08 +08:00
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
__plugin_usage__ = "用法:发送‘coser’"
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
2021-07-30 21:21:51 +08:00
|
|
|
|
coser = on_command(
|
|
|
|
|
|
"cos", aliases={"coser", "括丝", "COS", "Cos", "cOS", "coS"}, priority=5, block=True
|
|
|
|
|
|
)
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
2021-09-09 10:47:26 +08:00
|
|
|
|
url = "http://api520.ltd/api/cosplay.php"
|
2021-05-20 19:21:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@coser.handle()
|
2021-07-30 21:21:51 +08:00
|
|
|
|
async def _(bot: Bot, event: MessageEvent, state: T_State):
|
2021-09-05 02:21:38 +08:00
|
|
|
|
async with aiohttp.ClientSession() as session:
|
|
|
|
|
|
try:
|
|
|
|
|
|
for _ in range(3):
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with session.get(url, timeout=2) as response:
|
2021-09-09 10:47:26 +08:00
|
|
|
|
_url = await response.text()
|
|
|
|
|
|
async with session.get(_url, timeout=5, verify_ssl=False) as res:
|
|
|
|
|
|
if res.status == 200:
|
2021-09-05 02:21:38 +08:00
|
|
|
|
async with aiofiles.open(f'{IMAGE_PATH}/temp/{event.user_id}_coser.jpg', 'wb') as f:
|
|
|
|
|
|
await f.write(await res.read())
|
2021-09-09 10:47:26 +08:00
|
|
|
|
logger.info(
|
|
|
|
|
|
f"(USER {event.user_id}, "
|
|
|
|
|
|
f"GROUP {event.group_id if isinstance(event, GroupMessageEvent) else 'private'})"
|
|
|
|
|
|
f" 发送COSER"
|
|
|
|
|
|
)
|
|
|
|
|
|
await coser.send(image(f'{event.user_id}_coser.jpg', 'temp'))
|
|
|
|
|
|
break
|
2021-09-05 02:21:38 +08:00
|
|
|
|
except TimeoutError:
|
|
|
|
|
|
pass
|
2021-09-09 10:47:26 +08:00
|
|
|
|
else:
|
|
|
|
|
|
await coser.send('你cos给我看!')
|
2021-09-05 02:21:38 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
await coser.send('发生了预料之外的错误..请稍后再试或联系管理员修复...')
|
|
|
|
|
|
logger.error(f'coser 发送了未知错误 {type(e)}:{e}')
|
|
|
|
|
|
|