forked from xelaj/mtproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mtproto_utils.go
96 lines (78 loc) · 2.52 KB
/
mtproto_utils.go
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright (c) 2020 KHS Films
//
// This file is a part of mtproto package.
// See https://github.com/xelaj/mtproto/blob/master/LICENSE for details
package mtproto
import (
"fmt"
"reflect"
"github.com/pkg/errors"
"github.com/xelaj/go-dry"
"github.com/xelaj/mtproto/internal/encoding/tl"
"github.com/xelaj/mtproto/internal/utils"
)
// мелкие методы, которые сделаны для понимания алгоритмов и кода вцелом
// waitAck добавляет в список id сообщения, которому нужно подтверждение
// возвращает true, если ранее этого id не было
func (m *MTProto) waitAck(msgID int64) bool {
return m.idsToAck.Add(int(msgID))
}
// gotAck удаляет элемент из списка id сообщений, на который ожидается ack.
// возвращается true, если id был найден
func (m *MTProto) gotAck(msgID int64) bool {
return m.idsToAck.Delete(int(msgID))
}
// resetAck сбрасывает целиком список сообщений, которым нужен ack
func (m *MTProto) resetAck() {
m.idsToAck.Reset()
}
// получает текущий идентификатор сессии
func (m *MTProto) GetSessionID() int64 {
return m.sessionId
}
// Получает lastSeqNo
func (m *MTProto) GetLastSeqNo() int32 {
return m.lastSeqNo
}
// получает соль
func (m *MTProto) GetServerSalt() int64 {
return m.serverSalt
}
// получает ключ авторизации
func (m *MTProto) GetAuthKey() []byte {
return m.authKey
}
func (m *MTProto) SetAuthKey(key []byte) {
m.authKey = key
m.authKeyHash = utils.AuthKeyHash(m.authKey)
}
func (m *MTProto) MakeRequest(msg tl.Object) (any, error) {
return m.makeRequest(msg)
}
func (m *MTProto) MakeRequestWithHintToDecoder(msg tl.Object, expectedTypes ...reflect.Type) (any, error) {
if len(expectedTypes) == 0 {
return nil, errors.New("expected a few hints. If you don't need it, use m.MakeRequest")
}
return m.makeRequest(msg, expectedTypes...)
}
func (m *MTProto) recoverGoroutine() {
if r := recover(); r != nil {
if m.RecoverFunc != nil {
fmt.Println(dry.StackTrace(0))
m.RecoverFunc(r)
} else {
panic(r)
}
}
}
func (m *MTProto) AddCustomServerRequestHandler(handler customHandlerFunc) {
m.serverRequestHandlers = append(m.serverRequestHandlers, handler)
}
func (m *MTProto) warnError(err error) {
if err == nil {
return
}
if m.Warnings != nil {
m.Warnings <- err
}
}