def close_poll(self, chat_id: Union[int, str], message_id: id) -> bool: """Use this method to close (stop) a poll. Closed polls can't be reopened and nobody will be able to vote in it anymore. Args: chat_id (``int`` | ``str``): Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use "me" or "self". For a contact that exists in your Telegram address book you can use his phone number (str). message_id (``int``): Unique poll message identifier inside this chat. Returns: On success, True is returned. Raises: :class:`RPCError <pyrogram.RPCError>` in case of a Telegram RPC error. """ poll = self.get_messages(chat_id, message_id).poll self.send( functions.messages.EditMessage( peer=self.resolve_peer(chat_id), id=message_id, media=types.InputMediaPoll(poll=types.Poll( id=poll.id, closed=True, question="", answers=[])))) return True
async def stop_poll( self, chat_id: Union[int, str], message_id: int, reply_markup: "pyrogram.InlineKeyboardMarkup" = None ) -> "pyrogram.Poll": """Stop a poll which was sent by you. Stopped polls can't be reopened and nobody will be able to vote in it anymore. Parameters: chat_id (``int`` | ``str``): Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use "me" or "self". For a contact that exists in your Telegram address book you can use his phone number (str). message_id (``int``): Identifier of the original message with the poll. reply_markup (:obj:`InlineKeyboardMarkup`, *optional*): An InlineKeyboardMarkup object. Returns: :obj:`Poll`: On success, the stopped poll with the final results is returned. Example: .. code-block:: python app.stop_poll(chat_id, message_id) """ poll = (await self.get_messages(chat_id, message_id)).poll r = await self.send( functions.messages.EditMessage( peer=await self.resolve_peer(chat_id), id=message_id, media=types.InputMediaPoll( poll=types.Poll( id=poll.id, closed=True, question="", answers=[] ) ), reply_markup=reply_markup.write() if reply_markup else None ) ) return pyrogram.Poll._parse(self, r.updates[0])
def send_poll( self, chat_id: Union[int, str], question: str, options: List[str], is_anonymous: bool = True, allows_multiple_answers: bool = None, type: str = "regular", correct_option_id: int = None, disable_notification: bool = None, reply_to_message_id: int = None, schedule_date: int = None, reply_markup: Union["pyrogram.InlineKeyboardMarkup", "pyrogram.ReplyKeyboardMarkup", "pyrogram.ReplyKeyboardRemove", "pyrogram.ForceReply"] = None ) -> "pyrogram.Message": """Send a new poll. Parameters: chat_id (``int`` | ``str``): Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use "me" or "self". For a contact that exists in your Telegram address book you can use his phone number (str). question (``str``): Poll question, 1-255 characters. options (List of ``str``): List of answer options, 2-10 strings 1-100 characters each. is_anonymous (``bool``, *optional*): True, if the poll needs to be anonymous. Defaults to True. type (``str``, *optional*): Poll type, "quiz" or "regular". Defaults to "regular" allows_multiple_answers (``bool``, *optional*): True, if the poll allows multiple answers, ignored for polls in quiz mode. Defaults to False correct_option_id (``int``, *optional*): 0-based identifier of the correct answer option (the index of the correct option) Required for polls in quiz mode. disable_notification (``bool``, *optional*): Sends the message silently. Users will receive a notification with no sound. reply_to_message_id (``int``, *optional*): If the message is a reply, ID of the original message. schedule_date (``int``, *optional*): Date when the message will be automatically sent. Unix time. reply_markup (:obj:`InlineKeyboardMarkup` | :obj:`ReplyKeyboardMarkup` | :obj:`ReplyKeyboardRemove` | :obj:`ForceReply`, *optional*): Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user. Returns: :obj:`Message`: On success, the sent poll message is returned. Example: .. code-block:: python app.send_poll(chat_id, "Is this a poll question?", ["Yes", "No", "Maybe"]) """ r = self.send( functions.messages.SendMedia( peer=self.resolve_peer(chat_id), media=types.InputMediaPoll( poll=types.Poll(id=0, question=question, answers=[ types.PollAnswer(text=o, option=bytes([i])) for i, o in enumerate(options) ], multiple_choice=allows_multiple_answers or None, public_voters=not is_anonymous or None, quiz=type == "quiz" or None), correct_answers=None if correct_option_id is None else [bytes([correct_option_id])]), message="", silent=disable_notification or None, reply_to_msg_id=reply_to_message_id, random_id=self.rnd_id(), schedule_date=schedule_date, reply_markup=reply_markup.write() if reply_markup else None)) for i in r.updates: if isinstance( i, (types.UpdateNewMessage, types.UpdateNewChannelMessage, types.UpdateNewScheduledMessage)): return pyrogram.Message._parse( self, i.message, {i.id: i for i in r.users}, {i.id: i for i in r.chats}, is_scheduled=isinstance(i, types.UpdateNewScheduledMessage))
def send_poll( self, chat_id: Union[int, str], question: str, options: List[str], disable_notification: bool = None, reply_to_message_id: int = None, reply_markup: Union[ "pyrogram.InlineKeyboardMarkup", "pyrogram.ReplyKeyboardMarkup", "pyrogram.ReplyKeyboardRemove", "pyrogram.ForceReply" ] = None ) -> "pyrogram.Message": """Send a new poll. Parameters: chat_id (``int`` | ``str``): Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use "me" or "self". For a contact that exists in your Telegram address book you can use his phone number (str). question (``str``): Poll question, 1-255 characters. options (List of ``str``): List of answer options, 2-10 strings 1-100 characters each. disable_notification (``bool``, *optional*): Sends the message silently. Users will receive a notification with no sound. reply_to_message_id (``int``, *optional*): If the message is a reply, ID of the original message. reply_markup (:obj:`InlineKeyboardMarkup` | :obj:`ReplyKeyboardMarkup` | :obj:`ReplyKeyboardRemove` | :obj:`ForceReply`, *optional*): Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user. Returns: :obj:`Message`: On success, the sent poll message is returned. Raises: RPCError: In case of a Telegram RPC error. """ r = self.send( functions.messages.SendMedia( peer=self.resolve_peer(chat_id), media=types.InputMediaPoll( poll=types.Poll( id=0, question=question, answers=[ types.PollAnswer(text=o, option=bytes([i])) for i, o in enumerate(options) ] ) ), message="", silent=disable_notification or None, reply_to_msg_id=reply_to_message_id, random_id=self.rnd_id(), reply_markup=reply_markup.write() if reply_markup else None ) ) for i in r.updates: if isinstance(i, (types.UpdateNewMessage, types.UpdateNewChannelMessage)): return pyrogram.Message._parse( self, i.message, {i.id: i for i in r.users}, {i.id: i for i in r.chats} )