mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
83 lines
3 KiB
Python
83 lines
3 KiB
Python
# 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/>.
|
|
|
|
from typing import Union
|
|
|
|
import pyrogram
|
|
from pyrogram import raw
|
|
|
|
|
|
class SetAdministratorTitle:
|
|
async def set_administrator_title(
|
|
self: "pyrogram.Client",
|
|
chat_id: Union[int, str],
|
|
user_id: Union[int, str],
|
|
title: str,
|
|
) -> bool:
|
|
"""Set a custom title (rank) to an administrator of a supergroup.
|
|
|
|
If you are an administrator of a supergroup (i.e. not the owner), you can only set the title of other
|
|
administrators who have been promoted by you. If you are the owner, you can change every administrator's title.
|
|
|
|
Parameters:
|
|
chat_id (``int`` | ``str``):
|
|
Unique identifier (int) or username (str) of the target chat.
|
|
|
|
user_id (``int`` | ``str``):
|
|
Unique identifier (int) or username (str) of the target user.
|
|
For a contact that exists in your Telegram address book you can use his phone number (str).
|
|
|
|
title (``str``, *optional*):
|
|
A custom title that will be shown to all members instead of "Owner" or "Admin".
|
|
Pass None or "" (empty string) to remove the custom title.
|
|
|
|
Returns:
|
|
``bool``: True on success.
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
|
|
await app.set_administrator_title(chat_id, user_id, "Admin Title")
|
|
"""
|
|
chat_id = await self.resolve_peer(chat_id)
|
|
user_id = await self.resolve_peer(user_id)
|
|
|
|
r = (await self.invoke(
|
|
raw.functions.channels.GetParticipant(
|
|
channel=chat_id,
|
|
participant=user_id
|
|
)
|
|
)).participant
|
|
|
|
if isinstance(r, raw.types.ChannelParticipantCreator):
|
|
admin_rights = raw.types.ChatAdminRights()
|
|
elif isinstance(r, raw.types.ChannelParticipantAdmin):
|
|
admin_rights = r.admin_rights
|
|
else:
|
|
raise ValueError("Custom titles can only be applied to owners or administrators of supergroups")
|
|
|
|
await self.invoke(
|
|
raw.functions.channels.EditAdmin(
|
|
channel=chat_id,
|
|
user_id=user_id,
|
|
admin_rights=admin_rights,
|
|
rank=title
|
|
)
|
|
)
|
|
|
|
return True
|