forked from pyrogram/pyrogram
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
160 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Pyrogram - Telegram MTProto API Client Library for Python | ||
# Copyright (C) 2017-present Dan <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 asyncio | ||
import base64 | ||
import datetime | ||
import logging | ||
from typing import List, Optional | ||
|
||
import pyrogram | ||
from pyrogram import filters, handlers, raw, types | ||
from pyrogram.methods.messages.inline_session import get_session | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
class QRLogin: | ||
def __init__(self, client, except_ids: List[int] = []): | ||
self.client = client | ||
self.request = raw.functions.auth.ExportLoginToken( | ||
api_id=client.api_id, | ||
api_hash=client.api_hash, | ||
except_ids=except_ids | ||
) | ||
self.r = None | ||
|
||
async def recreate(self): | ||
self.r = await self.client.invoke(self.request) | ||
|
||
return self.r | ||
|
||
async def wait(self, timeout: float = None) -> Optional["types.User"]: | ||
if timeout is None: | ||
if not self.r: | ||
raise asyncio.TimeoutError | ||
|
||
timeout = self.r.expires - int(datetime.datetime.now().timestamp()) | ||
|
||
event = asyncio.Event() | ||
|
||
async def raw_handler(client, update, users, chats): | ||
event.set() | ||
|
||
handler = self.client.add_handler( | ||
handlers.RawUpdateHandler( | ||
raw_handler, | ||
filters=filters.create( | ||
lambda _, __, u: isinstance(u, raw.types.UpdateLoginToken) | ||
) | ||
) | ||
) | ||
|
||
await self.client.dispatcher.start() | ||
|
||
try: | ||
await asyncio.wait_for(event.wait(), timeout=timeout) | ||
finally: | ||
self.client.remove_handler(*handler) | ||
await self.client.dispatcher.stop(clear=False) | ||
|
||
await self.recreate() | ||
|
||
if isinstance(self.r, raw.types.auth.LoginTokenMigrateTo): | ||
session = await get_session(self.client, self.r.dc_id) | ||
self.r = await session.invoke( | ||
raw.functions.auth.ImportLoginToken( | ||
token=self.token | ||
) | ||
) | ||
|
||
if isinstance(self.r, raw.types.auth.LoginTokenSuccess): | ||
user = types.User._parse(self.client, self.r.authorization.user) | ||
|
||
await self.client.storage.user_id(user.id) | ||
await self.client.storage.is_bot(False) | ||
|
||
return user | ||
|
||
raise TypeError('Unexpected login token response: {}'.format(self.r)) | ||
|
||
@property | ||
def url(self) -> str: | ||
return f"tg://login?token={base64.urlsafe_b64encode(self.r.token).decode('utf-8')}" |