mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
"""
|
|
This module holds all the base and automatically generated errors that the
|
|
Telegram API has. See telethon_generator/errors.json for more.
|
|
"""
|
|
import re
|
|
|
|
from .common import (
|
|
ReadCancelledError, TypeNotFoundError, InvalidChecksumError,
|
|
InvalidBufferError, SecurityError, CdnFileTamperedError,
|
|
AlreadyInConversationError, MultiError
|
|
)
|
|
|
|
# This imports the base errors too, as they're imported there
|
|
from .rpcbaseerrors import *
|
|
from .rpcerrorlist import *
|
|
|
|
|
|
def rpc_message_to_error(rpc_error, request):
|
|
"""
|
|
Converts a Telegram's RPC Error to a Python error.
|
|
|
|
:param rpc_error: the RpcError instance.
|
|
:param request: the request that caused this error.
|
|
:return: the RPCError as a Python exception that represents this error.
|
|
"""
|
|
# Try to get the error by direct look-up, otherwise regex
|
|
cls = rpc_errors_dict.get(rpc_error.error_message, None)
|
|
if cls:
|
|
return cls(request)
|
|
|
|
for msg_regex, cls in rpc_errors_re:
|
|
m = re.match(msg_regex, rpc_error.error_message)
|
|
if m:
|
|
capture = int(m.group(1)) if m.groups() else None
|
|
return cls(request, capture=capture)
|
|
|
|
cls = base_errors.get(rpc_error.error_code)
|
|
if cls:
|
|
return cls(request, rpc_error.error_message)
|
|
|
|
return RPCError(request, rpc_error.error_message, rpc_error.error_code)
|