mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
# 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 logging
|
|
from typing import Union, Iterable
|
|
|
|
import pyrogram
|
|
from pyrogram import raw
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
class DeleteStories:
|
|
async def delete_stories(
|
|
self: "pyrogram.Client",
|
|
story_ids: Union[int, Iterable[int]],
|
|
chat_id: Union[int, str] = None
|
|
) -> bool:
|
|
"""Delete one or more story by using story identifiers.
|
|
|
|
.. include:: /_includes/usable-by/users.rst
|
|
|
|
Parameters:
|
|
story_ids (``int`` | Iterable of ``int``):
|
|
Pass a single story identifier or an iterable of story ids (as integers) to get the content of the
|
|
story themselves.
|
|
|
|
chat_id (``int``, *optional*):
|
|
Unique identifier (int) or username (str) of the target channel.
|
|
You can also use channel public link in form of *t.me/<username>* (str).
|
|
|
|
Returns:
|
|
`bool`: On success, a True is returned.
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
|
|
# Delete one story
|
|
await app.delete_stories(12345)
|
|
|
|
# Delete more than one story (list of stories)
|
|
await app.delete_stories([12345, 12346])
|
|
"""
|
|
|
|
is_iterable = not isinstance(story_ids, int)
|
|
ids = list(story_ids) if is_iterable else [story_ids]
|
|
|
|
if chat_id:
|
|
peer = await self.resolve_peer(chat_id)
|
|
else:
|
|
peer = await self.resolve_peer("me")
|
|
|
|
try:
|
|
await self.invoke(
|
|
raw.functions.stories.DeleteStories(peer=peer,id=ids)
|
|
)
|
|
except Exception as e:
|
|
print(e)
|
|
return False
|
|
return True
|