2018-06-09 14:11:49 +03:00
|
|
|
from .gzippacked import GzipPacked
|
2018-06-21 10:52:47 +03:00
|
|
|
from .. import TLObject
|
2018-06-09 14:11:49 +03:00
|
|
|
from ..types import RpcError
|
|
|
|
|
|
|
|
|
2018-06-21 10:52:47 +03:00
|
|
|
class RpcResult(TLObject):
|
2018-06-09 14:11:49 +03:00
|
|
|
CONSTRUCTOR_ID = 0xf35c6d01
|
|
|
|
|
|
|
|
def __init__(self, req_msg_id, body, error):
|
|
|
|
self.req_msg_id = req_msg_id
|
|
|
|
self.body = body
|
|
|
|
self.error = error
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_reader(cls, reader):
|
|
|
|
msg_id = reader.read_long()
|
|
|
|
inner_code = reader.read_int(signed=False)
|
|
|
|
if inner_code == RpcError.CONSTRUCTOR_ID:
|
|
|
|
return RpcResult(msg_id, None, RpcError.from_reader(reader))
|
|
|
|
if inner_code == GzipPacked.CONSTRUCTOR_ID:
|
|
|
|
return RpcResult(msg_id, GzipPacked.from_reader(reader).data, None)
|
|
|
|
|
|
|
|
reader.seek(-4)
|
2018-06-25 13:54:33 +03:00
|
|
|
# This reader.read() will read more than necessary, but it's okay.
|
|
|
|
# We could make use of MessageContainer's length here, but since
|
|
|
|
# it's not necessary we don't need to care about it.
|
2018-06-09 14:11:49 +03:00
|
|
|
return RpcResult(msg_id, reader.read(), None)
|
2018-06-21 10:52:47 +03:00
|
|
|
|
|
|
|
def to_dict(self):
|
|
|
|
return {
|
|
|
|
'_': 'RpcResult',
|
|
|
|
'req_msg_id': self.req_msg_id,
|
|
|
|
'body': self.body,
|
|
|
|
'error': self.error
|
|
|
|
}
|