2019-08-23 21:20:41 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2023-01-01 21:31:29 +01:00
|
|
|
# Copyright (C) 2015-2023
|
2019-08-23 21:20:41 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
"""This module contains an object that represents a Telegram Poll."""
|
2020-10-06 19:28:40 +02:00
|
|
|
import datetime
|
2023-06-29 18:17:47 +02:00
|
|
|
from typing import TYPE_CHECKING, Dict, Final, List, Optional, Sequence, Tuple
|
2020-05-02 11:56:52 +02:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram import constants
|
2023-09-03 13:43:44 +02:00
|
|
|
from telegram._chat import Chat
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._messageentity import MessageEntity
|
|
|
|
from telegram._telegramobject import TelegramObject
|
|
|
|
from telegram._user import User
|
2022-04-30 22:18:11 +02:00
|
|
|
from telegram._utils import enum
|
2022-12-15 15:00:36 +01:00
|
|
|
from telegram._utils.argumentparsing import parse_sequence_arg
|
2023-04-18 16:16:23 +02:00
|
|
|
from telegram._utils.datetime import extract_tzinfo_from_defaults, from_timestamp
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram._utils.types import JSONDict
|
2023-09-03 13:43:44 +02:00
|
|
|
from telegram._utils.warnings import warn
|
|
|
|
from telegram.warnings import PTBDeprecationWarning
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from telegram import Bot
|
2019-08-23 21:20:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PollOption(TelegramObject):
|
|
|
|
"""
|
|
|
|
This object contains information about one answer option in a poll.
|
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`text` and :attr:`voter_count` are equal.
|
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Args:
|
2022-11-22 11:07:42 +01:00
|
|
|
text (:obj:`str`): Option text,
|
|
|
|
:tg-const:`telegram.PollOption.MIN_LENGTH`-:tg-const:`telegram.PollOption.MAX_LENGTH`
|
|
|
|
characters.
|
2019-08-23 21:20:41 +02:00
|
|
|
voter_count (:obj:`int`): Number of users that voted for this option.
|
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2022-11-22 11:07:42 +01:00
|
|
|
text (:obj:`str`): Option text,
|
|
|
|
:tg-const:`telegram.PollOption.MIN_LENGTH`-:tg-const:`telegram.PollOption.MAX_LENGTH`
|
|
|
|
characters.
|
2019-08-23 21:20:41 +02:00
|
|
|
voter_count (:obj:`int`): Number of users that voted for this option.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2021-08-19 22:01:10 +02:00
|
|
|
__slots__ = ("voter_count", "text")
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def __init__(self, text: str, voter_count: int, *, api_kwargs: Optional[JSONDict] = None):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2023-02-02 18:55:07 +01:00
|
|
|
self.text: str = text
|
|
|
|
self.voter_count: int = voter_count
|
2019-08-23 21:20:41 +02:00
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
self._id_attrs = (self.text, self.voter_count)
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_LENGTH: Final[int] = constants.PollLimit.MIN_OPTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MIN_OPTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_LENGTH: Final[int] = constants.PollLimit.MAX_OPTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_OPTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2020-11-29 16:20:46 +01:00
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
|
2020-03-29 09:52:30 +02:00
|
|
|
class PollAnswer(TelegramObject):
|
|
|
|
"""
|
|
|
|
This object represents an answer of a user in a non-anonymous poll.
|
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
2022-02-09 17:30:16 +01:00
|
|
|
considered equal, if their :attr:`poll_id`, :attr:`user` and :attr:`option_ids` are equal.
|
2020-07-14 21:33:56 +02:00
|
|
|
|
2023-09-03 14:46:28 +02:00
|
|
|
.. versionchanged:: 20.5
|
2023-09-03 13:43:44 +02:00
|
|
|
The order of :paramref:`option_ids` and :paramref:`user` is changed in
|
2023-09-03 14:46:28 +02:00
|
|
|
20.5 as the latter one became optional. We currently provide
|
2023-09-03 13:43:44 +02:00
|
|
|
backward compatibility for this but it will be removed in the future.
|
|
|
|
Please update your code to use the new order.
|
|
|
|
|
2020-03-29 09:52:30 +02:00
|
|
|
Args:
|
|
|
|
poll_id (:obj:`str`): Unique poll identifier.
|
2023-09-03 13:43:44 +02:00
|
|
|
option_ids (Sequence[:obj:`int`]): Identifiers of answer options, chosen by the user. May
|
|
|
|
be empty if the user retracted their vote.
|
2022-12-15 15:00:36 +01:00
|
|
|
|
|
|
|
.. versionchanged:: 20.0
|
|
|
|
|sequenceclassargs|
|
2023-09-03 13:43:44 +02:00
|
|
|
user (:class:`telegram.User`, optional): The user that changed the answer to the poll,
|
|
|
|
if the voter isn't anonymous. If the voter is anonymous, this field will contain the
|
|
|
|
user :tg-const:`telegram.constants.ChatID.FAKE_CHANNEL` for backwards compatibility.
|
|
|
|
|
2023-09-03 14:46:28 +02:00
|
|
|
.. versionchanged:: 20.5
|
2023-09-03 13:43:44 +02:00
|
|
|
:paramref:`user` became optional.
|
|
|
|
voter_chat (:class:`telegram.Chat`, optional): The chat that changed the answer to the
|
|
|
|
poll, if the voter is anonymous.
|
|
|
|
|
2023-09-03 14:46:28 +02:00
|
|
|
.. versionadded:: 20.5
|
2020-03-29 09:52:30 +02:00
|
|
|
|
2021-12-13 18:21:38 +01:00
|
|
|
Attributes:
|
|
|
|
poll_id (:obj:`str`): Unique poll identifier.
|
2023-09-03 13:43:44 +02:00
|
|
|
option_ids (Tuple[:obj:`int`]): Identifiers of answer options, chosen by the user. May
|
|
|
|
be empty if the user retracted their vote.
|
2022-12-15 15:00:36 +01:00
|
|
|
|
|
|
|
.. versionchanged:: 20.0
|
|
|
|
|tupleclassattrs|
|
2023-09-03 13:43:44 +02:00
|
|
|
user (:class:`telegram.User`): Optional. The user, who changed the answer to the
|
|
|
|
poll, if the voter isn't anonymous. If the voter is anonymous, this field will contain
|
|
|
|
the user :tg-const:`telegram.constants.ChatID.FAKE_CHANNEL` for backwards compatibility
|
|
|
|
|
2023-09-03 14:46:28 +02:00
|
|
|
.. versionchanged:: 20.5
|
2023-09-03 13:43:44 +02:00
|
|
|
:paramref:`user` became optional.
|
|
|
|
voter_chat (:class:`telegram.Chat`): Optional. The chat that changed the answer to the
|
|
|
|
poll, if the voter is anonymous.
|
|
|
|
|
2023-09-03 14:46:28 +02:00
|
|
|
.. versionadded:: 20.5
|
2021-12-13 18:21:38 +01:00
|
|
|
|
2020-03-29 09:52:30 +02:00
|
|
|
"""
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2023-09-03 13:43:44 +02:00
|
|
|
__slots__ = ("option_ids", "poll_id", "user", "voter_chat")
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
def __init__(
|
2023-05-18 07:57:59 +02:00
|
|
|
self,
|
|
|
|
poll_id: str,
|
|
|
|
option_ids: Sequence[int],
|
2023-09-03 13:43:44 +02:00
|
|
|
user: Optional[User] = None,
|
|
|
|
voter_chat: Optional[Chat] = None,
|
2023-05-18 07:57:59 +02:00
|
|
|
*,
|
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
):
|
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2023-02-02 18:55:07 +01:00
|
|
|
self.poll_id: str = poll_id
|
2023-09-03 13:43:44 +02:00
|
|
|
self.voter_chat: Optional[Chat] = voter_chat
|
|
|
|
|
|
|
|
if isinstance(option_ids, User) or isinstance(user, tuple):
|
|
|
|
warn(
|
|
|
|
"From v20.5 the order of `option_ids` and `user` is changed as the latter one"
|
|
|
|
" became optional. Please update your code to use the new order.",
|
|
|
|
category=PTBDeprecationWarning,
|
|
|
|
stacklevel=2,
|
|
|
|
)
|
|
|
|
self.option_ids: Tuple[int, ...] = parse_sequence_arg(user)
|
|
|
|
self.user: Optional[User] = option_ids
|
|
|
|
else:
|
|
|
|
self.option_ids: Tuple[int, ...] = parse_sequence_arg( # type: ignore[no-redef]
|
|
|
|
option_ids
|
|
|
|
)
|
|
|
|
self.user: Optional[User] = user # type: ignore[no-redef]
|
|
|
|
|
|
|
|
self._id_attrs = (
|
|
|
|
self.poll_id,
|
|
|
|
self.option_ids,
|
|
|
|
self.user,
|
|
|
|
self.voter_chat,
|
|
|
|
)
|
2020-07-14 21:33:56 +02:00
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2020-03-29 09:52:30 +02:00
|
|
|
@classmethod
|
2020-10-06 19:28:40 +02:00
|
|
|
def de_json(cls, data: Optional[JSONDict], bot: "Bot") -> Optional["PollAnswer"]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""See :meth:`telegram.TelegramObject.de_json`."""
|
|
|
|
data = cls._parse_data(data)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2020-03-29 09:52:30 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
|
|
|
data["user"] = User.de_json(data.get("user"), bot)
|
2023-09-03 13:43:44 +02:00
|
|
|
data["voter_chat"] = Chat.de_json(data.get("voter_chat"), bot)
|
2020-03-29 09:52:30 +02:00
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
return super().de_json(data=data, bot=bot)
|
2020-03-29 09:52:30 +02:00
|
|
|
|
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
class Poll(TelegramObject):
|
|
|
|
"""
|
|
|
|
This object contains information about a poll.
|
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`id` is equal.
|
|
|
|
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
Examples:
|
|
|
|
:any:`Poll Bot <examples.pollbot>`
|
2022-08-27 11:46:51 +02:00
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
Args:
|
|
|
|
id (:obj:`str`): Unique poll identifier.
|
2022-11-22 11:07:42 +01:00
|
|
|
question (:obj:`str`): Poll question, :tg-const:`telegram.Poll.MIN_QUESTION_LENGTH`-
|
|
|
|
:tg-const:`telegram.Poll.MAX_QUESTION_LENGTH` characters.
|
2023-02-05 18:09:55 +01:00
|
|
|
options (Sequence[:class:`~telegram.PollOption`]): List of poll options.
|
2022-12-15 15:00:36 +01:00
|
|
|
|
|
|
|
.. versionchanged:: 20.0
|
|
|
|
|sequenceclassargs|
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
is_closed (:obj:`bool`): :obj:`True`, if the poll is closed.
|
|
|
|
is_anonymous (:obj:`bool`): :obj:`True`, if the poll is anonymous.
|
2020-03-29 09:52:30 +02:00
|
|
|
type (:obj:`str`): Poll type, currently can be :attr:`REGULAR` or :attr:`QUIZ`.
|
Documentation Improvements (#2008)
* Minor doc updates, following official API docs
* Fix spelling in Defaults docstrings
* Clarify Changelog of v12.7 about aware dates
* Fix typo in CHANGES.rst (#2024)
* Fix PicklePersistence.flush() with only bot_data (#2017)
* Update pylint in pre-commit to fix CI (#2018)
* Add Filters.via_bot (#2009)
* feat: via_bot filter
also fixing a small mistake in the empty parameter of the user filter and improve docs slightly
* fix: forgot to set via_bot to None
* fix: redoing subclassing to copy paste solution
* Cosmetic changes
Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
* Update CHANGES.rst
Fixed Typo
Co-authored-by: Bibo-Joshi <hinrich.mahler@freenet.de>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
* Update downloads badge, add info on IRC Channel to Getting Help section
* Remove RegexHandler from ConversationHandlers Docs (#1973)
Replaced RegexHandler with MessageHandler, since the former is deprecated
* Fix Filters.via_bot docstrings
* Add notes on Markdown v1 being legacy mode
* Fixed typo in the Regex doc.. (#2036)
* Typo: Spelling
* Minor cleanup from #2043
* Document CommandHandler ignoring channel posts
* Doc fixes for a few telegram.ext classes
* Doc fixes for most `telegram` classes.
* pep-8
forgot the hard wrap is at 99 chars, not 100!
fixed a few spelling mistakes too.
* Address review and made rendering of booleans consistent
True, False, None are now rendered with ``bool`` wherever they weren't in telegram and telegram.ext classes.
* Few doc fixes for inline* classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram/files classes
As usual, docs were cross-checked with official tg api docs.
* Doc fixes for telegram.Game
Mostly just added hyperlinks. And fixed message length doc.
As usual, docs were cross-checked with official tg api docs.
* Very minor doc fix for passportfile.py and passportelementerrors.py
Didn't bother changing too much since this seems to be a custom implementation.
* Doc fixes for telegram.payments
As usual, cross-checked with official bot api docs.
* Address review 2
Few tiny other fixes too.
* Changed from ``True/False/None`` to :obj:`True/False/None` project-wide.
Few tiny other doc fixes too.
Co-authored-by: Robert Geislinger <mitachundkrach@gmail.com>
Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: GauthamramRavichandran <30320759+GauthamramRavichandran@users.noreply.github.com>
Co-authored-by: Mahesh19 <maheshvagicherla99438@gmail.com>
Co-authored-by: hoppingturtles <ilovebhagwan@gmail.com>
2020-08-24 19:35:57 +02:00
|
|
|
allows_multiple_answers (:obj:`bool`): :obj:`True`, if the poll allows multiple answers.
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
correct_option_id (:obj:`int`, optional): A zero based identifier of the correct answer
|
|
|
|
option. Available only for closed polls in the quiz mode, which were sent
|
|
|
|
(not forwarded), by the bot or to a private chat with the bot.
|
2020-05-02 11:56:52 +02:00
|
|
|
explanation (:obj:`str`, optional): Text that is shown when a user chooses an incorrect
|
2022-11-22 11:07:42 +01:00
|
|
|
answer or taps on the lamp icon in a quiz-style poll,
|
|
|
|
0-:tg-const:`telegram.Poll.MAX_EXPLANATION_LENGTH` characters.
|
2022-12-15 15:00:36 +01:00
|
|
|
explanation_entities (Sequence[:class:`telegram.MessageEntity`], optional): Special
|
|
|
|
entities like usernames, URLs, bot commands, etc. that appear in the
|
|
|
|
:attr:`explanation`. This list is empty if the message does not contain explanation
|
|
|
|
entities.
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
|
|
|
|
.. versionchanged:: 20.0
|
2022-12-15 15:00:36 +01:00
|
|
|
|
|
|
|
* This attribute is now always a (possibly empty) list and never :obj:`None`.
|
|
|
|
* |sequenceclassargs|
|
2020-05-02 11:56:52 +02:00
|
|
|
open_period (:obj:`int`, optional): Amount of time in seconds the poll will be active
|
|
|
|
after creation.
|
|
|
|
close_date (:obj:`datetime.datetime`, optional): Point in time (Unix timestamp) when the
|
|
|
|
poll will be automatically closed. Converted to :obj:`datetime.datetime`.
|
2019-08-23 21:20:41 +02:00
|
|
|
|
2023-05-07 15:31:23 +02:00
|
|
|
.. versionchanged:: 20.3
|
2023-04-18 16:16:23 +02:00
|
|
|
|datetime_localization|
|
|
|
|
|
2021-12-13 18:21:38 +01:00
|
|
|
Attributes:
|
|
|
|
id (:obj:`str`): Unique poll identifier.
|
2022-11-22 11:07:42 +01:00
|
|
|
question (:obj:`str`): Poll question, :tg-const:`telegram.Poll.MIN_QUESTION_LENGTH`-
|
|
|
|
:tg-const:`telegram.Poll.MAX_QUESTION_LENGTH` characters.
|
2023-02-05 18:09:55 +01:00
|
|
|
options (Tuple[:class:`~telegram.PollOption`]): List of poll options.
|
2022-12-15 15:00:36 +01:00
|
|
|
|
|
|
|
.. versionchanged:: 20.0
|
|
|
|
|tupleclassattrs|
|
2021-12-13 18:21:38 +01:00
|
|
|
total_voter_count (:obj:`int`): Total number of users that voted in the poll.
|
|
|
|
is_closed (:obj:`bool`): :obj:`True`, if the poll is closed.
|
|
|
|
is_anonymous (:obj:`bool`): :obj:`True`, if the poll is anonymous.
|
|
|
|
type (:obj:`str`): Poll type, currently can be :attr:`REGULAR` or :attr:`QUIZ`.
|
|
|
|
allows_multiple_answers (:obj:`bool`): :obj:`True`, if the poll allows multiple answers.
|
2022-11-22 10:39:20 +01:00
|
|
|
correct_option_id (:obj:`int`): Optional. A zero based identifier of the correct answer
|
Documentation Improvements (#3214, #3217, #3218, #3271, #3289, #3292, #3303, #3312, #3306, #3319, #3326, #3314)
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
Co-authored-by: Simon Fong <44134941+simonfongnt@users.noreply.github.com>
Co-authored-by: Piotr Rogulski <rivinek@gmail.com>
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com>
Co-authored-by: Or Bin <or@raftt.io>
Co-authored-by: Sandro <j32g7f67hb@liamekaens.com>
Co-authored-by: Hatim Zahid <63000127+HatimZ@users.noreply.github.com>
Co-authored-by: Robi <53259730+RobiMez@users.noreply.github.com>
Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com>
2022-11-15 09:06:23 +01:00
|
|
|
option. Available only for closed polls in the quiz mode, which were sent
|
|
|
|
(not forwarded), by the bot or to a private chat with the bot.
|
2021-12-13 18:21:38 +01:00
|
|
|
explanation (:obj:`str`): Optional. Text that is shown when a user chooses an incorrect
|
2022-11-22 11:07:42 +01:00
|
|
|
answer or taps on the lamp icon in a quiz-style poll,
|
|
|
|
0-:tg-const:`telegram.Poll.MAX_EXPLANATION_LENGTH` characters.
|
2022-12-15 15:00:36 +01:00
|
|
|
explanation_entities (Tuple[:class:`telegram.MessageEntity`]): Special entities
|
2021-12-13 18:21:38 +01:00
|
|
|
like usernames, URLs, bot commands, etc. that appear in the :attr:`explanation`.
|
2022-05-26 19:15:54 +02:00
|
|
|
This list is empty if the message does not contain explanation entities.
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
.. versionchanged:: 20.0
|
|
|
|
|tupleclassattrs|
|
|
|
|
|
2022-05-26 19:15:54 +02:00
|
|
|
.. versionchanged:: 20.0
|
|
|
|
This attribute is now always a (possibly empty) list and never :obj:`None`.
|
2021-12-13 18:21:38 +01:00
|
|
|
open_period (:obj:`int`): Optional. Amount of time in seconds the poll will be active
|
|
|
|
after creation.
|
|
|
|
close_date (:obj:`datetime.datetime`): Optional. Point in time when the poll will be
|
|
|
|
automatically closed.
|
|
|
|
|
2023-05-07 15:31:23 +02:00
|
|
|
.. versionchanged:: 20.3
|
2023-04-18 16:16:23 +02:00
|
|
|
|datetime_localization|
|
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
"""
|
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = (
|
|
|
|
"total_voter_count",
|
|
|
|
"allows_multiple_answers",
|
|
|
|
"open_period",
|
|
|
|
"options",
|
|
|
|
"type",
|
|
|
|
"explanation_entities",
|
|
|
|
"is_anonymous",
|
|
|
|
"close_date",
|
|
|
|
"is_closed",
|
|
|
|
"id",
|
|
|
|
"explanation",
|
|
|
|
"question",
|
|
|
|
"correct_option_id",
|
|
|
|
)
|
|
|
|
|
2020-05-02 11:56:52 +02:00
|
|
|
def __init__(
|
2020-11-05 18:12:01 +01:00
|
|
|
self,
|
2022-10-07 11:51:53 +02:00
|
|
|
id: str, # pylint: disable=redefined-builtin
|
2020-10-06 19:28:40 +02:00
|
|
|
question: str,
|
2022-12-15 15:00:36 +01:00
|
|
|
options: Sequence[PollOption],
|
2020-10-06 19:28:40 +02:00
|
|
|
total_voter_count: int,
|
|
|
|
is_closed: bool,
|
|
|
|
is_anonymous: bool,
|
2021-10-08 08:17:00 +02:00
|
|
|
type: str, # pylint: disable=redefined-builtin
|
2020-10-06 19:28:40 +02:00
|
|
|
allows_multiple_answers: bool,
|
2023-05-18 07:57:59 +02:00
|
|
|
correct_option_id: Optional[int] = None,
|
|
|
|
explanation: Optional[str] = None,
|
|
|
|
explanation_entities: Optional[Sequence[MessageEntity]] = None,
|
|
|
|
open_period: Optional[int] = None,
|
|
|
|
close_date: Optional[datetime.datetime] = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
*,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-10-06 19:28:40 +02:00
|
|
|
):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2023-09-09 23:12:30 +02:00
|
|
|
self.id: str = id
|
2023-02-02 18:55:07 +01:00
|
|
|
self.question: str = question
|
|
|
|
self.options: Tuple[PollOption, ...] = parse_sequence_arg(options)
|
|
|
|
self.total_voter_count: int = total_voter_count
|
|
|
|
self.is_closed: bool = is_closed
|
|
|
|
self.is_anonymous: bool = is_anonymous
|
|
|
|
self.type: str = enum.get_member(constants.PollType, type, type)
|
|
|
|
self.allows_multiple_answers: bool = allows_multiple_answers
|
|
|
|
self.correct_option_id: Optional[int] = correct_option_id
|
|
|
|
self.explanation: Optional[str] = explanation
|
|
|
|
self.explanation_entities: Tuple[MessageEntity, ...] = parse_sequence_arg(
|
|
|
|
explanation_entities
|
|
|
|
)
|
|
|
|
self.open_period: Optional[int] = open_period
|
|
|
|
self.close_date: Optional[datetime.datetime] = close_date
|
2019-08-23 21:20:41 +02:00
|
|
|
|
|
|
|
self._id_attrs = (self.id,)
|
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
@classmethod
|
2020-10-06 19:28:40 +02:00
|
|
|
def de_json(cls, data: Optional[JSONDict], bot: "Bot") -> Optional["Poll"]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""See :meth:`telegram.TelegramObject.de_json`."""
|
|
|
|
data = cls._parse_data(data)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
2023-04-18 16:16:23 +02:00
|
|
|
# Get the local timezone from the bot if it has defaults
|
|
|
|
loc_tzinfo = extract_tzinfo_from_defaults(bot)
|
|
|
|
|
2019-08-23 21:20:41 +02:00
|
|
|
data["options"] = [PollOption.de_json(option, bot) for option in data["options"]]
|
2020-05-02 11:56:52 +02:00
|
|
|
data["explanation_entities"] = MessageEntity.de_list(data.get("explanation_entities"), bot)
|
2023-04-18 16:16:23 +02:00
|
|
|
data["close_date"] = from_timestamp(data.get("close_date"), tzinfo=loc_tzinfo)
|
2019-08-23 21:20:41 +02:00
|
|
|
|
2022-10-07 11:51:53 +02:00
|
|
|
return super().de_json(data=data, bot=bot)
|
2019-08-23 21:20:41 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def parse_explanation_entity(self, entity: MessageEntity) -> str:
|
2020-05-02 11:56:52 +02:00
|
|
|
"""Returns the text from a given :class:`telegram.MessageEntity`.
|
|
|
|
|
|
|
|
Note:
|
|
|
|
This method is present because Telegram calculates the offset and length in
|
|
|
|
UTF-16 codepoint pairs, which some versions of Python don't handle automatically.
|
|
|
|
(That is, you can't just slice ``Message.text`` with the offset and length.)
|
|
|
|
|
|
|
|
Args:
|
|
|
|
entity (:class:`telegram.MessageEntity`): The entity to extract the text from. It must
|
|
|
|
be an entity that belongs to this message.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`str`: The text of the given entity.
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
Raises:
|
|
|
|
RuntimeError: If the poll has no explanation.
|
|
|
|
|
2020-05-02 11:56:52 +02:00
|
|
|
"""
|
2020-10-06 19:28:40 +02:00
|
|
|
if not self.explanation:
|
|
|
|
raise RuntimeError("This Poll has no 'explanation'.")
|
|
|
|
|
2020-10-31 16:33:34 +01:00
|
|
|
entity_text = self.explanation.encode("utf-16-le")
|
|
|
|
entity_text = entity_text[entity.offset * 2 : (entity.offset + entity.length) * 2]
|
2020-05-02 11:56:52 +02:00
|
|
|
|
|
|
|
return entity_text.decode("utf-16-le")
|
|
|
|
|
2023-05-18 07:57:59 +02:00
|
|
|
def parse_explanation_entities(
|
|
|
|
self, types: Optional[List[str]] = None
|
|
|
|
) -> Dict[MessageEntity, str]:
|
2020-05-02 11:56:52 +02:00
|
|
|
"""
|
|
|
|
Returns a :obj:`dict` that maps :class:`telegram.MessageEntity` to :obj:`str`.
|
|
|
|
It contains entities from this polls explanation filtered by their ``type`` attribute as
|
|
|
|
the key, and the text that each entity belongs to as the value of the :obj:`dict`.
|
|
|
|
|
|
|
|
Note:
|
|
|
|
This method should always be used instead of the :attr:`explanation_entities`
|
|
|
|
attribute, since it calculates the correct substring from the message text based on
|
|
|
|
UTF-16 codepoints. See :attr:`parse_explanation_entity` for more info.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
types (List[:obj:`str`], optional): List of ``MessageEntity`` types as strings. If the
|
|
|
|
``type`` attribute of an entity is contained in this list, it will be returned.
|
|
|
|
Defaults to :attr:`telegram.MessageEntity.ALL_TYPES`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Dict[:class:`telegram.MessageEntity`, :obj:`str`]: A dictionary of entities mapped to
|
|
|
|
the text that belongs to them, calculated based on UTF-16 codepoints.
|
|
|
|
|
|
|
|
"""
|
|
|
|
if types is None:
|
|
|
|
types = MessageEntity.ALL_TYPES
|
|
|
|
|
|
|
|
return {
|
|
|
|
entity: self.parse_explanation_entity(entity)
|
2022-05-26 19:15:54 +02:00
|
|
|
for entity in self.explanation_entities
|
2020-10-06 19:28:40 +02:00
|
|
|
if entity.type in types
|
2020-05-02 11:56:52 +02:00
|
|
|
}
|
|
|
|
|
2023-06-29 18:17:47 +02:00
|
|
|
REGULAR: Final[str] = constants.PollType.REGULAR
|
2021-10-19 18:28:19 +02:00
|
|
|
""":const:`telegram.constants.PollType.REGULAR`"""
|
2023-06-29 18:17:47 +02:00
|
|
|
QUIZ: Final[str] = constants.PollType.QUIZ
|
2021-10-19 18:28:19 +02:00
|
|
|
""":const:`telegram.constants.PollType.QUIZ`"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_EXPLANATION_LENGTH: Final[int] = constants.PollLimit.MAX_EXPLANATION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_EXPLANATION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_EXPLANATION_LINE_FEEDS: Final[int] = constants.PollLimit.MAX_EXPLANATION_LINE_FEEDS
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_EXPLANATION_LINE_FEEDS`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_OPEN_PERIOD: Final[int] = constants.PollLimit.MIN_OPEN_PERIOD
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MIN_OPEN_PERIOD`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_OPEN_PERIOD: Final[int] = constants.PollLimit.MAX_OPEN_PERIOD
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_OPEN_PERIOD`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_QUESTION_LENGTH: Final[int] = constants.PollLimit.MIN_QUESTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MIN_QUESTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_QUESTION_LENGTH: Final[int] = constants.PollLimit.MAX_QUESTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_QUESTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_OPTION_LENGTH: Final[int] = constants.PollLimit.MIN_OPTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MIN_OPTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_OPTION_LENGTH: Final[int] = constants.PollLimit.MAX_OPTION_LENGTH
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_OPTION_LENGTH`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_OPTION_NUMBER: Final[int] = constants.PollLimit.MIN_OPTION_NUMBER
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MIN_OPTION_NUMBER`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_OPTION_NUMBER: Final[int] = constants.PollLimit.MAX_OPTION_NUMBER
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.PollLimit.MAX_OPTION_NUMBER`
|
2021-10-19 18:28:19 +02:00
|
|
|
|
2022-05-06 17:15:23 +02:00
|
|
|
.. versionadded:: 20.0
|
2021-10-19 18:28:19 +02:00
|
|
|
"""
|