mirror of
https://github.com/PaiGramTeam/GramCore.git
synced 2024-11-16 12:02:17 +00:00
✨ Support inline use data
This commit is contained in:
parent
c478924e06
commit
9bce0f921f
@ -145,6 +145,8 @@ class ApplicationConfig(Settings):
|
|||||||
|
|
||||||
channels: List[int] = []
|
channels: List[int] = []
|
||||||
"""文章推送群组"""
|
"""文章推送群组"""
|
||||||
|
channels_helper: Optional[int] = None
|
||||||
|
"""消息帮助频道"""
|
||||||
|
|
||||||
verify_groups: Set[int] = set()
|
verify_groups: Set[int] = set()
|
||||||
"""启用群验证功能的群组"""
|
"""启用群验证功能的群组"""
|
||||||
|
@ -6,6 +6,7 @@ from .get_chat import GetChat
|
|||||||
from .get_real_uid_or_offset import GetRealUidOrOffset
|
from .get_real_uid_or_offset import GetRealUidOrOffset
|
||||||
from .get_real_user_id import GetRealUserId
|
from .get_real_user_id import GetRealUserId
|
||||||
from .get_real_user_name import GetRealUserName
|
from .get_real_user_name import GetRealUserName
|
||||||
|
from .inline_use_data import InlineUseData
|
||||||
from .log_user import LogUser
|
from .log_user import LogUser
|
||||||
from .migrate_data import MigrateData
|
from .migrate_data import MigrateData
|
||||||
|
|
||||||
@ -19,6 +20,7 @@ class PluginFuncMethods(
|
|||||||
GetRealUidOrOffset,
|
GetRealUidOrOffset,
|
||||||
GetRealUserId,
|
GetRealUserId,
|
||||||
GetRealUserName,
|
GetRealUserName,
|
||||||
|
InlineUseData,
|
||||||
LogUser,
|
LogUser,
|
||||||
MigrateData,
|
MigrateData,
|
||||||
):
|
):
|
||||||
|
@ -7,15 +7,7 @@ if TYPE_CHECKING:
|
|||||||
REGEX = r"@(\d{10})|@(\d{9})|@(\d)"
|
REGEX = r"@(\d{10})|@(\d{9})|@(\d)"
|
||||||
|
|
||||||
|
|
||||||
class GetRealUidOrOffset:
|
def get_real_uid_or_offset_by_text(text: str) -> Tuple[Optional[int], Optional[int]]:
|
||||||
@staticmethod
|
|
||||||
def get_real_uid_or_offset(update: "Update") -> Tuple[Optional[int], Optional[int]]:
|
|
||||||
message = update.effective_message
|
|
||||||
if not message:
|
|
||||||
return None, None
|
|
||||||
text = message.text or message.caption
|
|
||||||
if not text:
|
|
||||||
return None, None
|
|
||||||
if matches := re.findall(REGEX, text):
|
if matches := re.findall(REGEX, text):
|
||||||
if numbers := [int(num) for match in matches for num in match if num != ""]:
|
if numbers := [int(num) for match in matches for num in match if num != ""]:
|
||||||
if 1 < numbers[0] < 10:
|
if 1 < numbers[0] < 10:
|
||||||
@ -24,3 +16,21 @@ class GetRealUidOrOffset:
|
|||||||
return None, None
|
return None, None
|
||||||
return numbers[0], None
|
return numbers[0], None
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
|
|
||||||
|
class GetRealUidOrOffset:
|
||||||
|
@staticmethod
|
||||||
|
def get_real_uid_or_offset(update: "Update") -> Tuple[Optional[int], Optional[int]]:
|
||||||
|
message = update.effective_message
|
||||||
|
ilq = update.inline_query
|
||||||
|
text = None
|
||||||
|
if not message:
|
||||||
|
if ilq:
|
||||||
|
text = ilq.query
|
||||||
|
else:
|
||||||
|
return None, None
|
||||||
|
else:
|
||||||
|
text = message.text or message.caption
|
||||||
|
if not text:
|
||||||
|
return None, None
|
||||||
|
return get_real_uid_or_offset_by_text(text)
|
||||||
|
49
plugin/methods/inline_use_data.py
Normal file
49
plugin/methods/inline_use_data.py
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
from dataclasses import dataclass
|
||||||
|
from typing import Optional, List
|
||||||
|
|
||||||
|
from telegram.ext import ContextTypes
|
||||||
|
from telegram.ext._utils.types import HandlerCallback, UT, CCT, RT
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class IInlineUseData:
|
||||||
|
"""Inline 使用数据"""
|
||||||
|
|
||||||
|
text: str
|
||||||
|
hash: str
|
||||||
|
callback: HandlerCallback[UT, CCT, RT]
|
||||||
|
cookie: bool = False
|
||||||
|
player: bool = False
|
||||||
|
UID_KEY: str = "inline_uid"
|
||||||
|
|
||||||
|
def is_show(self, has_cookie: bool, has_player: bool) -> bool:
|
||||||
|
"""是否显示"""
|
||||||
|
if self.cookie and not has_cookie:
|
||||||
|
return False
|
||||||
|
if self.player and not has_player:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def get_button_callback_data(self, start: str) -> str:
|
||||||
|
"""获取按钮数据"""
|
||||||
|
return f"{start}|{self.hash}"
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def set_uid_to_context(context: "ContextTypes.DEFAULT_TYPE", uid: int) -> None:
|
||||||
|
"""设置 UID 到 Update"""
|
||||||
|
user_data = context.user_data
|
||||||
|
user_data[IInlineUseData.UID_KEY] = uid
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_uid_from_context(context: "ContextTypes.DEFAULT_TYPE") -> int:
|
||||||
|
"""从 Update 中获取 UID"""
|
||||||
|
user_data = context.user_data
|
||||||
|
if not user_data:
|
||||||
|
return 0
|
||||||
|
return user_data.get(IInlineUseData.UID_KEY, 0)
|
||||||
|
|
||||||
|
|
||||||
|
class InlineUseData:
|
||||||
|
async def get_inline_use_data(self) -> List[Optional[IInlineUseData]]:
|
||||||
|
"""获取 Inline 使用数据"""
|
||||||
|
return []
|
@ -1,9 +1,10 @@
|
|||||||
from enum import Enum
|
from enum import Enum
|
||||||
from typing import List, Optional, Union
|
from typing import List, Optional, Union
|
||||||
|
|
||||||
from telegram import InputMediaDocument, InputMediaPhoto, Message
|
from telegram import InputMediaDocument, InputMediaPhoto, Message, CallbackQuery, Bot
|
||||||
from telegram.error import BadRequest
|
from telegram.error import BadRequest
|
||||||
|
|
||||||
|
from gram_core.config import config
|
||||||
from gram_core.services.template.cache import HtmlToFileIdCache
|
from gram_core.services.template.cache import HtmlToFileIdCache
|
||||||
from gram_core.services.template.error import ErrorFileType, FileIdNotFound
|
from gram_core.services.template.error import ErrorFileType, FileIdNotFound
|
||||||
|
|
||||||
@ -106,10 +107,51 @@ class RenderResult:
|
|||||||
|
|
||||||
return edit_media
|
return edit_media
|
||||||
|
|
||||||
async def cache_file_id(self, reply: Message):
|
async def send_photo_to_helper_channel(self, bot: "Bot", filename: Optional[str] = None):
|
||||||
"""缓存 telegram 返回的 file_id"""
|
try:
|
||||||
if self.is_file_id():
|
if self.file_type == FileType.PHOTO:
|
||||||
|
reply = await bot.send_photo(config.channels_helper, photo=self.photo)
|
||||||
|
elif self.file_type == FileType.DOCUMENT:
|
||||||
|
reply = await bot.send_document(config.channels_helper, document=self.photo, filename=filename)
|
||||||
|
else:
|
||||||
return
|
return
|
||||||
|
except BadRequest as exc:
|
||||||
|
if "Wrong file identifier" in exc.message and isinstance(self.photo, str):
|
||||||
|
await self._cache.delete_data(self.html, self.file_type.name)
|
||||||
|
raise BadRequest(message="Wrong file identifier specified")
|
||||||
|
raise exc
|
||||||
|
|
||||||
|
await self.cache_file_id(reply)
|
||||||
|
|
||||||
|
return reply
|
||||||
|
|
||||||
|
async def edit_inline_media(self, callback_query: CallbackQuery, filename: str = None, *args, **kwargs) -> bool:
|
||||||
|
"""是 `message.edit_media` 的封装,上传成功后,缓存 telegram 返回的 file_id,方便重复使用"""
|
||||||
|
bot = callback_query.get_bot()
|
||||||
|
|
||||||
|
reply = await self.send_photo_to_helper_channel(bot, filename)
|
||||||
|
file_id = self.get_file_id(reply)
|
||||||
|
|
||||||
|
if self.file_type == FileType.DOCUMENT:
|
||||||
|
media = InputMediaDocument(
|
||||||
|
media=file_id, caption=self.caption, parse_mode=self.parse_mode, filename=self.filename
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
media = InputMediaPhoto(
|
||||||
|
media=file_id, caption=self.caption, parse_mode=self.parse_mode, filename=self.filename
|
||||||
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
return await callback_query.edit_message_media(media, *args, **kwargs)
|
||||||
|
except BadRequest as exc:
|
||||||
|
if "Wrong file identifier" in exc.message and isinstance(self.photo, str):
|
||||||
|
await self._cache.delete_data(self.html, self.file_type.name)
|
||||||
|
raise BadRequest(message="Wrong file identifier specified")
|
||||||
|
raise exc
|
||||||
|
|
||||||
|
def get_file_id(self, reply: Message) -> str:
|
||||||
|
if self.is_file_id():
|
||||||
|
return self.photo
|
||||||
|
|
||||||
if self.file_type == FileType.PHOTO and reply.photo:
|
if self.file_type == FileType.PHOTO and reply.photo:
|
||||||
file_id = reply.photo[0].file_id
|
file_id = reply.photo[0].file_id
|
||||||
@ -117,6 +159,13 @@ class RenderResult:
|
|||||||
file_id = reply.document.file_id
|
file_id = reply.document.file_id
|
||||||
else:
|
else:
|
||||||
raise FileIdNotFound
|
raise FileIdNotFound
|
||||||
|
return file_id
|
||||||
|
|
||||||
|
async def cache_file_id(self, reply: Message):
|
||||||
|
"""缓存 telegram 返回的 file_id"""
|
||||||
|
if self.is_file_id():
|
||||||
|
return
|
||||||
|
file_id = self.get_file_id(reply)
|
||||||
await self._cache.set_data(self.html, self.file_type.name, file_id, self.ttl)
|
await self._cache.set_data(self.html, self.file_type.name, file_id, self.ttl)
|
||||||
|
|
||||||
def is_file_id(self) -> bool:
|
def is_file_id(self) -> bool:
|
||||||
|
Loading…
Reference in New Issue
Block a user