Repository URL to install this package:
|
Version:
2.1.28 ▾
|
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# 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/>.
import re
import pyrogram
from pyrogram import raw, utils
class JoinFolder:
async def join_folder(
self: "pyrogram.Client",
link: str,
) -> bool:
"""Join a folder by its invite link.
.. include:: /_includes/usable-by/users.rst
Parameters:
link (``str``):
Invite link of the folder.
Returns:
``bool``: True, on success.
Raises:
BadRequest: In case the folder invite link not exists.
ValueError: In case the folder invite link is invalid.
Example:
.. code-block:: python
# join folder
app.join_folder("t.me/addlist/ebXQ0Q0I3RnGQ")
"""
match = re.match(r"^(?:https?://)?(?:www\.)?(?:t(?:elegram)?\.(?:org|me|dog)/(?:addlist/|\+))([\w-]+)$", link)
if match:
slug = match.group(1)
elif isinstance(link, str):
slug = link
else:
raise ValueError("Invalid folder invite link")
r = await self.invoke(
raw.functions.chatlists.CheckChatlistInvite(
slug=slug
)
)
if isinstance(r, raw.types.chatlists.ChatlistInviteAlready):
peers = r.already_peers + r.missing_peers
else:
peers = r.peers
await self.invoke(
raw.functions.chatlists.JoinChatlistInvite(
slug=slug,
peers=[
await self.resolve_peer(utils.get_peer_id(id)) for id in peers
],
)
)
return True