-
Notifications
You must be signed in to change notification settings - Fork 30
/
message.go
230 lines (183 loc) · 5.04 KB
/
message.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
package botgolang
import (
"fmt"
"os"
"path/filepath"
)
//go:generate easyjson -all message.go
type MessageContentType uint8
const (
Unknown MessageContentType = iota
Text
OtherFile
Voice
Deeplink
)
// Message represents a text message
type Message struct {
client *Client
ContentType MessageContentType
// Id of the message (for editing)
ID string `json:"msgId"`
// File contains file attachment of the message
File *os.File `json:"-"`
// Id of file to send
FileID string `json:"fileId"`
// Text of the message or caption for file
Text string `json:"text"`
// Chat where to send the message
Chat Chat `json:"chat"`
// Id of replied message
// You can't use it with ForwardMsgID or ForwardChatID
ReplyMsgID string `json:"replyMsgId"`
// Id of forwarded message
// You can't use it with ReplyMsgID
ForwardMsgID string `json:"forwardMsgId"`
// Id of a chat from which you forward the message
// You can't use it with ReplyMsgID
// You should use it with ForwardMsgID
ForwardChatID string `json:"forwardChatId"`
Timestamp int `json:"timestamp"`
// The markup for the inline keyboard
InlineKeyboard *Keyboard `json:"inlineKeyboardMarkup"`
// The parse mode (HTML/MarkdownV2)
ParseMode ParseMode `json:"parseMode"`
// RequestID from library clients that is used in my-team logs
RequestID string `json:"requestID"`
// Use it only with content type Deeplink
Deeplink string `json:"deeplink"`
}
func (m *Message) AttachNewFile(file *os.File) {
m.File = file
m.ContentType = OtherFile
}
func (m *Message) AttachExistingFile(fileID string) {
m.FileID = fileID
m.ContentType = OtherFile
}
func (m *Message) AttachNewVoice(file *os.File) {
m.File = file
m.ContentType = Voice
}
func (m *Message) AttachExistingVoice(fileID string) {
m.FileID = fileID
m.ContentType = Voice
}
// ParseMode represent a type of text formatting
type ParseMode string
const (
ParseModeHTML ParseMode = "HTML"
ParseModeMarkdownV2 ParseMode = "MarkdownV2"
)
// AppendParseMode append a type of text formatting for current message
func (m *Message) AppendParseMode(mode ParseMode) {
m.ParseMode = mode
}
// AttachInlineKeyboard adds a keyboard to the message.
// Note - at least one row should be in the keyboard
// and there should be no empty rows
func (m *Message) AttachInlineKeyboard(keyboard Keyboard) {
m.InlineKeyboard = &keyboard
}
// Send method sends your message.
// Make sure you have Text or FileID in your message.
func (m *Message) Send() error {
if m.client == nil {
return fmt.Errorf("client is not inited, create message with constructor NewMessage, NewTextMessage, etc")
}
if m.Chat.ID == "" {
return fmt.Errorf("message should have chat id")
}
switch m.ContentType {
case Voice:
if m.FileID != "" {
return m.client.SendVoiceMessage(m)
}
if m.File != nil {
return m.client.UploadVoice(m)
}
case OtherFile:
if m.FileID != "" {
return m.client.SendFileMessage(m)
}
if m.File != nil {
return m.client.UploadFile(m)
}
case Text:
return m.client.SendTextMessage(m)
case Deeplink:
return m.client.SendTextWithDeeplinkMessage(m)
case Unknown:
// need to autodetect
if m.FileID != "" {
// voice message's fileID always starts with 'I'
if m.FileID[0] == voiceMessageLeadingRune {
return m.client.SendVoiceMessage(m)
}
return m.client.SendFileMessage(m)
}
if m.File != nil {
if voiceMessageSupportedExtensions[filepath.Ext(m.File.Name())] {
return m.client.UploadVoice(m)
}
return m.client.UploadFile(m)
}
if m.Text != "" {
return m.client.SendTextMessage(m)
}
}
return fmt.Errorf("cannot send message or file without data")
}
// Edit method edits your message.
// Make sure you have ID in your message.
func (m *Message) Edit() error {
if m.ID == "" {
return fmt.Errorf("cannot edit message without id")
}
return m.client.EditMessage(m)
}
// Delete method deletes your message.
// Make sure you have ID in your message.
func (m *Message) Delete() error {
if m.ID == "" {
return fmt.Errorf("cannot delete message without id")
}
return m.client.DeleteMessage(m)
}
// Reply method replies to the message.
// Make sure you have ID in the message.
func (m *Message) Reply(text string) error {
if m.ID == "" {
return fmt.Errorf("cannot reply to message without id")
}
m.ReplyMsgID = m.ID
m.Text = text
return m.client.SendTextMessage(m)
}
// Forward method forwards your message to chat.
// Make sure you have ID in your message.
func (m *Message) Forward(chatID string) error {
if m.ID == "" {
return fmt.Errorf("cannot forward message without id")
}
m.ForwardChatID = m.Chat.ID
m.ForwardMsgID = m.ID
m.Chat.ID = chatID
return m.client.SendTextMessage(m)
}
// Pin message in chat
// Make sure you are admin in this chat
func (m *Message) Pin() error {
if m.ID == "" {
return fmt.Errorf("cannot pin message without id")
}
return m.client.PinMessage(m)
}
// Unpin message in chat
// Make sure you are admin in this chat
func (m *Message) Unpin() error {
if m.ID == "" {
return fmt.Errorf("cannot unpin message without id")
}
return m.client.UnpinMessage(m)
}