You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
3 years ago
|
package mtproto
|
||
|
|
||
|
import (
|
||
|
"github.com/go-faster/errors"
|
||
|
"go.uber.org/zap"
|
||
|
|
||
|
"github.com/gotd/td/bin"
|
||
|
"github.com/gotd/td/internal/mt"
|
||
|
"github.com/gotd/td/internal/proto"
|
||
|
"github.com/gotd/td/tgerr"
|
||
|
)
|
||
|
|
||
|
func (c *Conn) handleResult(b *bin.Buffer) error {
|
||
|
// Response to an RPC query.
|
||
|
var res proto.Result
|
||
|
if err := res.Decode(b); err != nil {
|
||
|
return errors.Wrap(err, "decode")
|
||
|
}
|
||
|
|
||
|
// Now b contains result message.
|
||
|
b.ResetTo(res.Result)
|
||
|
|
||
|
msgID := zap.Int64("msg_id", res.RequestMessageID)
|
||
|
c.logWithBuffer(b).Debug("Handle result", msgID)
|
||
|
|
||
|
// Handling gzipped results.
|
||
|
id, err := b.PeekID()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if id == proto.GZIPTypeID {
|
||
|
content, err := gzip(b)
|
||
|
if err != nil {
|
||
|
return errors.Wrap(err, "decompress")
|
||
|
}
|
||
|
|
||
|
// Replacing buffer so callback will deal with uncompressed data.
|
||
|
b = content
|
||
|
c.logWithBuffer(b).Debug("Decompressed", msgID)
|
||
|
|
||
|
// Replacing id with inner id if error is compressed for any reason.
|
||
|
if id, err = b.PeekID(); err != nil {
|
||
|
return errors.Wrap(err, "peek id")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if id == mt.RPCErrorTypeID {
|
||
|
var rpcErr mt.RPCError
|
||
|
if err := rpcErr.Decode(b); err != nil {
|
||
|
return errors.Wrap(err, "error decode")
|
||
|
}
|
||
|
|
||
|
c.log.Debug("Got error", msgID,
|
||
|
zap.Int("err_code", rpcErr.ErrorCode),
|
||
|
zap.String("err_msg", rpcErr.ErrorMessage),
|
||
|
)
|
||
|
c.rpc.NotifyError(res.RequestMessageID, tgerr.New(rpcErr.ErrorCode, rpcErr.ErrorMessage))
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
if id == mt.PongTypeID {
|
||
|
return c.handlePong(b)
|
||
|
}
|
||
|
|
||
|
return c.rpc.NotifyResult(res.RequestMessageID, b)
|
||
|
}
|