3
0
Telegram_PaimonBot/plugins/process.py

281 lines
11 KiB
Python
Raw Normal View History

2022-01-26 16:55:02 +00:00
import json
from os import sep
from os.path import exists
from pyrogram import Client, emoji
from pyrogram.types import Message, InlineQuery, CallbackQuery
from pyrogram import filters as Filters
2022-01-26 16:55:02 +00:00
2022-01-27 16:51:01 +00:00
from ci import me
from plugins.enemies import enemies_msg
2022-01-26 16:55:02 +00:00
from plugins.mys2 import mys2_msg, mys2_qun_msg
2022-01-28 09:58:47 +00:00
from plugins.mihoyo import mihoyo_msg, mihoyo_qun_msg
from plugins.start import welcome_command, ping_command, help_command, leave_command, help_callback
from plugins.almanac import almanac_msg
from plugins.challenge import tf_msg, wq_msg, zb_msg
from plugins.character import character_msg, mz_msg
2022-01-26 10:29:35 +00:00
from plugins.event import event_msg
from plugins.weapons import weapon_msg
from plugins.fortunate import fortunate_msg, set_fortunate_img
from plugins.foods import foods_msg
2022-01-26 12:53:42 +00:00
from plugins.artifacts import artifacts_msg
from plugins.artifact_rate import artifact_rate_msg
from plugins.query_resource_points import inquire_resource_points, inquire_resource_list
from plugins.mys import mys_msg, promote_command
2022-01-26 16:55:02 +00:00
from defs.inline_query_result_cached_media import InlineQueryResultCachedDocument
from defs.log import log
@Client.on_message(Filters.text & Filters.private)
async def process_private_msg(client: Client, message: Message):
msg_list = message.text.split(' ')
# 欢迎消息
if msg_list[0] == '/start':
await welcome_command(client, message)
# 帮助消息
if msg_list[0] == '/help':
await help_command(client, message)
# 延迟测试
if msg_list[0] == '/ping':
await ping_command(client, message)
if msg_list[0] == '/leave':
await leave_command(client, message)
# 黄历
if '黄历' in message.text:
await almanac_msg(client, message)
await log(client, message, '查询原神黄历')
2022-01-26 10:29:35 +00:00
if '活动列表' in message.text:
await event_msg(client, message)
await log(client, message, '查询活动列表')
# 授权管理员
# if msg_list[0] == '/promote':
# await promote_command(client, message)
# 天赋
if '天赋' in message.text:
await tf_msg(client, message)
await log(client, message, '查询天赋副本')
# # 武器查询
2022-01-26 11:21:50 +00:00
if '武器资料' in message.text or '武器查询' in message.text:
await weapon_msg(client, message)
await log(client, message, '查询武器资料')
return
# 副本武器
if '武器' in message.text:
await wq_msg(client, message)
await log(client, message, '查询副本武器')
# 周本
if message.text == '周本':
await zb_msg(client, message)
await log(client, message, '查询周本')
# # 角色查询
2022-01-26 10:29:35 +00:00
if '角色资料' in message.text or '角色简介' in message.text or '角色查询' in message.text:
await character_msg(client, message)
await log(client, message, '查询角色资料')
# # 原魔查询
if '原魔查询' in message.text:
await enemies_msg(client, message)
await log(client, message, '查询原魔资料')
# # 食物查询
if '食物查询' in message.text:
await foods_msg(client, message)
await log(client, message, '查询食物资料')
# # 命座查询
2022-01-26 10:29:35 +00:00
if '命座' in message.text:
await mz_msg(client, message)
await log(client, message, '查询角色命座')
# 设置运势
if '设置运势' in message.text:
await set_fortunate_img(client, message)
await log(client, message, '设置运势角色')
return
# 运势查询
if '运势' in message.text:
await fortunate_msg(client, message)
await log(client, message, '查询今日运势')
2022-01-26 12:53:42 +00:00
# 圣遗物查询
if '圣遗物详情' in message.text:
await artifacts_msg(client, message)
await log(client, message, '查询圣遗物详情')
# 圣遗物评分
if '圣遗物评分' in message.text:
await message.reply("图呢?\n*请将命令与截图一起发送", quote=True)
# 资源查询
if '哪里有' in message.text:
await inquire_resource_points(client, message)
await log(client, message, '查询地图资源')
# 资源列表
if '资源列表' in message.text:
await inquire_resource_list(client, message)
await log(client, message, '查询资源列表')
2022-01-26 16:55:02 +00:00
if '米游社' in message.text:
await mys2_msg(client, message)
2022-01-28 09:58:47 +00:00
if 'mihoyo' in message.text:
await mihoyo_msg(client, message)
# 账号信息cookie 过期过快 不推荐启用)
# if '账号信息' in message.text or '用户信息' in message.text:
# await mys_msg(client, message)
@Client.on_message(Filters.text & Filters.group)
async def process_group_msg(client: Client, message: Message):
text = message.text
msg_list = text.split(' ')
# 帮助消息
2022-01-27 16:51:01 +00:00
if msg_list[0] == '/help' or msg_list[0] == f'/help@{me["result"]["username"]}':
await help_command(client, message)
# # 武器查询
2022-01-26 11:21:50 +00:00
if text.startswith('武器查询') or text.startswith('武器资料'):
await weapon_msg(client, message)
await log(client, message, '查询武器资料')
return
# 副本武器
if text[-2:] == '武器':
await wq_msg(client, message)
await log(client, message, '查询副本武器')
# 黄历
if message.text == '原神黄历':
await almanac_msg(client, message)
await log(client, message, '查询原神黄历')
2022-01-26 10:29:35 +00:00
if message.text == '活动列表':
await event_msg(client, message)
await log(client, message, '查询活动列表')
# 天赋
if text[-2:] == '天赋':
await tf_msg(client, message)
await log(client, message, '查询天赋副本')
# 周本
if message.text == '周本':
await zb_msg(client, message)
await log(client, message, '查询周本')
# # 角色查询
2022-01-26 10:29:35 +00:00
if text.startswith('角色资料') or text.startswith('角色简介') or text.startswith('角色查询'):
await character_msg(client, message)
await log(client, message, '查询角色资料')
# # 原魔查询
if text.startswith('原魔查询'):
await enemies_msg(client, message)
await log(client, message, '查询原魔资料')
# # 食物查询
if text.startswith('食物查询'):
await foods_msg(client, message)
await log(client, message, '查询食物资料')
# # 命座查询
2022-01-26 10:29:35 +00:00
if text.startswith('命座'):
await mz_msg(client, message)
await log(client, message, '查询角色命座')
# 运势查询
if text.startswith('运势') or text.startswith('今日运势'):
await fortunate_msg(client, message)
await log(client, message, '查询今日运势')
# 设置运势
if text.startswith('设置运势'):
await set_fortunate_img(client, message)
await log(client, message, '设置运势角色')
2022-01-26 12:53:42 +00:00
# 圣遗物查询
if text.startswith('圣遗物详情'):
await artifacts_msg(client, message)
await log(client, message, '查询圣遗物详情')
# 圣遗物评分
if text.startswith('圣遗物评分'):
await message.reply("图呢?\n*请将命令与截图一起发送")
# 资源查询
if text.startswith('哪里有') or text.endswith('哪里有'):
await inquire_resource_points(client, message)
await log(client, message, '查询地图资源')
# 资源列表(消息太长 过滤)
# if text.startswith('资源列表'):
# await inquire_resource_list(client, message)
# await log(client, message, '查询资源列表')
2022-01-26 16:55:02 +00:00
# 米游社功能
if text.startswith('米游社'):
await mys2_qun_msg(client, message)
2022-01-28 09:58:47 +00:00
if text.startswith('mihoyo'):
await mihoyo_qun_msg(client, message)
@Client.on_message(Filters.photo)
async def process_photo(client: Client, message: Message):
text = message.caption if message.caption else ""
message.text = text
if text.startswith('圣遗物评分'):
await artifact_rate_msg(client, message)
await log(client, message, '圣遗物评分')
if text.startswith('米游社'):
if message.chat.type == "supergroup":
await mys2_qun_msg(client, message)
2022-01-28 09:58:47 +00:00
if text.startswith('mihoyo'):
if message.chat.type == "supergroup":
await mihoyo_qun_msg(client, message)
@Client.on_message(Filters.document & Filters.group & ~Filters.edited)
async def process_document(client: Client, message: Message):
text = message.caption if message.caption else ""
message.text = text
if text.startswith('米游社'):
print(message.document.mime_type)
if message.document.mime_type in ["image/jpeg"]:
await mys2_qun_msg(client, message)
2022-01-28 09:58:47 +00:00
if text.startswith('mihoyo'):
print(message.document.mime_type)
if message.document.mime_type in ["image/jpeg"]:
await mihoyo_qun_msg(client, message)
2022-01-27 16:07:04 +00:00
@Client.on_message(Filters.voice & Filters.private & ~Filters.edited)
2022-01-26 16:55:02 +00:00
async def process_audio(client: Client, message: Message):
2022-01-27 16:07:04 +00:00
await message.reply(f"{message.voice.file_id}", parse_mode='html')
2022-01-26 16:55:02 +00:00
@Client.on_message(Filters.new_chat_members)
async def send_self_intro(client: Client, message: Message):
# 发送欢迎消息
if message.new_chat_members[0].is_self:
await message.reply('感谢邀请小派蒙到本群!\n请使用 /help 查看咱已经学会的功能。', quote=True)
await log(client, message, '邀请入群')
2022-01-26 16:55:02 +00:00
@Client.on_callback_query(Filters.regex("help_"))
async def callback_process(client: Client, query: CallbackQuery):
await help_callback(client, query)
2022-01-27 16:07:04 +00:00
voice_data = None
if exists(f"assets{sep}voice{sep}voice.json"):
with open(f"assets{sep}voice{sep}voice.json", "r", encoding='utf-8') as f:
voice_data = json.load(f)
2022-01-26 16:55:02 +00:00
@Client.on_inline_query()
async def inline_process(client: Client, query: InlineQuery):
data = []
2022-01-27 16:07:04 +00:00
text = query.query.split()
2022-01-26 16:55:02 +00:00
nums = 0
2022-01-27 16:07:04 +00:00
if not voice_data:
2022-01-26 16:55:02 +00:00
return
2022-01-27 16:07:04 +00:00
data_ = voice_data
2022-01-26 16:55:02 +00:00
for index, value in enumerate(data_):
2022-01-27 16:07:04 +00:00
if len(text) == 0:
data.append(InlineQueryResultCachedDocument(value, file_id=data_[value], caption=value))
2022-01-26 16:55:02 +00:00
nums += 1
2022-01-27 16:07:04 +00:00
else:
skip = False
for i in text:
if i not in value:
skip = True
if not skip:
data.append(InlineQueryResultCachedDocument(value, file_id=data_[value], caption=value))
nums += 1
2022-01-26 16:55:02 +00:00
if nums >= 25:
break
if nums == 0:
return await query.answer(
results=[],
2022-01-27 16:36:58 +00:00
switch_pm_text=f'{emoji.CROSS_MARK} 字符串 "{" ".join(text)}" 没有搜索到任何结果',
2022-01-26 16:55:02 +00:00
switch_pm_parameter="start",
)
await query.answer(data)