forked from hydrogram/hydrogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsent_code.py
More file actions
68 lines (57 loc) · 2.39 KB
/
sent_code.py
File metadata and controls
68 lines (57 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Hydrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2023 Dan <https://github.com/delivrance>
# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
# This file is part of Hydrogram.
#
# Hydrogram 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.
#
# Hydrogram 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 Hydrogram. If not, see <http://www.gnu.org/licenses/>.
from __future__ import annotations
from hydrogram import enums, raw
from hydrogram.types.object import Object
class SentCode(Object):
"""Contains info on a sent confirmation code.
Parameters:
type (:obj:`~hydrogram.enums.SentCodeType`):
Type of the current sent code.
phone_code_hash (``str``):
Confirmation code identifier useful for the next authorization steps (either
:meth:`~hydrogram.Client.sign_in` or :meth:`~hydrogram.Client.sign_up`).
next_type (:obj:`~hydrogram.enums.NextCodeType`, *optional*):
Type of the next code to be sent with :meth:`~hydrogram.Client.resend_code`.
timeout (``int``, *optional*):
Delay in seconds before calling :meth:`~hydrogram.Client.resend_code`.
"""
def __init__(
self,
*,
type: enums.SentCodeType,
phone_code_hash: str,
next_type: enums.NextCodeType = None,
timeout: int | None = None,
):
super().__init__()
self.type = type
self.phone_code_hash = phone_code_hash
self.next_type = next_type
self.timeout = timeout
@staticmethod
def _parse(sent_code: raw.types.auth.SentCode) -> SentCode:
return SentCode(
type=enums.SentCodeType(type(sent_code.type)),
phone_code_hash=sent_code.phone_code_hash,
next_type=enums.NextCodeType(type(sent_code.next_type))
if sent_code.next_type
else None,
timeout=sent_code.timeout,
)