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.
120 lines
3.6 KiB
120 lines
3.6 KiB
3 years ago
|
package telebot
|
||
|
|
||
|
import "strconv"
|
||
|
|
||
|
// User object represents a Telegram user, bot.
|
||
|
type User struct {
|
||
|
ID int64 `json:"id"`
|
||
|
|
||
|
FirstName string `json:"first_name"`
|
||
|
LastName string `json:"last_name"`
|
||
|
Username string `json:"username"`
|
||
|
LanguageCode string `json:"language_code"`
|
||
|
IsBot bool `json:"is_bot"`
|
||
|
|
||
|
// Returns only in getMe
|
||
|
CanJoinGroups bool `json:"can_join_groups"`
|
||
|
CanReadMessages bool `json:"can_read_all_group_messages"`
|
||
|
SupportsInline bool `json:"supports_inline_queries"`
|
||
|
}
|
||
|
|
||
|
// Recipient returns user ID (see Recipient interface).
|
||
|
func (u *User) Recipient() string {
|
||
|
return strconv.FormatInt(u.ID, 10)
|
||
|
}
|
||
|
|
||
|
// Chat object represents a Telegram user, bot, group or a channel.
|
||
|
type Chat struct {
|
||
|
ID int64 `json:"id"`
|
||
|
|
||
|
// See ChatType and consts.
|
||
|
Type ChatType `json:"type"`
|
||
|
|
||
|
// Won't be there for ChatPrivate.
|
||
|
Title string `json:"title"`
|
||
|
|
||
|
FirstName string `json:"first_name"`
|
||
|
LastName string `json:"last_name"`
|
||
|
Username string `json:"username"`
|
||
|
|
||
|
// Still shows whether the user is a member
|
||
|
// of the chat at the moment of the request.
|
||
|
Still bool `json:"is_member,omitempty"`
|
||
|
|
||
|
// Returns only in getChat
|
||
|
Bio string `json:"bio,omitempty"`
|
||
|
Photo *ChatPhoto `json:"photo,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
InviteLink string `json:"invite_link,omitempty"`
|
||
|
PinnedMessage *Message `json:"pinned_message,omitempty"`
|
||
|
Permissions *Rights `json:"permissions,omitempty"`
|
||
|
SlowMode int `json:"slow_mode_delay,omitempty"`
|
||
|
StickerSet string `json:"sticker_set_name,omitempty"`
|
||
|
CanSetStickerSet bool `json:"can_set_sticker_set,omitempty"`
|
||
|
LinkedChatID int64 `json:"linked_chat_id,omitempty"`
|
||
|
ChatLocation *ChatLocation `json:"location,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ChatLocation struct {
|
||
|
Location Location `json:"location,omitempty"`
|
||
|
Address string `json:"address,omitempty"`
|
||
|
}
|
||
|
|
||
|
// ChatPhoto object represents a chat photo.
|
||
|
type ChatPhoto struct {
|
||
|
// File identifiers of small (160x160) chat photo
|
||
|
SmallFileID string `json:"small_file_id"`
|
||
|
SmallFileUniqueID string `json:"small_file_unique_id"`
|
||
|
|
||
|
// File identifiers of big (640x640) chat photo
|
||
|
BigFileID string `json:"big_file_id"`
|
||
|
BigFileUniqueID string `json:"big_file_unique_id"`
|
||
|
}
|
||
|
|
||
|
// Recipient returns chat ID (see Recipient interface).
|
||
|
func (c *Chat) Recipient() string {
|
||
|
return strconv.FormatInt(c.ID, 10)
|
||
|
}
|
||
|
|
||
|
// ChatMember object represents information about a single chat member.
|
||
|
type ChatMember struct {
|
||
|
Rights
|
||
|
|
||
|
User *User `json:"user"`
|
||
|
Role MemberStatus `json:"status"`
|
||
|
Title string `json:"custom_title"`
|
||
|
Anonymous bool `json:"is_anonymous"`
|
||
|
|
||
|
// Date when restrictions will be lifted for the user, unix time.
|
||
|
//
|
||
|
// If user is restricted for more than 366 days or less than
|
||
|
// 30 seconds from the current time, they are considered to be
|
||
|
// restricted forever.
|
||
|
//
|
||
|
// Use tb.Forever().
|
||
|
//
|
||
|
RestrictedUntil int64 `json:"until_date,omitempty"`
|
||
|
}
|
||
|
|
||
|
// ChatID represents a chat or an user integer ID, which can be used
|
||
|
// as recipient in bot methods. It is very useful in cases where
|
||
|
// you have special group IDs, for example in your config, and don't
|
||
|
// want to wrap it into *tb.Chat every time you send messages.
|
||
|
//
|
||
|
// Example:
|
||
|
//
|
||
|
// group := tb.ChatID(-100756389456)
|
||
|
// b.Send(group, "Hello!")
|
||
|
//
|
||
|
// type Config struct {
|
||
|
// AdminGroup tb.ChatID `json:"admin_group"`
|
||
|
// }
|
||
|
// b.Send(conf.AdminGroup, "Hello!")
|
||
|
//
|
||
|
type ChatID int64
|
||
|
|
||
|
// Recipient returns chat ID (see Recipient interface).
|
||
|
func (i ChatID) Recipient() string {
|
||
|
return strconv.FormatInt(int64(i), 10)
|
||
|
}
|