-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
inline.go
45 lines (37 loc) · 1.1 KB
/
inline.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
package message
import (
"context"
"github.com/go-faster/errors"
"github.com/gotd/td/telegram/message/inline"
"github.com/gotd/td/tg"
)
// InlineResult is a user method to send bot inline query result message.
func (b *Builder) InlineResult(ctx context.Context, id string, queryID int64, hideVia bool) (tg.UpdatesClass, error) {
p, err := b.peer(ctx)
if err != nil {
return nil, errors.Wrap(err, "peer")
}
upd, err := b.sender.sendInlineBotResult(ctx, &tg.MessagesSendInlineBotResultRequest{
Silent: b.silent,
Background: b.background,
ClearDraft: b.clearDraft,
HideVia: hideVia,
Peer: p,
ReplyToMsgID: b.replyToMsgID,
QueryID: queryID,
ID: id,
ScheduleDate: b.scheduleDate,
})
if err != nil {
return nil, errors.Wrap(err, "send inline bot result")
}
return upd, nil
}
// InlineUpdate is an abstraction for
type InlineUpdate interface {
GetQueryID() int64
}
// Inline creates new inline.ResultBuilder using given update.
func (s *Sender) Inline(upd InlineUpdate) *inline.ResultBuilder {
return inline.New(s.raw, s.rand, upd.GetQueryID())
}