-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstance.go
More file actions
416 lines (354 loc) · 16.1 KB
/
Copy pathinstance.go
File metadata and controls
416 lines (354 loc) · 16.1 KB
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
package evolution
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"time"
)
type CreateInstanceRequest struct {
InstanceName string `json:"instanceName,omitempty"`
Qrcode bool `json:"qrcode,omitempty"`
Integration string `json:"integration,omitempty"`
RejectCall bool `json:"rejectCall,omitempty"`
MsgCall string `json:"msgCall,omitempty"`
GroupsIgnore bool `json:"groupsIgnore,omitempty"`
AlwaysOnline bool `json:"alwaysOnline,omitempty"`
ReadMessages bool `json:"readMessages,omitempty"`
SyncRecentHistory bool `json:"syncRecentHistory,omitempty"`
ReadStatus bool `json:"readStatus,omitempty"`
SyncFullHistory bool `json:"syncFullHistory,omitempty"`
ProxyHost string `json:"proxyHost,omitempty"`
ProxyPort string `json:"proxyPort,omitempty"`
ProxyProtocol string `json:"proxyProtocol,omitempty"`
ProxyUsername string `json:"proxyUsername,omitempty"`
ProxyPassword string `json:"proxyPassword,omitempty"`
Webhook *CreateInstanceRequestWebhook `json:"webhook,omitempty"`
Rabbitmq *CreateInstanceRequestRabbitMQ `json:"rabbitmq,omitempty"`
Sqs *CreateInstanceRequestSqs `json:"sqs,omitempty"`
ChatwootAccountId string `json:"chatwootAccountId,omitempty"`
ChatwootToken string `json:"chatwootToken,omitempty"`
ChatwootUrl string `json:"chatwootUrl,omitempty"`
ChatwootSignMsg bool `json:"chatwootSignMsg,omitempty"`
ChatwootReopenConversation bool `json:"chatwootReopenConversation,omitempty"`
ChatwootConversationPending bool `json:"chatwootConversationPending,omitempty"`
ChatwootImportContacts bool `json:"chatwootImportContacts,omitempty"`
ChatwootNameInbox string `json:"chatwootNameInbox,omitempty"`
ChatwootMergeBrazilContacts bool `json:"chatwootMergeBrazilContacts,omitempty"`
ChatwootImportMessages bool `json:"chatwootImportMessages,omitempty"`
ChatwootDaysLimitImportMessages int `json:"chatwootDaysLimitImportMessages,omitempty"`
ChatwootOrganization string `json:"chatwootOrganization,omitempty"`
ChatwootLogo string `json:"chatwootLogo,omitempty"`
}
type CreateInstanceRequestWebhook struct {
Url string `json:"url,omitempty"`
ByEvents bool `json:"byEvents,omitempty"`
Base64 bool `json:"base64,omitempty"`
Headers map[string]string `json:"headers,omitempty"`
Events []string `json:"events,omitempty"`
}
type CreateInstanceRequestRabbitMQ struct {
Enabled bool `json:"enabled,omitempty"`
Events []string `json:"events,omitempty"`
}
type CreateInstanceRequestSqs struct {
Enabled bool `json:"enabled,omitempty"`
Events []string `json:"events,omitempty"`
}
type CreateInstanceResponse struct {
Instance Instance `json:"instance,omitempty"`
Hash string `json:"hash,omitempty"`
Webhook CreateInstanceWebhookResponse `json:"webhook,omitempty"`
Websocket any `json:"websocket,omitempty"`
Rabbitmq CreateInstanceRabbitMQResponse `json:"rabbitmq,omitempty"`
Sqs CreateInstanceSqsResponse `json:"sqs,omitempty"`
Settings CreateInstanceSettingsResponse `json:"settings,omitempty"`
Qrcode CreateInstanceQrCodeResponse `json:"qrcode,omitempty"`
}
type Instance struct {
InstanceName string `json:"instanceName,omitempty"`
InstanceId string `json:"instanceId,omitempty"`
Integration string `json:"integration,omitempty"`
WebhookWaBusiness any `json:"webhookWaBusiness,omitempty"`
AccessTokenWaBusiness string `json:"accessTokenWaBusiness,omitempty"`
Status string `json:"status,omitempty"`
}
type CreateInstanceWebhookResponse struct {
WebhookUrl string `json:"webhookUrl,omitempty"`
WebhookHeaders map[string]string `json:"webhookHeaders,omitempty"`
WebhookByEvents bool `json:"webhookByEvents,omitempty"`
WebhookBase64 bool `json:"webhookBase64,omitempty"`
}
type CreateInstanceRabbitMQResponse struct {
Enabled bool `json:"enabled,omitempty"`
}
type CreateInstanceSqsResponse struct {
Enabled bool `json:"enabled,omitempty"`
}
type CreateInstanceSettingsResponse struct {
RejectCall bool `json:"rejectCall,omitempty"`
MsgCall string `json:"msgCall,omitempty"`
GroupsIgnore bool `json:"groupsIgnore,omitempty"`
AlwaysOnline bool `json:"alwaysOnline,omitempty"`
ReadMessages bool `json:"readMessages,omitempty"`
ReadStatus bool `json:"readStatus,omitempty"`
SyncFullHistory bool `json:"syncFullHistory,omitempty"`
}
type CreateInstanceQrCodeResponse struct {
PairingCode string `json:"pairingCode,omitempty"`
Code string `json:"code,omitempty"`
Base64 string `json:"base64,omitempty"`
Count int `json:"count,omitempty"`
}
func (s *Client) CreateInstance(ctx context.Context, req *CreateInstanceRequest) (*CreateInstanceResponse, error) {
resp, err := s.request(ctx, req, http.MethodPost, createInstanceEndpoint)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
bodyErr := errors.New(string(body))
return nil, fmt.Errorf("failed to start sessionKey with code %d: %w", resp.StatusCode, bodyErr)
}
var toReturn CreateInstanceResponse
if err = json.NewDecoder(resp.Body).Decode(&toReturn); err != nil {
return nil, err
}
return &toReturn, nil
}
type RestartInstanceResponse struct {
Instance Instance `json:"instance"`
}
func (s *Client) RestartInstance(ctx context.Context, instanceName string) (*RestartInstanceResponse, error) {
url := fmt.Sprintf(restartInstanceEndpoint, instanceName)
resp, err := s.request(ctx, nil, http.MethodPost, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to restart instance with code %d: %s", resp.StatusCode, string(body))
}
var result RestartInstanceResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return &result, nil
}
type LogoutInstanceResponse struct {
Status string `json:"status,omitempty"`
Error bool `json:"error,omitempty"`
Response LogoutResponse `json:"response,omitempty"`
}
type LogoutResponse struct {
Message string `json:"message,omitempty"`
}
func (s *Client) LogoutInstance(ctx context.Context, instanceName string) (*LogoutInstanceResponse, error) {
url := fmt.Sprintf(logoutInstanceEndpoint, instanceName)
resp, err := s.request(ctx, nil, http.MethodDelete, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to logout instance with code %d: %s", resp.StatusCode, string(body))
}
var result LogoutInstanceResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return &result, nil
}
type DeleteInstanceResponse struct {
Status string `json:"status,omitempty"`
Error bool `json:"error,omitempty"`
Response DeleteResponse `json:"response,omitempty"`
}
type DeleteResponse struct {
Message string `json:"message,omitempty"`
}
func (s *Client) DeleteInstance(ctx context.Context, instanceName string) (*DeleteInstanceResponse, error) {
url := fmt.Sprintf(deleteInstanceEndpoint, instanceName)
resp, err := s.request(ctx, nil, http.MethodDelete, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to delete instance with code %d: %s", resp.StatusCode, string(body))
}
var result DeleteInstanceResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return &result, nil
}
type GetInstanceConnectResponse struct {
PairingCode string `json:"pairingCode,omitempty"`
Code string `json:"code,omitempty"`
Base64 string `json:"base64,omitempty"`
Count int `json:"count,omitempty"`
}
func (s *Client) ConnectInstance(ctx context.Context, instanceName, number string) (*GetInstanceConnectResponse, error) {
url := fmt.Sprintf(getConnectInstanceEndpoint, instanceName)
if number != "" {
url += "?number=" + number
}
resp, err := s.request(ctx, nil, http.MethodGet, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to get connect instance with code %d: %s", resp.StatusCode, string(body))
}
var result GetInstanceConnectResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return &result, nil
}
type GetConnectionStateInstanceResponse struct {
Instance InstanceConnectionState `json:"instance,omitempty"`
}
type InstanceConnectionState struct {
InstanceName string `json:"instanceName,omitempty"`
State string `json:"state,omitempty"`
}
func (s *Client) ConnectionStateInstance(ctx context.Context, instanceName string) (*GetConnectionStateInstanceResponse, error) {
url := fmt.Sprintf(getConnectionStateInstanceEndpoint, instanceName)
resp, err := s.request(ctx, nil, http.MethodGet, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to get connection state from instance with code %d: %s", resp.StatusCode, string(body))
}
var result GetConnectionStateInstanceResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return &result, nil
}
type FetchInstancesRequestFilter struct {
InstanceName string `query:"instanceName"`
InstanceID string `query:"instanceId,omitempty"`
QRCode bool `query:"qrcode,omitempty"`
BusinessID string `query:"businessId,omitempty"`
Number string `query:"number,omitempty"`
Integration string `query:"integration,omitempty"`
Token string `query:"token,omitempty"`
Status string `query:"status,omitempty"`
// Settings
RejectCall bool `query:"rejectCall,omitempty"`
MsgCall string `query:"msgCall,omitempty"`
GroupsIgnore bool `query:"groupsIgnore,omitempty"`
AlwaysOnline bool `query:"alwaysOnline,omitempty"`
ReadMessages bool `query:"readMessages,omitempty"`
ReadStatus bool `query:"readStatus,omitempty"`
SyncFullHistory bool `query:"syncFullHistory,omitempty"`
// Proxy
ProxyHost string `query:"proxyHost,omitempty"`
ProxyPort string `query:"proxyPort,omitempty"`
ProxyProtocol string `query:"proxyProtocol,omitempty"`
ProxyUsername string `query:"proxyUsername,omitempty"`
ProxyPassword string `query:"proxyPassword,omitempty"`
}
type FetchInstancesResponse struct {
Id string `json:"id"`
Name string `json:"name"`
ConnectionStatus string `json:"connectionStatus"`
OwnerJid string `json:"ownerJid"`
ProfileName string `json:"profileName"`
ProfilePicUrl string `json:"profilePicUrl"`
Integration string `json:"integration"`
Number any `json:"number"`
BusinessId any `json:"businessId"`
Token string `json:"token"`
ClientName string `json:"clientName"`
DisconnectionReasonCode any `json:"disconnectionReasonCode"`
DisconnectionObject any `json:"disconnectionObject"`
DisconnectionAt any `json:"disconnectionAt"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
Chatwoot any `json:"Chatwoot"`
Proxy any `json:"Proxy"`
Rabbitmq any `json:"Rabbitmq"`
Sqs any `json:"Sqs"`
Websocket any `json:"Websocket"`
Setting CreateInstanceResponseSettings `json:"Setting"`
Count FetchInstancesResponseCount `json:"_count"`
}
type FetchInstancesResponseCount struct {
Message int `json:"Message"`
Contact int `json:"Contact"`
Chat int `json:"Chat"`
}
type CreateInstanceResponseSettings struct {
Id string `json:"id"`
RejectCall bool `json:"rejectCall"`
MsgCall string `json:"msgCall"`
GroupsIgnore bool `json:"groupsIgnore"`
AlwaysOnline bool `json:"alwaysOnline"`
ReadMessages bool `json:"readMessages"`
ReadStatus bool `json:"readStatus"`
SyncFullHistory bool `json:"syncFullHistory"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
InstanceId string `json:"instanceId"`
}
func (s *Client) FetchInstances(ctx context.Context, filter *FetchInstancesRequestFilter) ([]FetchInstancesResponse, error) {
var query string
var err error
if filter != nil {
query, err = StructToQueryString(*filter)
if err != nil {
return nil, err
}
}
url := fmt.Sprintf("%s?%s", fetchInstancesEndpoint, query)
resp, err := s.request(ctx, nil, http.MethodGet, url)
if err != nil {
return nil, fmt.Errorf("failed to make request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode > 399 {
body, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return nil, fmt.Errorf("failed to read error response body: %w", readErr)
}
return nil, fmt.Errorf("failed to get connect instance with code %d: %s", resp.StatusCode, string(body))
}
var result []FetchInstancesResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
return result, nil
}