1
0
telegram/leave_chat.go
Maxim Lebedev 878d245759
🐛 Fixed requests
2017-09-05 14:20:10 +05:00

32 lines
777 B
Go

package telegram
import (
"errors"
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// LeaveChat leave a group, supergroup or channel. Returns True on success.
func (bot *Bot) LeaveChat(chat interface{}) (bool, error) {
var args http.Args
switch id := chat.(type) {
case int64: // Unique identifier for the target chat...
args.Add("chat_id", strconv.FormatInt(id, 10))
case string: // ...or username of the target supergroup or channel (in the format @channelusername)
args.Add("chat_id", id)
default:
return false, errors.New(errorInt64OrString)
}
resp, err := bot.request(nil, "leaveChat", &args)
if err != nil {
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}