1
0
Fork 0

🚧 Added some basic methods and stuff

This commit is contained in:
Maxim Lebedev 2017-09-04 23:31:47 +05:00
parent 8005982ac9
commit 32d7ca9873
No known key found for this signature in database
GPG Key ID: F8978F46FF0FFA4F
1 changed files with 71 additions and 0 deletions

71
telegram.go Normal file
View File

@ -0,0 +1,71 @@
package telegram
import (
"errors"
"fmt"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
const (
APIEndpoint = "https://api.telegram.org/bot%s/%s"
FileEndpoind = "https://api.telegram.org/file/bot%s/%s"
StyleMarkdown = "markdown"
StyleHTML = "html"
)
type Bot struct {
AccessToken string
}
func NewBot(accessToken string) *Bot {
return &Bot{accessToken}
}
func (bot *Bot) get(method string, args *http.Args) (*Response, error) {
method = fmt.Sprintf(APIEndpoint, bot.AccessToken, method)
if args != nil {
method += fmt.Sprint("?", args.String())
}
_, body, err := http.Get(nil, method)
if err != nil {
return nil, err
}
var resp Response
if err := json.Unmarshal(body, &resp); err != nil {
return nil, err
}
if !resp.Ok {
return &resp, errors.New(resp.Description)
}
return &resp, nil
}
func (bot *Bot) post(method string, args *http.Args) (*Response, error) {
method = fmt.Sprintf(APIEndpoint, bot.AccessToken, method)
_, body, err := http.Post(nil, method, args)
if err != nil {
return nil, err
}
var resp Response
if err := json.Unmarshal(body, &resp); err != nil {
return nil, err
}
if !resp.Ok {
return &resp, errors.New(resp.Description)
}
return &resp, nil
}
func (bot *Bot) upload(dst interface{}, method string, args *http.Args) (*Response, error) {
return nil, nil
}