tg/button.go

123 lines
2.6 KiB
Go
Raw Normal View History

2023-08-19 09:12:26 +03:00
package tg
2023-07-09 01:28:59 +03:00
import (
apix "github.com/go-telegram-bot-api/telegram-bot-api/v5"
2023-12-12 19:32:30 +03:00
"fmt"
"crypto/rand"
"encoding/base64"
2023-07-09 01:28:59 +03:00
)
// The type wraps Telegram API's button to provide Action functionality.
type Button struct {
Text string
Data string
Url string
SendLocation bool
Action Action
2023-07-09 01:28:59 +03:00
}
type ButtonMap map[string]*Button
2023-07-09 01:28:59 +03:00
2023-09-19 15:21:33 +03:00
// Returns the only location button in the map.
func (btnMap ButtonMap) LocationButton() *Button {
for _, btn := range btnMap {
if btn.SendLocation {
return btn
}
}
return nil
}
2023-07-09 01:28:59 +03:00
// Represents the reply button row.
type ButtonRow []*Button
// Returns new button with the specified text and no action.
2023-12-12 19:32:30 +03:00
func NewButton(format string, v ...any) *Button {
return &Button{
2023-12-12 19:32:30 +03:00
Text: fmt.Sprintf(format, v...),
}
}
2023-12-12 19:32:30 +03:00
// Randomize buttons data to make the key unique.
func (btn *Button) Rand() *Button {
rData := make([]byte, 8)
rand.Read(rData)
data := make([]byte, base64.StdEncoding.EncodedLen(len(rData)))
base64.StdEncoding.Encode(data, rData)
btn.Data = string(data)
return btn
}
// Set the URL for the button. Only for inline buttons.
2023-12-12 23:47:32 +03:00
func (btn *Button) WithUrl(format string, v ...any) *Button {
btn.Url = fmt.Sprintf(format, v...)
return btn
}
// Set the action when pressing the button.
// By default is nil and does nothing.
func (btn *Button) WithAction(a Action) *Button {
btn.Action = a
return btn
}
2023-08-15 16:02:14 +03:00
func (btn *Button) WithData(dat string) *Button {
btn.Data = dat
return btn
}
// Sets whether the button must send owner's location.
func (btn *Button) WithSendLocation(ok bool) *Button {
btn.SendLocation = ok
return btn
}
func (btn *Button) ActionFunc(fn ActionFunc) *Button {
return btn.WithAction(fn)
}
func (btn *Button) Go(pth Path, args ...any) *Button {
return btn.WithAction(ScreenGo{
Path: pth,
Args: args,
})
2023-07-09 01:28:59 +03:00
}
func (btn *Button) ToTelegram() apix.KeyboardButton {
ret := apix.NewKeyboardButton(btn.Text)
if btn.SendLocation {
ret.RequestLocation = true
}
return ret
}
func (btn *Button) ToTelegramInline() apix.InlineKeyboardButton {
if btn.Data != "" {
return apix.NewInlineKeyboardButtonData(btn.Text, btn.Data)
}
if btn.Url != "" {
return apix.NewInlineKeyboardButtonURL(btn.Text, btn.Url)
}
// If no match then return the data one with data the same as the text.
return apix.NewInlineKeyboardButtonData(btn.Text, btn.Text)
}
2023-07-12 14:06:05 +03:00
// Return the key of the button to identify it by messages and callbacks.
func (btn *Button) Key() string {
if btn == nil {
return ""
}
2023-07-12 14:06:05 +03:00
if btn.Data != "" {
return btn.Data
}
2023-07-12 14:06:05 +03:00
// If no match then return the data one with data the same as the text.
return btn.Text
}
2023-07-09 01:28:59 +03:00
func NewButtonRow(btns ...*Button) ButtonRow {
return btns
}