-
Notifications
You must be signed in to change notification settings - Fork 22
/
helpers.go
395 lines (361 loc) · 9.08 KB
/
helpers.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
package telegram
import (
"fmt"
"net/url"
"golang.org/x/net/context"
)
func newBM(chatID int64) BaseMessage {
return BaseMessage{
BaseChat: BaseChat{
ID: chatID,
},
}
}
// NewMessage creates a new Message.
//
// chatID is where to send it, text is the message text.
func NewMessage(chatID int64, text string) MessageCfg {
return MessageCfg{
BaseMessage: newBM(chatID),
Text: text,
DisableWebPagePreview: false,
}
}
// NewMessagef creates a new Message with formatting.
//
// chatID is where to send it, text is the message text
func NewMessagef(chatID int64, text string, args ...interface{}) MessageCfg {
return MessageCfg{
BaseMessage: newBM(chatID),
Text: fmt.Sprintf(text, args...),
DisableWebPagePreview: false,
}
}
// NewKeyboard creates keyboard by matrix i*j.
func NewKeyboard(buttons [][]string) [][]KeyboardButton {
rows := make([][]KeyboardButton, len(buttons))
for i, colButtons := range buttons {
cols := make([]KeyboardButton, len(colButtons))
for j, button := range colButtons {
cols[j].Text = button
}
rows[i] = cols
}
return rows
}
// NewHKeyboard creates keyboard with horizontal buttons only.
// [ first ] [ second ] [ third ]
func NewHKeyboard(buttons ...string) [][]KeyboardButton {
row := make([]KeyboardButton, len(buttons))
for i, button := range buttons {
row[i].Text = button
}
return [][]KeyboardButton{row}
}
// NewVKeyboard creates keyboard with vertical buttons only
// [ first ]
// [ second ]
// [ third ]
func NewVKeyboard(buttons ...string) [][]KeyboardButton {
r := make([][]KeyboardButton, len(buttons))
for i, button := range buttons {
r[i] = []KeyboardButton{{Text: button}}
}
return r
}
// NewHInlineKeyboard creates inline keyboard with horizontal buttons only.
// [ first ] [ second ] [ third ]
func NewHInlineKeyboard(prefix string, text []string, data []string) [][]InlineKeyboardButton {
row := make([]InlineKeyboardButton, len(text))
for i, t := range text {
row[i].Text = t
row[i].CallbackData = prefix + data[i]
}
return [][]InlineKeyboardButton{row}
}
// NewVInlineKeyboard creates inline keyboard with vertical buttons only
// [ first ]
// [ second ]
// [ third ]
func NewVInlineKeyboard(prefix string, text []string, data []string) [][]InlineKeyboardButton {
r := make([][]InlineKeyboardButton, len(text))
for i, button := range text {
r[i] = []InlineKeyboardButton{
{Text: button, CallbackData: prefix + data[i]},
}
}
return r
}
// NewForwardMessage creates a new Message.
//
// chatID is where to send it, text is the message text.
func NewForwardMessage(chatID, fromChatID, messageID int64) ForwardMessageCfg {
return ForwardMessageCfg{
BaseChat: BaseChat{
ID: chatID,
},
FromChat: BaseChat{
ID: fromChatID,
},
MessageID: messageID,
}
}
// NewUserProfilePhotos gets user profile photos.
//
// userID is the ID of the user you wish to get profile photos from.
func NewUserProfilePhotos(userID int64) UserProfilePhotosCfg {
return UserProfilePhotosCfg{
UserID: userID,
Offset: 0,
Limit: 0,
}
}
// NewUpdate gets updates since the last Offset with Timeout 30 seconds
//
// offset is the last Update ID to include.
// You likely want to set this to the last Update ID plus 1.
// The negative offset can be specified to retrieve updates starting
// from -offset update from the end of the updates queue.
// All previous updates will forgotten.
func NewUpdate(offset int64) UpdateCfg {
return UpdateCfg{
Offset: offset,
Limit: 0,
Timeout: 30,
}
}
// NewChatAction sets a chat action.
// Actions last for 5 seconds, or until your next action.
//
// chatID is where to send it, action should be set via Action constants.
func NewChatAction(chatID int64, action string) ChatActionCfg {
return ChatActionCfg{
BaseChat: BaseChat{ID: chatID},
Action: action,
}
}
// NewLocation shares your location.
//
// chatID is where to send it, latitude and longitude are coordinates.
func NewLocation(chatID int64, lat float64, lon float64) LocationCfg {
return LocationCfg{
BaseMessage: newBM(chatID),
Location: Location{
Latitude: lat,
Longitude: lon,
},
}
}
// NewPhotoUpload creates a new photo uploader.
//
// chatID is where to send it, inputFile is a file representation.
func NewPhotoUpload(chatID int64, inputFile InputFile) PhotoCfg {
return PhotoCfg{
BaseFile: BaseFile{
BaseMessage: newBM(chatID),
InputFile: inputFile,
},
}
}
// NewPhotoShare creates a new photo uploader.
//
// chatID is where to send it
func NewPhotoShare(chatID int64, fileID string) PhotoCfg {
return PhotoCfg{
BaseFile: BaseFile{
BaseMessage: newBM(chatID),
FileID: fileID,
},
}
}
// NewAnswerCallback creates a new callback message.
func NewAnswerCallback(id, text string) AnswerCallbackCfg {
return AnswerCallbackCfg{
CallbackQueryID: id,
Text: text,
ShowAlert: false,
}
}
// NewAnswerCallbackWithAlert creates a new callback message that alerts
// the user.
func NewAnswerCallbackWithAlert(id, text string) AnswerCallbackCfg {
return AnswerCallbackCfg{
CallbackQueryID: id,
Text: text,
ShowAlert: true,
}
}
// NewEditMessageText allows you to edit the text of a message.
func NewEditMessageText(chatID, messageID int64, text string) EditMessageTextCfg {
return EditMessageTextCfg{
BaseEdit: BaseEdit{
ChatID: chatID,
MessageID: messageID,
},
Text: text,
}
}
// NewEditMessageCaption allows you to edit the caption of a message.
func NewEditMessageCaption(chatID, messageID int64, caption string) EditMessageCaptionCfg {
return EditMessageCaptionCfg{
BaseEdit: BaseEdit{
ChatID: chatID,
MessageID: messageID,
},
Caption: caption,
}
}
// NewEditMessageReplyMarkup allows you to edit the inline
// keyboard markup.
func NewEditMessageReplyMarkup(chatID, messageID int64, replyMarkup *InlineKeyboardMarkup) EditMessageReplyMarkupCfg {
return EditMessageReplyMarkupCfg{
BaseEdit: BaseEdit{
ChatID: chatID,
MessageID: messageID,
ReplyMarkup: replyMarkup,
},
}
}
// NewWebhook creates a new webhook.
//
// link is the url parsable link you wish to get the updates.
func NewWebhook(link string) WebhookCfg {
u, _ := url.Parse(link)
return WebhookCfg{
URL: u.String(),
}
}
// NewWebhookWithCert creates a new webhook with a certificate.
//
// link is the url you wish to get webhooks,
// file contains a string to a file, FileReader, or FileBytes.
func NewWebhookWithCert(link string, file InputFile) WebhookCfg {
u, _ := url.Parse(link)
return WebhookCfg{
URL: u.String(),
Certificate: file,
}
}
// CloneMessage convert message to Messenger type to send it to another chat.
// It supports only data message: Text, Sticker, Audio, Photo, Location,
// Contact, Audio, Voice, Document.
func CloneMessage(msg *Message, baseMessage *BaseMessage) Messenger {
var base BaseMessage
if baseMessage == nil {
base = newBM(msg.Chat.ID)
} else {
base = *baseMessage
}
if msg.Text != "" {
return &MessageCfg{
BaseMessage: base,
Text: msg.Text,
}
}
if msg.Sticker != nil {
return &StickerCfg{
BaseFile: BaseFile{
BaseMessage: base,
FileID: msg.Sticker.FileID,
},
}
}
if msg.Photo != nil && len(msg.Photo) > 0 {
return &PhotoCfg{
BaseFile: BaseFile{
BaseMessage: base,
FileID: msg.Photo[len(msg.Photo)-1].FileID,
},
Caption: msg.Caption,
}
}
if msg.Location != nil {
return &LocationCfg{
BaseMessage: base,
Location: *msg.Location,
}
}
if msg.Contact != nil {
return &ContactCfg{
BaseMessage: base,
Contact: *msg.Contact,
}
}
if msg.Audio != nil {
return &AudioCfg{
BaseFile: BaseFile{
BaseMessage: base,
FileID: msg.Audio.FileID,
},
Duration: msg.Audio.Duration,
Performer: msg.Audio.Performer,
Title: msg.Audio.Title,
}
}
if msg.Voice != nil {
return &VoiceCfg{
BaseFile: BaseFile{
BaseMessage: base,
FileID: msg.Voice.FileID,
},
Duration: msg.Voice.Duration,
}
}
if msg.Document != nil {
return &DocumentCfg{
BaseFile: BaseFile{
BaseMessage: base,
FileID: msg.Document.FileID,
},
}
}
return nil
}
// GetUpdates runs loop and requests updates from telegram.
// It breaks loop, close out channel and returns error
// if something happened during update cycle.
func GetUpdates(
ctx context.Context,
api *API,
cfg UpdateCfg,
out chan<- Update) error {
var rErr error
defer close(out)
loop:
for {
updates, err := api.GetUpdates(
ctx,
cfg,
)
if err != nil {
rErr = err
break loop
}
for _, update := range updates {
if update.UpdateID >= cfg.Offset {
cfg.Offset = update.UpdateID + 1
select {
case <-ctx.Done():
rErr = ctx.Err()
break loop
case out <- update:
}
}
}
}
return rErr
}
// InlineQuery helpers
// NewInlineQueryResultArticle creates a new inline query article.
func NewInlineQueryResultArticle(id, title, messageText string) *InlineQueryResultArticle {
return &InlineQueryResultArticle{
BaseInlineQueryResult: BaseInlineQueryResult{
Type: "article",
ID: id,
InputMessageContent: InputTextMessageContent{
MessageText: messageText,
},
},
Title: title,
}
}