2015-07-06 13:46:19 +00:00
|
|
|
|
package telebot
|
|
|
|
|
|
2017-11-18 13:06:20 +00:00
|
|
|
|
// Option is a shorcut flag type for certain message features
|
|
|
|
|
// (so-called options). It means that instead of passing
|
|
|
|
|
// fully-fledged SendOptions* to Send(), you can use these
|
|
|
|
|
// flags instead.
|
|
|
|
|
//
|
|
|
|
|
// Supported options are defined as iota-constants.
|
2017-11-17 06:20:36 +00:00
|
|
|
|
type Option int
|
|
|
|
|
|
|
|
|
|
const (
|
2017-11-19 15:16:39 +00:00
|
|
|
|
// NoPreview = SendOptions.DisableWebPagePreview
|
2017-11-17 06:20:36 +00:00
|
|
|
|
NoPreview Option = iota
|
|
|
|
|
|
2017-11-19 15:16:39 +00:00
|
|
|
|
// Silent = SendOptions.DisableNotification
|
2017-11-17 06:20:36 +00:00
|
|
|
|
Silent
|
|
|
|
|
|
2017-11-19 15:16:39 +00:00
|
|
|
|
// ForceReply = ReplyMarkup.ForceReply
|
2017-11-17 06:20:36 +00:00
|
|
|
|
ForceReply
|
|
|
|
|
|
2017-11-19 15:16:39 +00:00
|
|
|
|
// OneTimeKeyboard = ReplyMarkup.OneTimeKeyboard
|
2017-11-17 06:20:36 +00:00
|
|
|
|
OneTimeKeyboard
|
|
|
|
|
)
|
|
|
|
|
|
2017-11-18 13:06:20 +00:00
|
|
|
|
// SendOptions has most complete control over in what way the message
|
|
|
|
|
// must be sent, providing an API-complete set of custom properties
|
|
|
|
|
// and options.
|
|
|
|
|
//
|
|
|
|
|
// Despite its power, SendOptions is rather inconvenient to use all
|
|
|
|
|
// the way through bot logic, so you might want to consider storing
|
|
|
|
|
// and re-using it somewhere or be using Option flags instead.
|
2015-07-06 13:46:19 +00:00
|
|
|
|
type SendOptions struct {
|
|
|
|
|
// If the message is a reply, original message.
|
2017-11-18 10:31:13 +00:00
|
|
|
|
ReplyTo *Message
|
2015-07-06 13:46:19 +00:00
|
|
|
|
|
2015-07-31 07:56:02 +00:00
|
|
|
|
// See ReplyMarkup struct definition.
|
2017-11-18 10:31:13 +00:00
|
|
|
|
ReplyMarkup *ReplyMarkup
|
2015-07-06 13:46:19 +00:00
|
|
|
|
|
|
|
|
|
// For text messages, disables previews for links in this message.
|
2017-11-18 10:31:13 +00:00
|
|
|
|
DisableWebPagePreview bool
|
2015-09-14 03:15:16 +00:00
|
|
|
|
|
2016-03-12 21:26:43 +00:00
|
|
|
|
// Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.
|
2017-11-18 10:31:13 +00:00
|
|
|
|
DisableNotification bool
|
2016-03-12 21:26:43 +00:00
|
|
|
|
|
2015-09-14 03:15:16 +00:00
|
|
|
|
// ParseMode controls how client apps render your message.
|
2017-11-18 10:31:13 +00:00
|
|
|
|
ParseMode ParseMode
|
2015-07-06 13:46:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-10 23:21:51 +00:00
|
|
|
|
func (og *SendOptions) copy() *SendOptions {
|
|
|
|
|
cp := *og
|
|
|
|
|
if cp.ReplyMarkup != nil {
|
|
|
|
|
cp.ReplyMarkup = cp.ReplyMarkup.copy()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &cp
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-18 13:06:20 +00:00
|
|
|
|
// ReplyMarkup controls two convenient options for bot-user communications
|
|
|
|
|
// such as reply keyboard and inline "keyboard" (a grid of buttons as a part
|
|
|
|
|
// of the message).
|
2015-07-31 07:56:02 +00:00
|
|
|
|
type ReplyMarkup struct {
|
2017-11-17 13:55:18 +00:00
|
|
|
|
// InlineKeyboard is a grid of InlineButtons displayed in the message.
|
|
|
|
|
//
|
|
|
|
|
// Note: DO NOT confuse with ReplyKeyboard and other keyboard properties!
|
|
|
|
|
InlineKeyboard [][]InlineButton `json:"inline_keyboard,omitempty"`
|
|
|
|
|
|
|
|
|
|
// ReplyKeyboard is a grid, consisting of keyboard buttons.
|
2015-07-31 07:56:02 +00:00
|
|
|
|
//
|
|
|
|
|
// Note: you don't need to set HideCustomKeyboard field to show custom keyboard.
|
2017-11-28 22:15:50 +00:00
|
|
|
|
ReplyKeyboard [][]ReplyButton `json:"keyboard,omitempty"`
|
2016-04-21 20:31:30 +00:00
|
|
|
|
|
2017-11-19 15:16:39 +00:00
|
|
|
|
// ForceReply forces Telegram clients to display
|
|
|
|
|
// a reply interface to the user (act as if the user
|
|
|
|
|
// has selected the bot‘s message and tapped "Reply").
|
|
|
|
|
ForceReply bool `json:"force_reply,omitempty"`
|
|
|
|
|
|
2015-07-31 07:56:02 +00:00
|
|
|
|
// Requests clients to resize the keyboard vertically for optimal fit
|
2017-11-17 13:55:18 +00:00
|
|
|
|
// (e.g. make the keyboard smaller if there are just two rows of buttons).
|
|
|
|
|
//
|
2015-07-31 07:56:02 +00:00
|
|
|
|
// Defaults to false, in which case the custom keyboard is always of the
|
|
|
|
|
// same height as the app's standard keyboard.
|
2017-11-17 13:55:18 +00:00
|
|
|
|
ResizeReplyKeyboard bool `json:"resize_keyboard,omitempty"`
|
2015-07-31 07:56:02 +00:00
|
|
|
|
|
2017-11-17 13:55:18 +00:00
|
|
|
|
// Requests clients to hide the reply keyboard as soon as it's been used.
|
|
|
|
|
//
|
2017-11-17 06:20:36 +00:00
|
|
|
|
// Defaults to false.
|
|
|
|
|
OneTimeKeyboard bool `json:"one_time_keyboard,omitempty"`
|
2015-07-31 07:56:02 +00:00
|
|
|
|
|
2017-12-30 15:42:02 +00:00
|
|
|
|
// Requests clients to remove the reply keyboard.
|
|
|
|
|
//
|
|
|
|
|
// Dafaults to false.
|
|
|
|
|
ReplyKeyboardRemove bool `json:"remove_keyboard,omitempty"`
|
|
|
|
|
|
2015-07-06 13:46:19 +00:00
|
|
|
|
// Use this param if you want to force reply from
|
|
|
|
|
// specific users only.
|
|
|
|
|
//
|
|
|
|
|
// Targets:
|
|
|
|
|
// 1) Users that are @mentioned in the text of the Message object;
|
|
|
|
|
// 2) If the bot's message is a reply (has SendOptions.ReplyTo),
|
|
|
|
|
// sender of the original message.
|
2015-07-31 07:56:02 +00:00
|
|
|
|
Selective bool `json:"selective,omitempty"`
|
2015-07-06 13:46:19 +00:00
|
|
|
|
}
|
2017-11-18 13:06:20 +00:00
|
|
|
|
|
2017-12-10 23:21:51 +00:00
|
|
|
|
func (og *ReplyMarkup) copy() *ReplyMarkup {
|
|
|
|
|
cp := *og
|
|
|
|
|
|
|
|
|
|
cp.ReplyKeyboard = make([][]ReplyButton, len(og.ReplyKeyboard))
|
|
|
|
|
for i, row := range og.ReplyKeyboard {
|
|
|
|
|
cp.ReplyKeyboard[i] = make([]ReplyButton, len(row))
|
|
|
|
|
for j, btn := range row {
|
|
|
|
|
cp.ReplyKeyboard[i][j] = btn
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cp.InlineKeyboard = make([][]InlineButton, len(og.InlineKeyboard))
|
|
|
|
|
for i, row := range og.InlineKeyboard {
|
|
|
|
|
cp.InlineKeyboard[i] = make([]InlineButton, len(row))
|
|
|
|
|
for j, btn := range row {
|
|
|
|
|
cp.InlineKeyboard[i][j] = btn
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &cp
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-28 22:15:50 +00:00
|
|
|
|
// ReplyButton represents a button displayed in reply-keyboard.
|
2017-11-18 14:41:23 +00:00
|
|
|
|
//
|
|
|
|
|
// Set either Contact or Location to true in order to request
|
|
|
|
|
// sensitive info, such as user's phone number or current location.
|
2017-11-27 14:19:42 +00:00
|
|
|
|
// (Available in private chats only.)
|
2017-11-28 22:15:50 +00:00
|
|
|
|
type ReplyButton struct {
|
2017-11-18 13:06:20 +00:00
|
|
|
|
Text string `json:"text"`
|
|
|
|
|
|
|
|
|
|
Contact bool `json:"request_contact,omitempty"`
|
|
|
|
|
Location bool `json:"request_location,omitempty"`
|
2017-12-11 22:27:09 +00:00
|
|
|
|
|
2017-12-11 23:30:05 +00:00
|
|
|
|
Action func(*Callback) `json:"-"`
|
2017-11-18 13:06:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// InlineKeyboardMarkup represents an inline keyboard that appears
|
|
|
|
|
// right next to the message it belongs to.
|
|
|
|
|
type InlineKeyboardMarkup struct {
|
|
|
|
|
// Array of button rows, each represented by
|
|
|
|
|
// an Array of KeyboardButton objects.
|
|
|
|
|
InlineKeyboard [][]InlineButton `json:"inline_keyboard,omitempty"`
|
|
|
|
|
}
|