2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-29 13:27:47 +00:00

Add Poll and PollAnswer types

This commit is contained in:
Dan 2018-12-22 23:54:18 +01:00
parent 77f15af880
commit aef02f049c
2 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,79 @@
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram 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.
#
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from typing import List
import pyrogram
from pyrogram.api import types
from .poll_answer import PollAnswer
from ..pyrogram_type import PyrogramType
class Poll(PyrogramType):
def __init__(self,
*,
client: "pyrogram.client.ext.BaseClient",
id: int,
closed: bool,
question: str,
answers: List[PollAnswer],
answer_chosen: int = None,
total_voters: int):
super().__init__(client)
self.id = id
self.closed = closed
self.question = question
self.answers = answers
self.answer_chosen = answer_chosen
self.total_voters = total_voters
@staticmethod
def _parse(client, media_poll: types.MessageMediaPoll) -> "Poll":
poll = media_poll.poll
results = media_poll.results.results
total_voters = media_poll.results.total_voters
answer_chosen = None
answers = []
for i, answer in enumerate(poll.answers):
voters = None
if results:
result = results[i]
voters = result.voters
if result.chosen:
answer_chosen = i
answers.append(PollAnswer(
text=answer.text,
voters=voters,
client=client
))
return Poll(
id=poll.id,
closed=poll.closed,
question=poll.question,
answers=answers,
answer_chosen=answer_chosen,
total_voters=total_voters,
client=client
)

View File

@ -0,0 +1,32 @@
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram 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.
#
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import pyrogram
from ..pyrogram_type import PyrogramType
class PollAnswer(PyrogramType):
def __init__(self,
*,
client: "pyrogram.client.ext.BaseClient",
text: str,
voters: int = None):
super().__init__(client)
self.text = text
self.voters = voters