# Pyrofork - Telegram MTProto API Client Library for Python # Copyright (C) 2022-present 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 . import logging from typing import Union, List, Iterable import pyrogram from pyrogram import raw from pyrogram import types log = logging.getLogger(__name__) class DeleteStories: async def delete_stories( self: "pyrogram.Client", story_ids: Union[int, Iterable[int]], channel_id: int = 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. channel_id (``int``, *optional*): Unique identifier (int) of the target channel. 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 channel_id: peer = await self.resolve_peer(channel_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