2017-11-18 13:06:20 +00:00
|
|
|
package telebot
|
|
|
|
|
2017-11-25 14:22:13 +00:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
)
|
2017-11-18 18:16:16 +00:00
|
|
|
|
2017-11-25 14:22:13 +00:00
|
|
|
// Album lets you group multiple media (so-called InputMedia)
|
|
|
|
// into a single messsage.
|
|
|
|
//
|
|
|
|
// On older clients albums look like N regular messages.
|
|
|
|
type Album []InputMedia
|
|
|
|
|
|
|
|
// InputMedia is a generic type for all kinds of media you
|
|
|
|
// can put into an album.
|
|
|
|
type InputMedia interface {
|
|
|
|
// As some files must be uploaded (instead of referencing)
|
|
|
|
// outer layers of Telebot require it.
|
|
|
|
MediaFile() *File
|
2017-11-18 18:16:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Photo object represents a single photo file.
|
2017-11-18 13:06:20 +00:00
|
|
|
type Photo struct {
|
|
|
|
File
|
|
|
|
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
2020-02-29 17:27:45 +00:00
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-25 14:22:13 +00:00
|
|
|
type photoSize struct {
|
|
|
|
File
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MediaFile returns &Photo.File
|
|
|
|
func (p *Photo) MediaFile() *File {
|
|
|
|
return &p.File
|
|
|
|
}
|
|
|
|
|
2017-11-19 15:16:39 +00:00
|
|
|
// UnmarshalJSON is custom unmarshaller required to abstract
|
|
|
|
// away the hassle of treating different thumbnail sizes.
|
|
|
|
// Instead, Telebot chooses the hi-res one and just sticks to
|
|
|
|
// it.
|
|
|
|
//
|
|
|
|
// I really do find it a beautiful solution.
|
2017-11-18 18:16:16 +00:00
|
|
|
func (p *Photo) UnmarshalJSON(jsonStr []byte) error {
|
|
|
|
var hq photoSize
|
|
|
|
|
|
|
|
if jsonStr[0] == '{' {
|
|
|
|
if err := json.Unmarshal(jsonStr, &hq); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var sizes []photoSize
|
|
|
|
|
|
|
|
if err := json.Unmarshal(jsonStr, &sizes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
hq = sizes[len(sizes)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
p.File = hq.File
|
|
|
|
p.Width = hq.Width
|
|
|
|
p.Height = hq.Height
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-18 13:06:20 +00:00
|
|
|
// Audio object represents an audio file.
|
|
|
|
type Audio struct {
|
|
|
|
File
|
|
|
|
|
|
|
|
// Duration of the recording in seconds as defined by sender.
|
2017-11-25 14:22:13 +00:00
|
|
|
Duration int `json:"duration,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
|
|
|
Caption string `json:"caption,omitempty"`
|
2019-12-22 05:07:00 +00:00
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
2017-11-18 14:41:23 +00:00
|
|
|
Title string `json:"title,omitempty"`
|
|
|
|
Performer string `json:"performer,omitempty"`
|
|
|
|
MIME string `json:"mime_type,omitempty"`
|
2019-09-30 15:57:54 +00:00
|
|
|
FileName string `json:"file_name,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-20 06:11:21 +00:00
|
|
|
// MediaFile returns &Audio.File
|
|
|
|
func (a *Audio) MediaFile() *File {
|
|
|
|
return &a.File
|
|
|
|
}
|
|
|
|
|
2017-11-18 13:06:20 +00:00
|
|
|
// Document object represents a general file (as opposed to Photo or Audio).
|
|
|
|
// Telegram users can send files of any type of up to 1.5 GB in size.
|
|
|
|
type Document struct {
|
|
|
|
File
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
MIME string `json:"mime_type"`
|
2019-09-30 15:57:54 +00:00
|
|
|
FileName string `json:"file_name,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-20 06:11:21 +00:00
|
|
|
// MediaFile returns &Document.File
|
|
|
|
func (d *Document) MediaFile() *File {
|
|
|
|
return &d.File
|
|
|
|
}
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// Video object represents a video file.
|
|
|
|
type Video struct {
|
2017-11-25 14:22:13 +00:00
|
|
|
File
|
2017-11-18 13:06:20 +00:00
|
|
|
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
|
2017-11-25 14:22:13 +00:00
|
|
|
Duration int `json:"duration,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
2018-09-14 09:26:33 +00:00
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
|
|
|
SupportsStreaming bool `json:"supports_streaming,omitempty"`
|
|
|
|
MIME string `json:"mime_type,omitempty"`
|
2019-09-30 15:57:54 +00:00
|
|
|
FileName string `json:"file_name,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-25 14:22:13 +00:00
|
|
|
// MediaFile returns &Video.File
|
|
|
|
func (v *Video) MediaFile() *File {
|
|
|
|
return &v.File
|
|
|
|
}
|
|
|
|
|
2020-02-29 12:33:48 +00:00
|
|
|
// Animation object represents a animation file.
|
|
|
|
type Animation struct {
|
|
|
|
File
|
|
|
|
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
|
|
|
|
Duration int `json:"duration,omitempty"`
|
|
|
|
|
|
|
|
// (Optional)
|
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
|
|
|
MIME string `json:"mime_type,omitempty"`
|
|
|
|
FileName string `json:"file_name,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// MediaFile returns &Animation.File
|
2020-04-05 17:23:51 +00:00
|
|
|
func (a *Animation) MediaFile() *File {
|
|
|
|
return &a.File
|
2020-02-29 12:33:48 +00:00
|
|
|
}
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// Voice object represents a voice note.
|
|
|
|
type Voice struct {
|
|
|
|
File
|
2017-11-18 13:06:20 +00:00
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// Duration of the recording in seconds as defined by sender.
|
|
|
|
Duration int `json:"duration"`
|
2017-11-18 13:06:20 +00:00
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
|
|
|
MIME string `json:"mime_type,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// VideoNote represents a video message (available in Telegram apps
|
2017-11-18 13:06:20 +00:00
|
|
|
// as of v.4.0).
|
|
|
|
type VideoNote struct {
|
|
|
|
File
|
|
|
|
|
|
|
|
// Duration of the recording in seconds as defined by sender.
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
|
2017-11-18 14:41:23 +00:00
|
|
|
// (Optional)
|
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
2018-09-14 09:26:33 +00:00
|
|
|
Length int `json:"length,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Contact object represents a contact to Telegram user
|
|
|
|
type Contact struct {
|
|
|
|
PhoneNumber string `json:"phone_number"`
|
|
|
|
FirstName string `json:"first_name"`
|
2017-11-18 14:41:23 +00:00
|
|
|
|
|
|
|
// (Optional)
|
|
|
|
LastName string `json:"last_name"`
|
|
|
|
UserID int `json:"user_id,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Location object represents geographic position.
|
|
|
|
type Location struct {
|
2017-11-18 14:41:23 +00:00
|
|
|
// Latitude
|
2017-11-19 15:16:39 +00:00
|
|
|
Lat float32 `json:"latitude"`
|
2017-11-18 14:41:23 +00:00
|
|
|
// Longitude
|
2017-11-19 15:16:39 +00:00
|
|
|
Lng float32 `json:"longitude"`
|
2017-11-26 09:15:11 +00:00
|
|
|
|
|
|
|
// Period in seconds for which the location will be updated
|
|
|
|
// (see Live Locations, should be between 60 and 86400.)
|
|
|
|
LivePeriod int `json:"live_period,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Venue object represents a venue location with name, address and
|
|
|
|
// optional foursquare ID.
|
|
|
|
type Venue struct {
|
2017-11-18 14:41:23 +00:00
|
|
|
Location Location `json:"location"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
|
|
|
|
// (Optional)
|
2018-09-14 09:26:33 +00:00
|
|
|
FoursquareID string `json:"foursquare_id,omitempty"`
|
|
|
|
FoursquareType string `json:"foursquare_type,omitempty"`
|
2017-11-18 13:06:20 +00:00
|
|
|
}
|
2020-04-25 12:31:16 +00:00
|
|
|
|
2020-04-26 16:33:13 +00:00
|
|
|
// Dice object represents a dice with a random value
|
|
|
|
// from 1 to 6 for currently supported base emoji.
|
2020-04-25 12:31:16 +00:00
|
|
|
type Dice struct {
|
2020-04-25 12:59:53 +00:00
|
|
|
Type DiceType `json:"emoji"`
|
|
|
|
Value int `json:"value"`
|
2020-04-25 12:31:16 +00:00
|
|
|
}
|