PagerMaid_Plugins_Pyro/vip/main.py

150 lines
5.2 KiB
Python
Raw Normal View History

2022-06-14 02:57:59 +00:00
from pyrogram.enums import ParseMode
from pagermaid.listener import listener
2022-09-01 08:28:48 +00:00
from pagermaid.enums import Client, Message
2022-06-14 02:57:59 +00:00
2023-07-01 12:18:58 +00:00
@listener(command="duckduckgo", description="Duckduckgo 搜索", parameters="[query]")
2022-09-01 08:28:48 +00:00
async def duckduckgo(client: Client, message: Message):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入查询内容")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/duckduckgo {text}")
await conv.mark_as_read()
2022-06-14 02:57:59 +00:00
await message.edit(answer.text.html, parse_mode=ParseMode.HTML)
2023-07-01 12:18:58 +00:00
@listener(command="caiyun", description="彩云翻译", parameters="[query]")
2022-09-01 08:28:48 +00:00
async def caiyun_translate(client: Client, message: Message):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入查询内容")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/translate {text}")
await conv.mark_as_read()
2022-06-14 02:57:59 +00:00
await message.edit(answer.text)
2023-07-01 12:18:58 +00:00
@listener(command="weather", description="使用彩云天气 api 查询国内实时天气。", parameters="[位置]")
2022-09-01 08:28:48 +00:00
async def weather(client: Client, message: Message):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入正确的地址")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/weather_api {text}")
await conv.mark_as_read()
2022-06-14 02:57:59 +00:00
await message.edit(answer.text)
2023-07-01 12:18:58 +00:00
@listener(
command="weather_pic", description="使用彩云天气 api 查询国内实时天气,但是显示图片。", parameters="[位置]"
)
2022-09-01 08:28:48 +00:00
async def weather_pic(client: Client, message: Message):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入正确的地址")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/weather {text}")
await conv.mark_as_read()
2022-11-18 08:41:46 +00:00
await answer.copy(
message.chat.id,
2023-07-01 12:18:58 +00:00
reply_to_message_id=message.reply_to_message_id
or message.reply_to_top_message_id,
2022-11-18 08:41:46 +00:00
)
2022-06-14 02:57:59 +00:00
await message.safe_delete()
2023-07-01 12:18:58 +00:00
@listener(
command="weather_he", description="使用和风天气 api 查询国内实时天气,但是显示图片。", parameters="[位置]"
)
2022-09-01 08:28:48 +00:00
async def weather_he(client: Client, message: Message):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入正确的地址")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/weather_he {text}")
await conv.mark_as_read()
2022-11-18 08:41:46 +00:00
await answer.copy(
message.chat.id,
2023-07-01 12:18:58 +00:00
reply_to_message_id=message.reply_to_message_id
or message.reply_to_top_message_id,
2022-11-18 08:41:46 +00:00
)
2022-06-14 02:57:59 +00:00
await message.safe_delete()
2022-09-01 08:28:48 +00:00
async def az_tts(client: Client, message: Message, mode: str):
2022-06-14 02:57:59 +00:00
text = message.arguments
if not text:
return await message.edit("请输入需要 tts 的内容")
2022-09-01 08:28:48 +00:00
async with client.conversation("PagerMaid_Modify_bot") as conv:
2022-06-26 13:01:41 +00:00
answer: Message = await conv.ask(f"/tts {text} {mode}")
await conv.mark_as_read()
2022-11-18 08:41:46 +00:00
await answer.copy(
message.chat.id,
2023-07-01 12:18:58 +00:00
reply_to_message_id=message.reply_to_message_id
or message.reply_to_top_message_id,
2022-11-18 08:41:46 +00:00
)
2022-06-14 02:57:59 +00:00
await message.safe_delete()
2023-07-01 12:18:58 +00:00
@listener(
command="tts_nan",
description="通过 Azure 文本到语音 基于字符串生成 简体男声 语音消息。",
parameters="[字符串]",
)
2022-09-01 08:28:48 +00:00
async def az_tts_nan(client: Client, message: Message):
await az_tts(client, message, "")
2022-06-14 02:57:59 +00:00
2023-07-01 12:18:58 +00:00
@listener(
command="tts_nv",
description="通过 Azure 文本到语音 基于字符串生成 简体女声 语音消息。",
parameters="[字符串]",
)
2022-09-01 08:28:48 +00:00
async def az_tts_nv(client: Client, message: Message):
await az_tts(client, message, "nv")
2022-06-14 02:57:59 +00:00
2023-07-01 12:18:58 +00:00
@listener(
command="tts_tw",
description="通过 Azure 文本到语音 基于字符串生成 繁体男声 语音消息。",
parameters="[字符串]",
)
2022-09-01 08:28:48 +00:00
async def az_tts_tw(client: Client, message: Message):
await az_tts(client, message, "tw")
2022-06-14 02:57:59 +00:00
2023-07-01 12:18:58 +00:00
@listener(
command="tts_ne",
description="通过 Azure 文本到语音 基于字符串生成 简体新闻男声 语音消息。",
parameters="[字符串]",
)
2022-09-01 08:28:48 +00:00
async def az_tts_ne(client: Client, message: Message):
await az_tts(client, message, "ne")
2022-06-14 02:57:59 +00:00
2023-07-01 12:18:58 +00:00
@listener(
command="tts_en",
description="通过 Azure 文本到语音 基于字符串生成 英文男声 语音消息。",
parameters="[字符串]",
)
2022-09-01 08:28:48 +00:00
async def az_tts_en(client: Client, message: Message):
await az_tts(client, message, "en")
2023-04-13 13:35:55 +00:00
2023-07-01 12:18:58 +00:00
@listener(command="draw", description="使用 AI 进行绘图。", parameters="prompt")
2023-04-13 13:35:55 +00:00
async def draw_photo(client: Client, message: Message):
text = message.obtain_message()
if not text:
return await message.edit("请输入 prompt")
async with client.conversation("PagerMaid_Modify_bot") as conv:
answer: Message = await conv.ask(f"/draw {text}")
await conv.mark_as_read()
await answer.copy(
message.chat.id,
2023-07-01 12:18:58 +00:00
reply_to_message_id=message.reply_to_message_id
or message.reply_to_top_message_id,
2023-04-13 13:35:55 +00:00
)
await message.safe_delete()