aboutsummaryrefslogtreecommitdiff
path: root/bots.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2019-08-09 02:02:05 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2019-08-09 02:02:05 +0300
commit94c96cef29cd83bc60b2eabb8bb89c9fd8c7059b (patch)
tree676b3e2b6ffb171e102931e5fac01f7a4621c20a /bots.go
parentd13acd7da9bd1c08de33b91120a479df88d21db2 (diff)
0.1.8 Release
Diffstat (limited to 'bots.go')
-rw-r--r--bots.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/bots.go b/bots.go
new file mode 100644
index 0000000..78b3d88
--- /dev/null
+++ b/bots.go
@@ -0,0 +1,48 @@
+// Package tamtam implements TamTam Bot API
+// Copyright (c) 2019 Alexander Kiryukhin <a.kiryukhin@mail.ru>
+package tamtam
+
+import (
+ "encoding/json"
+ "log"
+ "net/http"
+ "net/url"
+)
+
+type bots struct {
+ client *client
+}
+
+func newBots(client *client) *bots {
+ return &bots{client: client}
+}
+
+func (a *bots) GetBot() (*BotInfo, error) {
+ result := new(BotInfo)
+ values := url.Values{}
+ body, err := a.client.request(http.MethodGet, "me", values, nil)
+ if err != nil {
+ return result, err
+ }
+ defer func() {
+ if err := body.Close(); err != nil {
+ log.Println(err)
+ }
+ }()
+ return result, json.NewDecoder(body).Decode(result)
+}
+
+func (a *bots) PatchBot(patch *BotPatch) (*BotInfo, error) {
+ result := new(BotInfo)
+ values := url.Values{}
+ body, err := a.client.request(http.MethodPatch, "me", values, patch)
+ if err != nil {
+ return result, err
+ }
+ defer func() {
+ if err := body.Close(); err != nil {
+ log.Println(err)
+ }
+ }()
+ return result, json.NewDecoder(body).Decode(result)
+}