-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
typing.go
63 lines (51 loc) · 1.47 KB
/
typing.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
package message
import (
"context"
"github.com/go-faster/errors"
"github.com/gotd/td/tg"
)
// TypingActionBuilder is a helper to create and send typing actions.
//
// See https://core.telegram.org/method/messages.setTyping.
//
// See https://core.telegram.org/type/SendMessageAction.
type TypingActionBuilder struct {
sender *Sender
peer peerPromise
topMsgID int
}
// ThreadID sets thread ID to send.
func (b *TypingActionBuilder) ThreadID(id int) *TypingActionBuilder {
b.topMsgID = id
return b
}
// ThreadMsg sets message's ID as thread ID to send.
func (b *TypingActionBuilder) ThreadMsg(msg tg.MessageClass) *TypingActionBuilder {
return b.ThreadID(msg.GetID())
}
func (b *TypingActionBuilder) send(ctx context.Context, action tg.SendMessageActionClass) error {
p, err := b.peer(ctx)
if err != nil {
return errors.Wrap(err, "peer")
}
if err := b.sender.setTyping(ctx, &tg.MessagesSetTypingRequest{
Peer: p,
TopMsgID: b.topMsgID,
Action: action,
}); err != nil {
return errors.Wrap(err, "set typing")
}
return nil
}
// Custom sends given action.
func (b *TypingActionBuilder) Custom(ctx context.Context, action tg.SendMessageActionClass) error {
return b.send(ctx, action)
}
//go:generate go run github.com/gotd/td/telegram/message/internal/mktyping -output typing.gen.go
// TypingAction creates TypingActionBuilder.
func (b *RequestBuilder) TypingAction() *TypingActionBuilder {
return &TypingActionBuilder{
sender: b.sender,
peer: b.peer,
}
}