Pyrofork: Add update_personal_chat method

Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
wulan17 2024-04-06 20:27:39 +07:00
parent 8ca9045ebc
commit fa0376c458
No known key found for this signature in database
GPG key ID: 318CD6CD3A6AC0A5
3 changed files with 54 additions and 0 deletions

View file

@ -278,6 +278,7 @@ def pyrogram_api():
delete_profile_photos
set_username
update_birthday
update_personal_chat
update_profile
block_user
unblock_user

View file

@ -39,6 +39,7 @@ from .set_profile_photo import SetProfilePhoto
from .set_username import SetUsername
from .unblock_user import UnblockUser
from .update_birthday import UpdateBirthday
from .update_personal_chat import UpdatePersonalChat
from .update_profile import UpdateProfile
@ -62,6 +63,7 @@ class Users(
GetChatPhotosCount,
UnblockUser,
UpdateBirthday,
UpdatePersonalChat,
UpdateProfile,
GetDefaultEmojiStatuses,
SetEmojiStatus,

View file

@ -0,0 +1,51 @@
# Pyrofork - Telegram MTProto API Client Library for Python
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
#
# This file is part of Pyrofork.
#
# Pyrofork 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.
#
# Pyrofork 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 Pyrofork. If not, see <http://www.gnu.org/licenses/>.
import pyrogram
from pyrogram import raw
from typing import Union
class UpdatePersonalChat:
async def update_personal_chat(
self: "pyrogram.Client",
chat_id: Union[int, str]
) -> bool:
"""Update your birthday details.
.. include:: /_includes/usable-by/users.rst
Parameters:
chat_id (``int``):
Unique identifier (int) of the target channel.
You can also use channel public link in form of *t.me/<username>* (str).
Returns:
``bool``: True on success.
Example:
.. code-block:: python
# Update your personal chat
await app.update_personal_chat(chat_id=-1001234567890)
"""
chat = await self.resolve_peer(chat_id)
r = await self.invoke(raw.functions.account.UpdatePersonalChannel(channel=chat))
if r:
return True
return False