PagerMaid_Plugins_Pyro/shift/main.py

217 lines
8.4 KiB
Python
Raw Normal View History

2022-06-20 14:40:15 +00:00
""" PagerMaid module for channel help. """
2023-06-12 06:00:44 +00:00
import contextlib
2022-06-20 14:40:15 +00:00
from asyncio import sleep
from random import uniform
2023-06-12 06:00:44 +00:00
from typing import Any
2022-06-20 14:40:15 +00:00
from pyrogram.enums.chat_type import ChatType
from pyrogram.errors.exceptions.flood_420 import FloodWait
from pyrogram.types import Chat
from pagermaid import log, logs
2022-09-01 08:28:48 +00:00
from pagermaid.enums import Client, Message
2022-06-20 14:40:15 +00:00
from pagermaid.listener import listener
2023-06-12 06:00:44 +00:00
from pagermaid.single_utils import sqlite
from pagermaid.utils import lang
2022-06-20 14:40:15 +00:00
2023-06-12 06:00:44 +00:00
WHITELIST = [-1001441461877]
AVAILABLE_OPTIONS = {"silent", "text", "all", "photo", "document", "video"}
2022-06-20 14:40:15 +00:00
2023-06-12 06:00:44 +00:00
def try_cast_or_fallback(val: Any, t: type) -> Any:
try:
return t(val)
except:
return val
def check_chat_available(chat: Chat):
2024-02-04 07:56:06 +00:00
assert (
chat.type in [ChatType.CHANNEL, ChatType.GROUP]
and not chat.has_protected_content
)
2023-06-12 06:00:44 +00:00
@listener(
command="shift",
description="开启转发频道新消息功能",
parameters="set [from channel] [to channel] (silent) 自动转发频道新消息(可以使用频道用户名或者 id\n"
2024-02-04 07:56:06 +00:00
"del [from channel] 删除转发\n"
"backup [from channel] [to channel] (silent) 备份频道(可以使用频道用户名或者 id\n"
"list 顯示目前轉發的頻道\n\n"
"选项说明:\n"
2024-02-07 15:31:44 +00:00
"silent: 禁用通知, text: 文字, all: 全部訊息都傳, photo: 圖片, document: 檔案, video: 影片",
2023-06-12 06:00:44 +00:00
)
2022-09-01 08:28:48 +00:00
async def shift_set(client: Client, message: Message):
2023-06-12 06:00:44 +00:00
if not message.parameter:
2022-06-20 14:40:15 +00:00
await message.edit(f"{lang('error_prefix')}{lang('arg_error')}")
return
if message.parameter[0] == "set":
2023-06-12 06:00:44 +00:00
if len(message.parameter) < 3:
2022-06-20 14:40:15 +00:00
return await message.edit(f"{lang('error_prefix')}{lang('arg_error')}")
2023-06-12 06:00:44 +00:00
options = set(message.parameter[3:] if len(message.parameter) > 3 else ())
if set(options).difference(AVAILABLE_OPTIONS):
return await message.edit("出错了呜呜呜 ~ 无法识别的选项。")
2022-06-20 14:40:15 +00:00
# 检查来源频道
try:
2023-06-12 06:00:44 +00:00
source = await client.get_chat(
try_cast_or_fallback(message.parameter[1], int)
)
assert isinstance(source, Chat)
check_chat_available(source)
2022-06-20 14:40:15 +00:00
except Exception:
2023-06-12 06:00:44 +00:00
return await message.edit("出错了呜呜呜 ~ 无法识别的来源对话。")
if source.id in WHITELIST:
return await message.edit("出错了呜呜呜 ~ 此对话位于白名单中。")
2022-06-20 14:40:15 +00:00
# 检查目标频道
try:
2023-06-12 06:00:44 +00:00
target = await client.get_chat(
try_cast_or_fallback(message.parameter[2], int)
)
assert isinstance(target, Chat)
2022-06-20 14:40:15 +00:00
except Exception:
2023-06-12 06:00:44 +00:00
return await message.edit("出错了呜呜呜 ~ 无法识别的目标对话。")
if target.id in WHITELIST:
await message.edit("出错了呜呜呜 ~ 此对话位于白名单中。")
2022-06-20 14:40:15 +00:00
return
2023-06-12 06:00:44 +00:00
sqlite[f"shift.{source.id}"] = target.id
sqlite[f"shift.{source.id}.options"] = (
message.parameter[3:] if len(message.parameter) > 3 else ["all"]
2023-06-12 06:00:44 +00:00
)
await message.edit(f"已成功配置将对话 {source.id} 的新消息转发到 {target.id}")
await log(f"已成功配置将对话 {source.id} 的新消息转发到 {target.id}")
2022-06-20 14:40:15 +00:00
elif message.parameter[0] == "del":
if len(message.parameter) != 2:
return await message.edit(f"{lang('error_prefix')}{lang('arg_error')}")
# 检查来源频道
try:
2023-06-12 06:00:44 +00:00
source = await client.get_chat(
try_cast_or_fallback(message.parameter[1], int)
)
assert isinstance(source, Chat)
2022-06-20 14:40:15 +00:00
except Exception:
2023-06-12 06:00:44 +00:00
return await message.edit("出错了呜呜呜 ~ 无法识别的来源对话。")
2022-06-20 14:40:15 +00:00
try:
2023-06-12 06:00:44 +00:00
del sqlite[f"shift.{source.id}"]
with contextlib.suppress(Exception):
del sqlite[f"shift.{source.id}.options"]
except Exception:
return await message.edit("emm...当前对话不存在于自动转发列表中。")
await message.edit(f"已成功关闭对话 {str(source.id)} 的自动转发功能。")
await log(f"已成功关闭对话 {str(source.id)} 的自动转发功能。")
2022-06-20 14:40:15 +00:00
elif message.parameter[0] == "backup":
2023-06-12 06:00:44 +00:00
if len(message.parameter) < 3:
2022-06-20 14:40:15 +00:00
return await message.edit(f"{lang('error_prefix')}{lang('arg_error')}")
2023-06-12 06:00:44 +00:00
options = set(message.parameter[3:] if len(message.parameter) > 3 else ())
if set(options).difference(AVAILABLE_OPTIONS):
return await message.edit("出错了呜呜呜 ~ 无法识别的选项。")
2022-06-20 14:40:15 +00:00
# 检查来源频道
try:
2023-06-12 06:00:44 +00:00
source = await client.get_chat(
try_cast_or_fallback(message.parameter[1], int)
)
assert isinstance(source, Chat)
check_chat_available(source)
2022-06-20 14:40:15 +00:00
except Exception:
2023-06-12 06:00:44 +00:00
return await message.edit("出错了呜呜呜 ~ 无法识别的来源对话。")
if source.id in WHITELIST:
return await message.edit("出错了呜呜呜 ~ 此对话位于白名单中。")
2022-06-20 14:40:15 +00:00
# 检查目标频道
try:
2023-06-12 06:00:44 +00:00
target = await client.get_chat(
try_cast_or_fallback(message.parameter[2], int)
)
assert isinstance(target, Chat)
2022-06-20 14:40:15 +00:00
except Exception:
2023-06-12 06:00:44 +00:00
return await message.edit("出错了呜呜呜 ~ 无法识别的目标对话。")
if target.id in WHITELIST:
return await message.edit("出错了呜呜呜 ~ 此对话位于白名单中。")
2022-06-20 14:40:15 +00:00
# 开始遍历消息
2023-06-12 06:00:44 +00:00
await message.edit(f"开始备份频道 {source.id}{target.id}")
async for msg in client.search_messages(source.id): # type: ignore
2022-06-20 14:40:15 +00:00
await sleep(uniform(0.5, 1.0))
2023-06-12 06:00:44 +00:00
await loosely_forward(
message,
msg,
target.id,
disable_notification="silent" in options,
)
await message.edit(f"备份频道 {source.id}{target.id} 已完成。")
# 列出要轉存的頻道
elif message.parameter[0] == "list":
2024-02-04 07:56:06 +00:00
from_ids = list(
filter(
lambda x: (x.startswith("shift.") and (not x.endswith("options"))),
list(sqlite.keys()),
)
)
if not from_ids:
return await message.edit("沒有要轉存的頻道")
output = "總共有 %d 個頻道要轉存\n\n" % len(from_ids)
for from_id in from_ids:
to_id = sqlite[from_id]
2024-02-04 07:56:06 +00:00
output += "%s -> %s\n" % (
format_channel_id(from_id[6:]),
format_channel_id(to_id),
)
await message.edit(output)
2022-06-20 14:40:15 +00:00
else:
await message.edit(f"{lang('error_prefix')}{lang('arg_error')}")
return
def format_channel_id(channel_id: str):
short_channel_id = str(channel_id)[4:]
return f"[{channel_id}](https://t.me/c/{short_channel_id})"
2022-06-20 14:40:15 +00:00
@listener(is_plugin=True, incoming=True, ignore_edited=True)
2023-06-12 06:00:44 +00:00
async def shift_channel_message(message: Message):
"""Event handler to auto forward channel messages."""
d = dict(sqlite)
source = message.chat.id
# 找訊息類型video、document...
media_type = message.media.name.lower() if message.media else "text"
2023-06-12 06:00:44 +00:00
target = d.get(f"shift.{source}")
if not target:
2022-06-20 14:40:15 +00:00
return
if message.chat.has_protected_content:
2023-06-12 06:00:44 +00:00
del sqlite[f"shift.{source}"]
2022-06-20 14:40:15 +00:00
return
2023-06-12 06:00:44 +00:00
options = d.get(f"shift.{source}.options") or []
2022-06-20 14:40:15 +00:00
with contextlib.suppress(Exception):
if (not options) or "all" in options:
await message.forward(
target,
disable_notification="silent" in options,
)
elif media_type in options:
await message.forward(
target,
disable_notification="silent" in options,
)
else:
logs.debug("skip message type: %s", media_type)
2022-06-20 14:40:15 +00:00
2023-06-12 06:00:44 +00:00
async def loosely_forward(
2024-02-04 07:56:06 +00:00
notifier: Message,
message: Message,
chat_id: int,
disable_notification: bool = False,
2023-06-12 06:00:44 +00:00
):
2022-06-20 14:40:15 +00:00
try:
2023-06-12 06:00:44 +00:00
await message.forward(chat_id, disable_notification=disable_notification)
except FloodWait as ex:
min: int = ex.value # type: ignore
delay = min + uniform(0.5, 1.0)
await notifier.edit(f"触发 Flood ,暂停 {delay} 秒。")
await sleep(delay)
2023-07-01 12:18:58 +00:00
await loosely_forward(notifier, message, chat_id, disable_notification)
2023-06-12 06:00:44 +00:00
except Exception:
pass # drop other errors