-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatuses.go
322 lines (265 loc) · 9.28 KB
/
statuses.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
package greenapi
import (
"encoding/json"
"fmt"
)
type StatusesCategory struct {
GreenAPI GreenAPIInterface
}
// ------------------------------------------------------------------ SendTextStatus
type RequestSendTextStatus struct {
Message string `json:"message"`
BackgroundColor string `json:"backgroundColor,omitempty"`
Font string `json:"font,omitempty"`
Participants []string `json:"participants,omitempty"`
}
type SendTextStatusOption func(*RequestSendTextStatus) error
// Status background. Default: #FFFFFF.
func OptionalBackgroundColorText(backgroundColor string) SendTextStatusOption {
return func(r *RequestSendTextStatus) error {
r.BackgroundColor = backgroundColor
return nil
}
}
// Text font. Accepts values: SERIF, SANS_SERIF, NORICAN_REGULAR, BRYNDAN_WRITE, OSWALD_HEAVY
func OptionalFont(font string) SendTextStatusOption {
return func(r *RequestSendTextStatus) error {
r.Font = font
return nil
}
}
// An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func OptionalParticipantsTextStatus(participants []string) SendTextStatusOption {
return func(r *RequestSendTextStatus) error {
for _, participant := range participants {
err := ValidateChatId(participant)
if err!=nil {
return err
}
}
r.Participants = participants
return nil
}
}
// Sending a text status.
//
// https://green-api.com/docs/api/statuses/SendTextStatus/
//
// Add optional arguments by passing these functions:
//
// OptionalBackgroundColorText(backgroundColor string) <- Status background. Default: #FFFFFF.
// OptionalFont(font string) <- Text font. Accepts values: SERIF, SANS_SERIF, NORICAN_REGULAR, BRYNDAN_WRITE, OSWALD_HEAVY
// OptionalParticipantsTextStatus(participants []string) <- An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func (c StatusesCategory) SendTextStatus(message string, options ...SendTextStatusOption) (*APIResponse, error) {
err := ValidateMessageLength(message, 500)
if err != nil {
return nil, err
}
r := &RequestSendTextStatus{
Message: message,
}
for _, o := range options {
err := o(r)
if err!=nil {
return nil, err
}
}
jsonData, err := json.Marshal(r)
if err != nil {
return nil, err
}
return c.GreenAPI.Request("POST", "sendTextStatus", jsonData)
}
// ------------------------------------------------------------------ SendVoiceStatus
type RequestSendVoiceStatus struct {
UrlFile string `json:"urlFile"`
FileName string `json:"fileName"`
BackgroundColor string `json:"backgroundColor,omitempty"`
Participants []string `json:"participants,omitempty"`
}
type SendVoiceStatusOption func(*RequestSendVoiceStatus) error
// Status background. Default: #FFFFFF.
func OptionalBackgroundColorVoice(backgroundColor string) SendVoiceStatusOption {
return func(r *RequestSendVoiceStatus) error {
r.BackgroundColor = backgroundColor
return nil
}
}
// An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func OptionalParticipantsVoiceStatus(participants []string) SendVoiceStatusOption {
return func(r *RequestSendVoiceStatus) error {
for _, participant := range participants {
err := ValidateChatId(participant)
if err!=nil {
return err
}
}
r.Participants = participants
return nil
}
}
// Sending a voice status.
//
// https://green-api.com/en/docs/api/statuses/SendVoiceStatus/
//
// Add optional arguments by passing these functions:
// OptionalBackgroundColorVoice(backgroundColor string) <- Status background. Default: #FFFFFF.
// OptionalParticipantsVoiceStatus(participants []string) <- An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func (c StatusesCategory) SendVoiceStatus(urlFile, fileName string, options ...SendVoiceStatusOption) (*APIResponse, error) {
err := ValidateURL(urlFile)
if err!=nil {
return nil, err
}
r := &RequestSendVoiceStatus{
UrlFile: urlFile,
FileName: fileName,
}
for _, o := range options {
err := o(r)
if err!=nil {
return nil, err
}
}
jsonData, err := json.Marshal(r)
if err != nil {
return nil, err
}
return c.GreenAPI.Request("POST", "sendVoiceStatus", jsonData)
}
// ------------------------------------------------------------------ SendMediaStatus
type RequestSendMediaStatus struct {
UrlFile string `json:"urlFile"`
FileName string `json:"fileName"`
Caption string `json:"caption,omitempty"`
Participants []string `json:"participants,omitempty"`
}
type SendMediaStatusOption func(*RequestSendMediaStatus) error
// Media status caption.
func OptionalCaptionMediaStatus(caption string) SendMediaStatusOption {
return func(r *RequestSendMediaStatus) error {
err := ValidateMessageLength(r.Caption, 1024)
if err!=nil {
return err
}
r.Caption = caption
return nil
}
}
// An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func OptionalParticipantsMediaStatus(participants []string) SendMediaStatusOption {
return func(r *RequestSendMediaStatus) error {
for _, participant := range participants {
err := ValidateChatId(participant)
if err!=nil {
return err
}
}
r.Participants = participants
return nil
}
}
// Sending a media status.
//
// https://green-api.com/en/docs/api/statuses/SendMediaStatus/
//
// Add optional arguments by passing these functions:
// OptionalCaptionMediaStatus(caption string) <- Media status caption.
// OptionalParticipantsMediaStatus(participants []string) <- An array of strings with contact IDs for whom the status will be available. If the field value is empty, the status will be available to all contacts.
func (c StatusesCategory) SendMediaStatus(urlFile, fileName string, options ...SendMediaStatusOption) (*APIResponse, error) {
err := ValidateURL(urlFile)
if err!=nil {
return nil, err
}
r := &RequestSendMediaStatus{
UrlFile: urlFile,
FileName: fileName,
}
for _, o := range options {
err := o(r)
if err!=nil {
return nil, err
}
}
jsonData, err := json.Marshal(r)
if err != nil {
return nil, err
}
return c.GreenAPI.Request("POST", "sendMediaStatus", jsonData)
}
// ------------------------------------------------------------------ DeleteStatus
type RequestDeleteStatus struct {
IdMessage string `json:"idMessage"`
}
// Deleting a posted status.
//
// https://green-api.com/en/docs/api/statuses/DeleteStatus/
func (c StatusesCategory) DeleteStatus(idMessage string) (*APIResponse, error) {
r := &RequestDeleteStatus{
IdMessage: idMessage,
}
jsonData, err := json.Marshal(r)
if err != nil {
return nil, err
}
return c.GreenAPI.Request("POST", "deleteStatus", jsonData)
}
// ------------------------------------------------------------------ GetStatusStatistic
// Getting an array of recipients marked sent/delivered/read for a given status.
//
// https://green-api.com/en/docs/api/statuses/GetStatusStatistic/
func (c StatusesCategory) GetStatusStatistic(idMessage string) (*APIResponse, error) {
addUrl := fmt.Sprintf("?idMessage=%s", idMessage)
return c.GreenAPI.Request("GET", "getStatusStatistic", nil, WithGetParams(addUrl))
}
// ------------------------------------------------------------------ GetOutgoingStatuses + GetIncomingStatuses
type RequestGetLastStatuses struct {
Minutes int `json:"minutes,omitempty"`
}
type GetLastStatusesOption func(*RequestGetLastStatuses) error
// Time in minutes for which the status messages should be displayed (1440 minutes by default)
func OptionalMinutesOfStatuses(minutes int) GetLastStatusesOption {
return func(r *RequestGetLastStatuses) error {
r.Minutes = minutes
return nil
}
}
// Getting the outgoing statuses of an account.
//
// https://green-api.com/en/docs/api/statuses/GetOutgoingStatuses/
//
// Add optional arguments by passing these functions:
// OptionalMinutesOfStatuses(minutes int) <- Time in minutes for which the status messages should be displayed (1440 minutes by default)
func (c StatusesCategory) GetOutgoingStatuses(options ...GetLastStatusesOption) (*APIResponse, error) {
r := &RequestGetLastStatuses{}
for _, o := range options {
err := o(r)
if err!=nil {
return nil, err
}
}
var addUrl string
if r.Minutes != 0 {
addUrl = fmt.Sprintf("?minutes=%v", r.Minutes)
}
return c.GreenAPI.Request("GET", "getOutgoingStatuses", nil, WithGetParams(addUrl))
}
// Getting the incoming statuses of an account.
//
// https://green-api.com/en/docs/api/statuses/GetIncomingStatuses/
//
// Add optional arguments by passing these functions:
// OptionalMinutesOfStatuses(minutes int) <- Time in minutes for which the status messages should be displayed (1440 minutes by default)
func (c StatusesCategory) GetIncomingStatuses(options ...GetLastStatusesOption) (*APIResponse, error) {
r := &RequestGetLastStatuses{}
for _, o := range options {
err := o(r)
if err!=nil {
return nil, err
}
}
var addUrl string
if r.Minutes != 0 {
addUrl = fmt.Sprintf("?minutes=%v", r.Minutes)
}
return c.GreenAPI.Request("GET", "getIncomingStatuses", nil, WithGetParams(addUrl))
}