2016-01-03 23:54:24 +01:00
|
|
|
// Package tgbotapi has functions and types used for interacting with
|
|
|
|
// the Telegram Bot API.
|
2015-06-26 06:26:24 +02:00
|
|
|
package tgbotapi
|
2015-06-25 07:34:05 +02:00
|
|
|
|
2015-09-07 18:20:43 +02:00
|
|
|
import (
|
2015-11-20 11:42:26 +01:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2017-10-29 22:03:48 +01:00
|
|
|
"io"
|
2015-11-20 11:42:26 +01:00
|
|
|
"io/ioutil"
|
2015-09-07 18:20:43 +02:00
|
|
|
"net/http"
|
2015-11-20 11:42:26 +01:00
|
|
|
"net/url"
|
|
|
|
"os"
|
2015-11-21 14:33:58 +01:00
|
|
|
"strings"
|
2015-11-21 15:39:19 +01:00
|
|
|
"time"
|
2016-12-15 22:51:58 +01:00
|
|
|
|
|
|
|
"github.com/technoweenie/multipartstreamer"
|
2015-09-07 18:20:43 +02:00
|
|
|
)
|
2015-07-27 00:16:45 +02:00
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// BotAPI allows you to interact with the Telegram Bot API.
|
2015-06-26 08:53:20 +02:00
|
|
|
type BotAPI struct {
|
2017-01-27 18:40:09 +01:00
|
|
|
Token string `json:"token"`
|
|
|
|
Debug bool `json:"debug"`
|
|
|
|
Buffer int `json:"buffer"`
|
|
|
|
|
2018-10-08 10:13:50 +02:00
|
|
|
Self User `json:"-"`
|
|
|
|
Client *http.Client `json:"-"`
|
2018-03-09 23:22:21 +01:00
|
|
|
shutdownChannel chan interface{}
|
2015-06-25 07:34:05 +02:00
|
|
|
}
|
|
|
|
|
2015-06-26 08:53:20 +02:00
|
|
|
// NewBotAPI creates a new BotAPI instance.
|
2016-01-03 23:54:24 +01:00
|
|
|
//
|
|
|
|
// It requires a token, provided by @BotFather on Telegram.
|
2015-07-28 13:00:31 +02:00
|
|
|
func NewBotAPI(token string) (*BotAPI, error) {
|
2015-07-28 18:18:50 +02:00
|
|
|
return NewBotAPIWithClient(token, &http.Client{})
|
2015-07-28 13:00:31 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// NewBotAPIWithClient creates a new BotAPI instance
|
|
|
|
// and allows you to pass a http.Client.
|
|
|
|
//
|
|
|
|
// It requires a token, provided by @BotFather on Telegram.
|
2015-07-28 18:14:13 +02:00
|
|
|
func NewBotAPIWithClient(token string, client *http.Client) (*BotAPI, error) {
|
2015-06-26 08:53:20 +02:00
|
|
|
bot := &BotAPI{
|
2018-10-08 10:13:50 +02:00
|
|
|
Token: token,
|
|
|
|
Client: client,
|
|
|
|
Buffer: 100,
|
2018-03-09 23:22:21 +01:00
|
|
|
shutdownChannel: make(chan interface{}),
|
2015-06-25 23:15:28 +02:00
|
|
|
}
|
2015-06-26 06:44:14 +02:00
|
|
|
|
|
|
|
self, err := bot.GetMe()
|
|
|
|
if err != nil {
|
2017-01-27 18:40:09 +01:00
|
|
|
return nil, err
|
2015-06-26 06:44:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bot.Self = self
|
|
|
|
|
2015-06-26 06:45:56 +02:00
|
|
|
return bot, nil
|
2015-06-25 23:15:28 +02:00
|
|
|
}
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2018-10-09 01:21:29 +02:00
|
|
|
func buildParams(in Params) (out url.Values) {
|
|
|
|
if in == nil {
|
|
|
|
return url.Values{}
|
|
|
|
}
|
|
|
|
|
|
|
|
out = url.Values{}
|
|
|
|
|
|
|
|
for key, value := range in {
|
|
|
|
out.Set(key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
// MakeRequest makes a request to a specific endpoint with our token.
|
2018-10-09 01:21:29 +02:00
|
|
|
func (bot *BotAPI) MakeRequest(endpoint string, params Params) (APIResponse, error) {
|
2017-12-29 08:38:45 +01:00
|
|
|
if bot.Debug {
|
2018-10-09 01:21:29 +02:00
|
|
|
log.Printf("Endpoint: %s, params: %v\n", endpoint, params)
|
2017-12-29 08:38:45 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
method := fmt.Sprintf(APIEndpoint, bot.Token, endpoint)
|
|
|
|
|
2018-10-09 01:21:29 +02:00
|
|
|
values := buildParams(params)
|
|
|
|
|
|
|
|
resp, err := bot.Client.PostForm(method, values)
|
2015-11-20 11:42:26 +01:00
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
var apiResp APIResponse
|
|
|
|
bytes, err := bot.decodeAPIResponse(resp.Body, &apiResp)
|
|
|
|
if err != nil {
|
|
|
|
return apiResp, err
|
|
|
|
}
|
2017-10-31 00:34:34 +01:00
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
if bot.Debug {
|
2017-12-29 08:38:45 +01:00
|
|
|
log.Printf("Endpoint: %s, response: %s\n", endpoint, string(bytes))
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
if !apiResp.Ok {
|
2018-03-26 19:22:16 +02:00
|
|
|
var parameters ResponseParameters
|
|
|
|
|
2018-03-04 12:10:17 +01:00
|
|
|
if apiResp.Parameters != nil {
|
|
|
|
parameters = *apiResp.Parameters
|
|
|
|
}
|
2018-03-26 19:22:16 +02:00
|
|
|
|
|
|
|
return apiResp, Error{
|
|
|
|
Message: apiResp.Description,
|
|
|
|
ResponseParameters: parameters,
|
|
|
|
}
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
return apiResp, nil
|
|
|
|
}
|
|
|
|
|
2017-11-07 03:17:06 +01:00
|
|
|
// decodeAPIResponse decode response and return slice of bytes if debug enabled.
|
|
|
|
// If debug disabled, just decode http.Response.Body stream to APIResponse struct
|
|
|
|
// for efficient memory usage
|
2017-10-29 22:03:48 +01:00
|
|
|
func (bot *BotAPI) decodeAPIResponse(responseBody io.Reader, resp *APIResponse) (_ []byte, err error) {
|
|
|
|
if !bot.Debug {
|
|
|
|
dec := json.NewDecoder(responseBody)
|
|
|
|
err = dec.Decode(resp)
|
|
|
|
return
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
// if debug, read reponse body
|
|
|
|
data, err := ioutil.ReadAll(responseBody)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2017-10-29 22:03:48 +01:00
|
|
|
err = json.Unmarshal(data, resp)
|
|
|
|
if err != nil {
|
|
|
|
return
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2017-10-31 00:34:34 +01:00
|
|
|
return data, nil
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UploadFile makes a request to the API with a file.
|
|
|
|
//
|
|
|
|
// Requires the parameter to hold the file not be in the params.
|
2016-01-03 23:54:24 +01:00
|
|
|
// File should be a string to a file path, a FileBytes struct,
|
2016-10-03 17:47:19 +02:00
|
|
|
// a FileReader struct, or a url.URL.
|
2016-01-03 23:54:24 +01:00
|
|
|
//
|
|
|
|
// Note that if your FileReader has a size set to -1, it will read
|
|
|
|
// the file into memory to calculate a size.
|
2018-10-09 01:21:29 +02:00
|
|
|
func (bot *BotAPI) UploadFile(endpoint string, params Params, fieldname string, file interface{}) (APIResponse, error) {
|
2015-11-20 11:42:26 +01:00
|
|
|
ms := multipartstreamer.New()
|
|
|
|
|
|
|
|
switch f := file.(type) {
|
|
|
|
case string:
|
2016-10-03 17:47:19 +02:00
|
|
|
ms.WriteFields(params)
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
fileHandle, err := os.Open(f)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
defer fileHandle.Close()
|
|
|
|
|
|
|
|
fi, err := os.Stat(f)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ms.WriteReader(fieldname, fileHandle.Name(), fi.Size(), fileHandle)
|
|
|
|
case FileBytes:
|
2016-10-03 17:47:19 +02:00
|
|
|
ms.WriteFields(params)
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
buf := bytes.NewBuffer(f.Bytes)
|
|
|
|
ms.WriteReader(fieldname, f.Name, int64(len(f.Bytes)), buf)
|
|
|
|
case FileReader:
|
2016-10-03 17:47:19 +02:00
|
|
|
ms.WriteFields(params)
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
if f.Size != -1 {
|
|
|
|
ms.WriteReader(fieldname, f.Name, f.Size, f.Reader)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
data, err := ioutil.ReadAll(f.Reader)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := bytes.NewBuffer(data)
|
|
|
|
|
|
|
|
ms.WriteReader(fieldname, f.Name, int64(len(data)), buf)
|
2016-10-03 17:47:19 +02:00
|
|
|
case url.URL:
|
|
|
|
params[fieldname] = f.String()
|
|
|
|
|
|
|
|
ms.WriteFields(params)
|
2015-11-20 11:42:26 +01:00
|
|
|
default:
|
2016-01-04 05:49:58 +01:00
|
|
|
return APIResponse{}, errors.New(ErrBadFileType)
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2017-12-29 08:38:45 +01:00
|
|
|
if bot.Debug {
|
|
|
|
log.Printf("Endpoint: %s, fieldname: %s, params: %v, file: %T\n", endpoint, fieldname, params, file)
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
method := fmt.Sprintf(APIEndpoint, bot.Token, endpoint)
|
|
|
|
|
|
|
|
req, err := http.NewRequest("POST", method, nil)
|
2015-11-20 11:42:26 +01:00
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
ms.SetupRequest(req)
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
res, err := bot.Client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
bytes, err := ioutil.ReadAll(res.Body)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if bot.Debug {
|
2017-12-29 08:38:45 +01:00
|
|
|
log.Printf("Endpoint: %s, response: %s\n", endpoint, string(bytes))
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var apiResp APIResponse
|
2017-01-18 10:05:01 +01:00
|
|
|
|
|
|
|
err = json.Unmarshal(bytes, &apiResp)
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
2015-11-20 11:42:26 +01:00
|
|
|
|
|
|
|
if !apiResp.Ok {
|
|
|
|
return APIResponse{}, errors.New(apiResp.Description)
|
|
|
|
}
|
|
|
|
|
|
|
|
return apiResp, nil
|
|
|
|
}
|
|
|
|
|
2015-11-21 17:43:24 +01:00
|
|
|
// GetFileDirectURL returns direct URL to file
|
|
|
|
//
|
2016-01-03 23:54:24 +01:00
|
|
|
// It requires the FileID.
|
2015-11-21 17:43:24 +01:00
|
|
|
func (bot *BotAPI) GetFileDirectURL(fileID string) (string, error) {
|
|
|
|
file, err := bot.GetFile(FileConfig{fileID})
|
2015-11-21 14:25:59 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2015-11-21 17:43:24 +01:00
|
|
|
return file.Link(bot.Token), nil
|
2015-11-21 14:25:59 +01:00
|
|
|
}
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
// GetMe fetches the currently authenticated bot.
|
|
|
|
//
|
2016-01-03 23:54:24 +01:00
|
|
|
// This method is called upon creation to validate the token,
|
|
|
|
// and so you may get this data from BotAPI.Self without the need for
|
|
|
|
// another request.
|
2015-11-20 11:42:26 +01:00
|
|
|
func (bot *BotAPI) GetMe() (User, error) {
|
|
|
|
resp, err := bot.MakeRequest("getMe", nil)
|
|
|
|
if err != nil {
|
|
|
|
return User{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var user User
|
2017-12-30 04:55:58 +01:00
|
|
|
err = json.Unmarshal(resp.Result, &user)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2017-12-30 04:55:58 +01:00
|
|
|
return user, err
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// IsMessageToMe returns true if message directed to this bot.
|
2015-11-21 17:43:24 +01:00
|
|
|
//
|
2016-01-03 23:54:24 +01:00
|
|
|
// It requires the Message.
|
2015-11-21 15:39:19 +01:00
|
|
|
func (bot *BotAPI) IsMessageToMe(message Message) bool {
|
2015-11-21 14:33:58 +01:00
|
|
|
return strings.Contains(message.Text, "@"+bot.Self.UserName)
|
|
|
|
}
|
|
|
|
|
2017-12-29 08:26:54 +01:00
|
|
|
// Request sends a Chattable to Telegram, and returns the APIResponse.
|
2017-12-29 07:44:47 +01:00
|
|
|
func (bot *BotAPI) Request(c Chattable) (APIResponse, error) {
|
2018-10-09 01:21:29 +02:00
|
|
|
params, err := c.params()
|
|
|
|
if err != nil {
|
|
|
|
return APIResponse{}, err
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:44:47 +01:00
|
|
|
switch t := c.(type) {
|
|
|
|
case Fileable:
|
|
|
|
if t.useExistingFile() {
|
2018-10-09 01:21:29 +02:00
|
|
|
return bot.MakeRequest(t.method(), params)
|
2017-12-29 07:44:47 +01:00
|
|
|
}
|
2015-11-20 15:31:01 +01:00
|
|
|
|
2018-10-09 01:21:29 +02:00
|
|
|
return bot.UploadFile(t.method(), params, t.name(), t.getFile())
|
2017-12-29 07:44:47 +01:00
|
|
|
default:
|
2018-10-09 01:21:29 +02:00
|
|
|
return bot.MakeRequest(c.method(), params)
|
2015-11-20 15:31:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-29 08:26:54 +01:00
|
|
|
// Send will send a Chattable item to Telegram and provides the
|
|
|
|
// returned Message.
|
|
|
|
func (bot *BotAPI) Send(c Chattable) (Message, error) {
|
|
|
|
resp, err := bot.Request(c)
|
|
|
|
if err != nil {
|
|
|
|
return Message{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var message Message
|
|
|
|
err = json.Unmarshal(resp.Result, &message)
|
|
|
|
|
|
|
|
return message, err
|
|
|
|
}
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
// GetUserProfilePhotos gets a user's profile photos.
|
|
|
|
//
|
2016-01-03 23:54:24 +01:00
|
|
|
// It requires UserID.
|
2015-11-20 11:42:26 +01:00
|
|
|
// Offset and Limit are optional.
|
|
|
|
func (bot *BotAPI) GetUserProfilePhotos(config UserProfilePhotosConfig) (UserProfilePhotos, error) {
|
2018-10-09 01:21:29 +02:00
|
|
|
params, _ := config.params()
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2018-10-09 01:21:29 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2015-11-20 11:42:26 +01:00
|
|
|
if err != nil {
|
|
|
|
return UserProfilePhotos{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var profilePhotos UserProfilePhotos
|
2017-12-30 04:55:58 +01:00
|
|
|
err = json.Unmarshal(resp.Result, &profilePhotos)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2017-12-30 04:55:58 +01:00
|
|
|
return profilePhotos, err
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// GetFile returns a File which can download a file from Telegram.
|
2015-11-20 11:42:26 +01:00
|
|
|
//
|
|
|
|
// Requires FileID.
|
|
|
|
func (bot *BotAPI) GetFile(config FileConfig) (File, error) {
|
2018-10-09 06:05:24 +02:00
|
|
|
params, _ := config.params()
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2015-11-20 11:42:26 +01:00
|
|
|
if err != nil {
|
|
|
|
return File{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var file File
|
2017-12-30 04:55:58 +01:00
|
|
|
err = json.Unmarshal(resp.Result, &file)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2017-12-30 04:55:58 +01:00
|
|
|
return file, err
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetUpdates fetches updates.
|
|
|
|
// If a WebHook is set, this will not return any data!
|
|
|
|
//
|
|
|
|
// Offset, Limit, and Timeout are optional.
|
2016-01-03 23:54:24 +01:00
|
|
|
// To avoid stale items, set Offset to one higher than the previous item.
|
|
|
|
// Set Timeout to a large number to reduce requests so you can get updates
|
|
|
|
// instantly instead of having to wait between requests.
|
2015-11-20 11:42:26 +01:00
|
|
|
func (bot *BotAPI) GetUpdates(config UpdateConfig) ([]Update, error) {
|
2018-10-09 01:21:29 +02:00
|
|
|
params, _ := config.params()
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2018-10-09 01:21:29 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2015-11-20 11:42:26 +01:00
|
|
|
if err != nil {
|
|
|
|
return []Update{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var updates []Update
|
2017-12-30 04:55:58 +01:00
|
|
|
err = json.Unmarshal(resp.Result, &updates)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2017-12-30 04:55:58 +01:00
|
|
|
return updates, err
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2016-10-03 17:47:19 +02:00
|
|
|
// GetWebhookInfo allows you to fetch information about a webhook and if
|
|
|
|
// one currently is set, along with pending update count and error messages.
|
|
|
|
func (bot *BotAPI) GetWebhookInfo() (WebhookInfo, error) {
|
2018-10-09 01:21:29 +02:00
|
|
|
resp, err := bot.MakeRequest("getWebhookInfo", nil)
|
2016-10-03 17:47:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return WebhookInfo{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var info WebhookInfo
|
|
|
|
err = json.Unmarshal(resp.Result, &info)
|
|
|
|
|
|
|
|
return info, err
|
|
|
|
}
|
|
|
|
|
2015-11-21 17:43:24 +01:00
|
|
|
// GetUpdatesChan starts and returns a channel for getting updates.
|
2018-10-09 07:47:19 +02:00
|
|
|
func (bot *BotAPI) GetUpdatesChan(config UpdateConfig) UpdatesChannel {
|
2017-01-27 18:40:09 +01:00
|
|
|
ch := make(chan Update, bot.Buffer)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
2018-03-09 23:22:21 +01:00
|
|
|
select {
|
|
|
|
case <-bot.shutdownChannel:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
2018-10-08 10:13:50 +02:00
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
updates, err := bot.GetUpdates(config)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
log.Println("Failed to get updates, retrying in 3 seconds...")
|
|
|
|
time.Sleep(time.Second * 3)
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, update := range updates {
|
2018-10-08 20:58:50 +02:00
|
|
|
if update.UpdateID >= config.Offset {
|
|
|
|
config.Offset = update.UpdateID + 1
|
|
|
|
ch <- update
|
|
|
|
}
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-10-09 07:47:19 +02:00
|
|
|
return ch
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
|
|
|
|
2018-03-09 23:22:21 +01:00
|
|
|
// StopReceivingUpdates stops the go routine which receives updates
|
|
|
|
func (bot *BotAPI) StopReceivingUpdates() {
|
|
|
|
if bot.Debug {
|
|
|
|
log.Println("Stopping the update receiver routine...")
|
|
|
|
}
|
|
|
|
close(bot.shutdownChannel)
|
|
|
|
}
|
|
|
|
|
2015-11-20 11:42:26 +01:00
|
|
|
// ListenForWebhook registers a http handler for a webhook.
|
2017-01-26 18:43:28 +01:00
|
|
|
func (bot *BotAPI) ListenForWebhook(pattern string) UpdatesChannel {
|
2017-01-27 18:40:09 +01:00
|
|
|
ch := make(chan Update, bot.Buffer)
|
2015-11-20 11:42:26 +01:00
|
|
|
|
2016-01-04 06:05:36 +01:00
|
|
|
http.HandleFunc(pattern, func(w http.ResponseWriter, r *http.Request) {
|
2015-11-20 11:42:26 +01:00
|
|
|
bytes, _ := ioutil.ReadAll(r.Body)
|
|
|
|
|
|
|
|
var update Update
|
|
|
|
json.Unmarshal(bytes, &update)
|
|
|
|
|
2016-12-15 22:51:58 +01:00
|
|
|
ch <- update
|
2015-11-20 11:42:26 +01:00
|
|
|
})
|
2015-11-21 12:22:08 +01:00
|
|
|
|
2016-12-16 02:07:54 +01:00
|
|
|
return ch
|
2015-11-20 11:42:26 +01:00
|
|
|
}
|
2016-01-01 07:10:19 +01:00
|
|
|
|
2016-05-22 17:16:28 +02:00
|
|
|
// GetChat gets information about a chat.
|
2018-10-09 06:05:24 +02:00
|
|
|
func (bot *BotAPI) GetChat(config ChatInfoConfig) (Chat, error) {
|
|
|
|
params, _ := config.params()
|
2016-05-22 17:16:28 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2016-05-22 17:16:28 +02:00
|
|
|
if err != nil {
|
|
|
|
return Chat{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var chat Chat
|
|
|
|
err = json.Unmarshal(resp.Result, &chat)
|
|
|
|
|
|
|
|
return chat, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetChatAdministrators gets a list of administrators in the chat.
|
|
|
|
//
|
|
|
|
// If none have been appointed, only the creator will be returned.
|
|
|
|
// Bots are not shown, even if they are an administrator.
|
2018-10-09 06:05:24 +02:00
|
|
|
func (bot *BotAPI) GetChatAdministrators(config ChatAdministratorsConfig) ([]ChatMember, error) {
|
|
|
|
params, _ := config.params()
|
2016-05-22 17:16:28 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2016-05-22 17:16:28 +02:00
|
|
|
if err != nil {
|
|
|
|
return []ChatMember{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var members []ChatMember
|
|
|
|
err = json.Unmarshal(resp.Result, &members)
|
|
|
|
|
|
|
|
return members, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetChatMembersCount gets the number of users in a chat.
|
2018-10-09 06:05:24 +02:00
|
|
|
func (bot *BotAPI) GetChatMembersCount(config ChatMemberCountConfig) (int, error) {
|
|
|
|
params, _ := config.params()
|
2016-05-22 17:16:28 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2016-05-22 17:16:28 +02:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var count int
|
|
|
|
err = json.Unmarshal(resp.Result, &count)
|
|
|
|
|
|
|
|
return count, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetChatMember gets a specific chat member.
|
2018-10-09 06:05:24 +02:00
|
|
|
func (bot *BotAPI) GetChatMember(config GetChatMemberConfig) (ChatMember, error) {
|
|
|
|
params, _ := config.params()
|
2016-05-22 17:16:28 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2016-05-22 17:16:28 +02:00
|
|
|
if err != nil {
|
|
|
|
return ChatMember{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var member ChatMember
|
|
|
|
err = json.Unmarshal(resp.Result, &member)
|
|
|
|
|
|
|
|
return member, err
|
|
|
|
}
|
|
|
|
|
2016-10-03 17:47:19 +02:00
|
|
|
// GetGameHighScores allows you to get the high scores for a game.
|
|
|
|
func (bot *BotAPI) GetGameHighScores(config GetGameHighScoresConfig) ([]GameHighScore, error) {
|
2018-10-09 06:05:24 +02:00
|
|
|
params, _ := config.params()
|
2016-10-03 17:47:19 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2016-10-03 17:47:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return []GameHighScore{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var highScores []GameHighScore
|
|
|
|
err = json.Unmarshal(resp.Result, &highScores)
|
|
|
|
|
|
|
|
return highScores, err
|
|
|
|
}
|
2017-06-02 22:18:42 +02:00
|
|
|
|
2017-07-17 19:48:51 +02:00
|
|
|
// GetInviteLink get InviteLink for a chat
|
2018-10-09 06:05:24 +02:00
|
|
|
func (bot *BotAPI) GetInviteLink(config ChatInviteLinkConfig) (string, error) {
|
|
|
|
params, _ := config.params()
|
2017-07-17 19:48:51 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2017-11-09 19:51:50 +01:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2017-07-17 19:48:51 +02:00
|
|
|
|
2017-08-05 11:29:06 +02:00
|
|
|
var inviteLink string
|
|
|
|
err = json.Unmarshal(resp.Result, &inviteLink)
|
2017-07-17 19:48:51 +02:00
|
|
|
|
2017-08-05 11:29:06 +02:00
|
|
|
return inviteLink, err
|
2017-07-17 19:48:51 +02:00
|
|
|
}
|
2017-08-05 11:29:06 +02:00
|
|
|
|
2017-12-29 07:44:47 +01:00
|
|
|
// GetStickerSet returns a StickerSet.
|
|
|
|
func (bot *BotAPI) GetStickerSet(config GetStickerSetConfig) (StickerSet, error) {
|
2018-10-09 06:05:24 +02:00
|
|
|
params, _ := config.params()
|
2017-08-05 11:29:06 +02:00
|
|
|
|
2018-10-09 06:05:24 +02:00
|
|
|
resp, err := bot.MakeRequest(config.method(), params)
|
2017-08-05 11:29:06 +02:00
|
|
|
if err != nil {
|
2017-12-29 07:44:47 +01:00
|
|
|
return StickerSet{}, nil
|
2017-08-05 11:29:06 +02:00
|
|
|
}
|
|
|
|
|
2017-12-29 07:44:47 +01:00
|
|
|
var stickers StickerSet
|
|
|
|
err = json.Unmarshal(resp.Result, &stickers)
|
2017-08-05 11:29:06 +02:00
|
|
|
|
2017-12-29 07:44:47 +01:00
|
|
|
return stickers, err
|
2017-10-29 22:03:48 +01:00
|
|
|
}
|