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.
46 lines
1.1 KiB
46 lines
1.1 KiB
3 years ago
|
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())
|
||
|
}
|