-
Notifications
You must be signed in to change notification settings - Fork 21
/
api.go
430 lines (387 loc) · 10.5 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright 2015-2016 mrd0ll4r and contributors. All rights reserved.
// Use of this source code is governed by the MIT license, which can be found in
// the LICENSE file.
package tbotapi
import (
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"sync"
"time"
)
// A TelegramBotAPI is an API Client for one Telegram bot.
// Create a new client by calling the New() function.
type TelegramBotAPI struct {
ID int // The bots ID.
Name string // The bots Name as seen by users.
Username string // The bots username.
Updates chan BotUpdate // A channel providing updates this bot receives.
baseURIs map[method]string
closed chan struct{}
c *client // Client used to do all outgoing requests.
updateC *client // Special client just used to get updates.
wg sync.WaitGroup
}
// BotUpdate represents an update the bot received.
// Always check if an error occurred before using the update.
type BotUpdate struct {
update Update
err error
}
// Update returns the contained update.
func (u *BotUpdate) Update() Update {
return u.update
}
// Error returns != nil, if an error occurred during retrieval of the
// update.
func (u *BotUpdate) Error() error {
return u.err
}
const apiBaseURI string = "https://api.telegram.org/bot%s"
// New creates a new API Client for a Telegram bot using the apiKey
// provided.
// It will call the GetMe method to retrieve the bots id, name and
// username.
//
// This bot uses long polling to retrieve its updates. If a webhook was set
// for the given apiKey, this will remove it.
func New(apiKey string) (*TelegramBotAPI, error) {
toReturn := TelegramBotAPI{
Updates: make(chan BotUpdate),
baseURIs: createEndpoints(fmt.Sprintf(apiBaseURI, apiKey)),
closed: make(chan struct{}),
c: newClient(fmt.Sprintf(apiBaseURI, apiKey)),
updateC: newClient(fmt.Sprintf(apiBaseURI, apiKey)),
}
user, err := toReturn.GetMe()
if err != nil {
return nil, err
}
toReturn.ID = user.User.ID
toReturn.Name = user.User.FirstName
toReturn.Username = *user.User.Username
err = toReturn.removeWebhook()
if err != nil {
return nil, err
}
toReturn.wg.Add(1)
go toReturn.updateLoop()
return &toReturn, nil
}
// NewWithWebhook creates a new API client for a Telegram bot using the apiKey
// provided. It will call the GetMe method to retrieve the bots id, name and
// username.
// In addition to the API client, a http.HandlerFunc will be returned. This
// handler func reacts to webhook requests and will put updates into the
// Updates channel.
func NewWithWebhook(apiKey, webhookURL, certificate string) (*TelegramBotAPI, http.HandlerFunc, error) {
toReturn := TelegramBotAPI{
Updates: make(chan BotUpdate),
baseURIs: createEndpoints(fmt.Sprintf(apiBaseURI, apiKey)),
closed: make(chan struct{}),
c: newClient(fmt.Sprintf(apiBaseURI, apiKey)),
updateC: newClient(fmt.Sprintf(apiBaseURI, apiKey)),
}
user, err := toReturn.GetMe()
if err != nil {
return nil, nil, err
}
toReturn.ID = user.User.ID
toReturn.Name = user.User.FirstName
toReturn.Username = *user.User.Username
file, err := os.Open(certificate)
if err != nil {
return nil, nil, err
}
err = toReturn.setWebhook(webhookURL, certificate, file)
if err != nil {
return nil, nil, err
}
updateFunc := func(w http.ResponseWriter, r *http.Request) {
bytes, err := ioutil.ReadAll(r.Body)
if err != nil {
toReturn.Updates <- BotUpdate{err: err}
return
}
update := &Update{}
err = json.Unmarshal(bytes, update)
if err != nil {
toReturn.Updates <- BotUpdate{err: err}
return
}
toReturn.Updates <- BotUpdate{update: *update}
}
return &toReturn, updateFunc, nil
}
// Close shuts down this client.
// Until Close returns, new updates and errors will be put into the
// respective channels.
// Note that, if no updates are received, this function may block for up to
// one minute, which is the time interval
// for long polling.
func (api *TelegramBotAPI) Close() {
select {
case <-api.closed:
return
default:
}
close(api.closed)
api.wg.Wait()
}
func (api *TelegramBotAPI) updateLoop() {
defer api.wg.Done()
updates, err := api.getUpdates()
offset := -1
for {
select {
case <-api.closed:
return
default:
}
if err != nil {
api.Updates <- BotUpdate{err: err}
} else {
updates.sort()
for _, update := range updates.Update {
api.Updates <- BotUpdate{update: update}
offset = update.ID
}
}
if offset == -1 {
updates, err = api.getUpdates()
} else {
updates, err = api.getUpdatesByOffset(offset + 1)
}
}
}
func (api *TelegramBotAPI) getUpdates() (*updateResponse, error) {
resp := &updateResponse{}
response, err := api.updateC.getQuerystring(getUpdates, resp, map[string]string{"timeout": fmt.Sprint(60)})
if err != nil {
if response != nil {
if response.StatusCode() < 500 {
return nil, err
}
//Telegram server problems, retry later...
time.Sleep(time.Duration(5) * time.Second)
return api.getUpdates()
}
return nil, err
}
err = check(&resp.baseResponse)
if err != nil {
return nil, err
}
return resp, nil
}
func (api *TelegramBotAPI) getUpdatesByOffset(offset int) (*updateResponse, error) {
resp := &updateResponse{}
response, err := api.updateC.getQuerystring(getUpdates, resp, map[string]string{
"timeout": fmt.Sprint(60),
"offset": fmt.Sprint(offset),
})
if err != nil {
if response != nil {
if response.StatusCode() < 500 {
return nil, err
}
//Telegram server problems, retry later...
time.Sleep(time.Duration(5) * time.Second)
return api.getUpdatesByOffset(offset)
}
return nil, err
}
err = check(&resp.baseResponse)
if err != nil {
return nil, err
}
return resp, nil
}
func (api *TelegramBotAPI) setWebhook(url, fileName string, r io.Reader) error {
req := outgoingSetWebhook{
URL: url,
outgoingFileBase: outgoingFileBase{
fileName: fileName,
r: r,
},
}
resp := &baseResponse{}
_, err := api.c.uploadFile(setWebhook, resp, file{fieldName: "certificate", fileName: req.fileName, r: req.r}, &req)
if err != nil {
return err
}
return check(resp)
}
func (api *TelegramBotAPI) removeWebhook() error {
req := outgoingSetWebhook{
URL: "",
}
resp := &baseResponse{}
_, err := api.c.postJSON(setWebhook, resp, req)
if err != nil {
return err
}
return check(resp)
}
// GetMe returns basic information about the bot in form of a UserResponse.
func (api *TelegramBotAPI) GetMe() (*UserResponse, error) {
resp := &UserResponse{}
_, err := api.c.get(getMe, resp)
if err != nil {
return nil, err
}
err = check(&resp.baseResponse)
if err != nil {
return nil, err
}
return resp, nil
}
// GetFile returns a FileResponse containing a Path string needed to
// download a file.
// You will have to construct the download link manually like
// https://api.telegram.org/file/bot<token>/<file_path>, where <file_path>
// is taken from the response.
func (api *TelegramBotAPI) GetFile(fileID string) (*FileResponse, error) {
resp := &FileResponse{}
_, err := api.c.getQuerystring(getFile, resp, map[string]string{"file_id": fileID})
if err != nil {
return nil, err
}
err = check(&resp.baseResponse)
if err != nil {
return nil, err
}
return resp, nil
}
func check(br *baseResponse) error {
if br.Ok {
return nil
}
return fmt.Errorf("tbotapi: API error: %d - %s", br.ErrorCode, br.Description)
}
// ErrNoFileSpecified is returned in case neither a file name + io.Reader
// nor a fileID were specified.
var ErrNoFileSpecified = errors.New("tbotapi: Neither a fileID nor a fileName/reader were specified")
func (api *TelegramBotAPI) send(s sendable) (resp *MessageResponse, err error) {
resp = &MessageResponse{}
switch s := s.(type) {
case *OutgoingMessage:
_, err = api.c.postJSON(sendMessage, resp, s)
case *OutgoingLocation:
_, err = api.c.postJSON(sendLocation, resp, s)
case *OutgoingVenue:
_, err = api.c.postJSON(sendVenue, resp, s)
case *OutgoingForward:
_, err = api.c.postJSON(forwardMessage, resp, s)
case *OutgoingVideo:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendVideo, resp, file{fieldName: "video", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingVideo
Video string `json:"video"`
}{
OutgoingVideo: *s,
Video: s.fileID,
}
_, err = api.c.postJSON(sendVideo, resp, toSend)
}
case *OutgoingPhoto:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendPhoto, resp, file{fieldName: "photo", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingPhoto
Photo string `json:"photo"`
}{
OutgoingPhoto: *s,
Photo: s.fileID,
}
_, err = api.c.postJSON(sendPhoto, resp, toSend)
}
case *OutgoingVoice:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendVoice, resp, file{fieldName: "audio", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingVoice
Audio string `json:"audio"`
}{
OutgoingVoice: *s,
Audio: s.fileID,
}
_, err = api.c.postJSON(sendVoice, resp, toSend)
}
case *OutgoingAudio:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendAudio, resp, file{fieldName: "audio", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingAudio
Audio string `json:"audio"`
}{
OutgoingAudio: *s,
Audio: s.fileID,
}
_, err = api.c.postJSON(sendAudio, resp, toSend)
}
case *OutgoingDocument:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendDocument, resp, file{fieldName: "document", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingDocument
Document string `json:"document"`
}{
OutgoingDocument: *s,
Document: s.fileID,
}
_, err = api.c.postJSON(sendDocument, resp, toSend)
}
case *OutgoingSticker:
if !s.valid() {
return nil, ErrNoFileSpecified
}
if s.isUpload() {
_, err = api.c.uploadFile(sendSticker, resp, file{fieldName: "sticker", fileName: s.fileName, r: s.r}, s)
} else {
toSend := struct {
OutgoingSticker
Sticker string `json:"sticker"`
}{
OutgoingSticker: *s,
Sticker: s.fileID,
}
_, err = api.c.postJSON(sendSticker, resp, toSend)
}
default:
panic(fmt.Sprintf("tbotapi: internal: unexpected type for send(): %T", s))
}
if err != nil {
return nil, err
}
err = check(&resp.baseResponse)
if err != nil {
return nil, err
}
return resp, nil
}