mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Add MessageOriginImport
Signed-off-by: wulan17 <wulan17@komodos.id>
This commit is contained in:
parent
7ae98099db
commit
6b28d305c0
5 changed files with 64 additions and 0 deletions
|
|
@ -516,6 +516,7 @@ def pyrogram_api():
|
|||
MessageOriginChannel
|
||||
MessageOriginChat
|
||||
MessageOriginHiddenUser
|
||||
MessageOriginImport
|
||||
MessageOriginUser
|
||||
MessageOrigin
|
||||
Photo
|
||||
|
|
|
|||
|
|
@ -34,5 +34,9 @@ class MessageOriginType(AutoName):
|
|||
HIDDEN_USER = auto()
|
||||
"The message was originally sent by a user, which is hidden by their privacy settings"
|
||||
|
||||
IMPORT = auto()
|
||||
"The message was imported from a foreign chat service"
|
||||
|
||||
|
||||
USER = auto()
|
||||
"The message was originally sent by a known user"
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ from .message_origin import MessageOrigin
|
|||
from .message_origin_channel import MessageOriginChannel
|
||||
from .message_origin_chat import MessageOriginChat
|
||||
from .message_origin_hidden_user import MessageOriginHiddenUser
|
||||
from .message_origin_import import MessageOriginImport
|
||||
from .message_origin_user import MessageOriginUser
|
||||
from .photo import Photo
|
||||
from .poll import Poll
|
||||
|
|
@ -102,6 +103,7 @@ __all__ = [
|
|||
"MessageOriginChannel",
|
||||
"MessageOriginChat",
|
||||
"MessageOriginHiddenUser",
|
||||
"MessageOriginImport",
|
||||
"MessageOriginUser",
|
||||
"Photo",
|
||||
"Thumbnail",
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ class MessageOrigin(Object):
|
|||
- :obj:`~pyrogram.types.MessageOriginChannel`
|
||||
- :obj:`~pyrogram.types.MessageOriginChat`
|
||||
- :obj:`~pyrogram.types.MessageOriginHiddenUser`
|
||||
- :obj:`~pyrogram.types.MessageOriginImport`
|
||||
- :obj:`~pyrogram.types.MessageOriginUser`
|
||||
"""
|
||||
|
||||
|
|
@ -87,3 +88,8 @@ class MessageOrigin(Object):
|
|||
date=forward_date,
|
||||
sender_user_name=fwd_from.from_name
|
||||
)
|
||||
elif fwd_from.imported:
|
||||
return types.MessageOriginImport(
|
||||
date=forward_date,
|
||||
sender_user_name=fwd_from.post_author
|
||||
)
|
||||
|
|
|
|||
51
pyrogram/types/messages_and_media/message_origin_import.py
Normal file
51
pyrogram/types/messages_and_media/message_origin_import.py
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# Pyrogram - Telegram MTProto API Client Library for Python
|
||||
# Copyright (C) 2017-present <https://github.com/TelegramPlayGround>
|
||||
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
|
||||
#
|
||||
# This file is part of Pyrogram.
|
||||
#
|
||||
# Pyrogram is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Pyrogram is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
from pyrogram import enums
|
||||
|
||||
from .message_origin import MessageOrigin
|
||||
|
||||
|
||||
class MessageOriginImport(MessageOrigin):
|
||||
"""Contains information about a message imported from a foreign chat service.
|
||||
|
||||
Parameters:
|
||||
type (:obj:`~pyrogram.enums.MessageOriginType`):
|
||||
Type of the message origin.
|
||||
|
||||
date (:py:obj:`~datetime.datetime`):
|
||||
Date the message was sent originally.
|
||||
|
||||
sender_user_name (``str``):
|
||||
Name of the original sender.
|
||||
"""
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
date: datetime = None,
|
||||
sender_user_name: str = None
|
||||
):
|
||||
super().__init__(
|
||||
type=enums.MessageOriginType.IMPORT,
|
||||
date=date
|
||||
)
|
||||
|
||||
self.sender_user_name = sender_user_name
|
||||
Loading…
Reference in a new issue