-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
handler.go
60 lines (52 loc) · 1.32 KB
/
handler.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
package e2e
import (
"context"
"sync"
"github.com/gotd/td/tg"
)
// Handler handles updates.
type handler struct {
messages *messageDatabase
ents *Entities
mux sync.Mutex
}
func newHandler() *handler {
return &handler{
messages: &messageDatabase{
channels: make(map[int64][]tg.MessageClass),
},
ents: NewEntities(),
}
}
func (h *handler) Handle(ctx context.Context, u tg.UpdatesClass) error {
switch u := u.(type) {
case *tg.Updates:
return h.handleUpdates(NewEntities().FromUpdates(u), u.Updates)
case *tg.UpdatesCombined:
return h.handleUpdates(NewEntities().FromUpdates(u), u.Updates)
default:
panic(u)
}
}
// HandleUpdates handler.
func (h *handler) handleUpdates(ents *Entities, upds []tg.UpdateClass) error {
h.mux.Lock()
defer h.mux.Unlock()
h.ents.Merge(ents)
for _, u := range upds {
switch u := u.(type) {
case *tg.UpdateNewMessage:
h.messages.common = append(h.messages.common, u.Message)
case *tg.UpdateNewEncryptedMessage:
h.messages.secret = append(h.messages.secret, u.Message)
case *tg.UpdateNewChannelMessage:
channelID := u.Message.(*tg.Message).PeerID.(*tg.PeerChannel).ChannelID
msgs := h.messages.channels[channelID]
msgs = append(msgs, u.Message)
h.messages.channels[channelID] = msgs
default:
panic("unexpected update type")
}
}
return nil
}