-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathmessage_service.go
More file actions
457 lines (380 loc) · 13.5 KB
/
message_service.go
File metadata and controls
457 lines (380 loc) · 13.5 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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package message_service
import (
"context"
"errors"
"fmt"
"net/http"
"os"
"strings"
"time"
instance_model "github.com/EvolutionAPI/evolution-go/pkg/instance/model"
logger_wrapper "github.com/EvolutionAPI/evolution-go/pkg/logger"
message_model "github.com/EvolutionAPI/evolution-go/pkg/message/model"
message_repository "github.com/EvolutionAPI/evolution-go/pkg/message/repository"
"github.com/EvolutionAPI/evolution-go/pkg/utils"
whatsmeow_service "github.com/EvolutionAPI/evolution-go/pkg/whatsmeow/service"
"github.com/vincent-petithory/dataurl"
"go.mau.fi/whatsmeow"
"go.mau.fi/whatsmeow/proto/waCommon"
"go.mau.fi/whatsmeow/proto/waE2E"
"go.mau.fi/whatsmeow/types"
"google.golang.org/protobuf/proto"
)
type MessageService interface {
React(data *ReactStruct, instance *instance_model.Instance) (*MessageSendStruct, error)
ChatPresence(data *ChatPresenceStruct, instance *instance_model.Instance) (string, error)
MarkRead(data *MarkReadStruct, instance *instance_model.Instance) (string, error)
DownloadMedia(data *DownloadMediaStruct, instance *instance_model.Instance, request *http.Request) (*dataurl.DataURL, string, error)
GetMessageStatus(data *MessageStatusStruct, instance *instance_model.Instance) (*message_model.Message, string, error)
DeleteMessageEveryone(data *MessageStruct, instance *instance_model.Instance) (string, string, error)
EditMessage(data *EditMessageStruct, instance *instance_model.Instance) (string, string, error)
}
type messageService struct {
clientPointer map[string]*whatsmeow.Client
messageRepository message_repository.MessageRepository
whatsmeowService whatsmeow_service.WhatsmeowService
loggerWrapper *logger_wrapper.LoggerManager
}
type ReactStruct struct {
Number string `json:"number"`
Reaction string `json:"reaction"`
Id string `json:"id"`
FromMe bool `json:"fromMe"`
Participant string `json:"participant,omitempty"`
}
type ChatPresenceStruct struct {
Number string `json:"number"`
State string `json:"state"`
IsAudio bool `json:"isAudio"`
}
type MarkReadStruct struct {
Id []string `json:"id"`
Number string `json:"number"`
}
type DownloadMediaStruct struct {
Message *waE2E.Message `json:"message"`
}
type MessageStatusStruct struct {
Id string `json:"id"`
}
type MessageStruct struct {
Chat string `json:"chat"`
MessageID string `json:"messageId"`
FromMe *bool `json:"fromMe"`
Participant string `json:"participant,omitempty"`
}
type EditMessageStruct struct {
Chat string `json:"chat"`
Message string `json:"message"`
MessageID string `json:"messageId"`
}
type MessageSendStruct struct {
Info types.MessageInfo
Message *waE2E.Message
MessageContextInfo *waE2E.ContextInfo
}
func (m *messageService) ensureClientConnected(instanceId string) (*whatsmeow.Client, error) {
client := m.clientPointer[instanceId]
m.loggerWrapper.GetLogger(instanceId).LogInfo("[%s] Checking client connection status - Client exists: %v", instanceId, client != nil)
if client == nil {
m.loggerWrapper.GetLogger(instanceId).LogInfo("[%s] No client found, attempting to start new instance", instanceId)
err := m.whatsmeowService.StartInstance(instanceId)
if err != nil {
m.loggerWrapper.GetLogger(instanceId).LogError("[%s] Failed to start instance: %v", instanceId, err)
return nil, errors.New("no active session found")
}
m.loggerWrapper.GetLogger(instanceId).LogInfo("[%s] Instance started, waiting 2 seconds...", instanceId)
time.Sleep(2 * time.Second)
client = m.clientPointer[instanceId]
m.loggerWrapper.GetLogger(instanceId).LogInfo("[%s] Checking new client - Exists: %v, Connected: %v",
instanceId,
client != nil,
client != nil && client.IsConnected())
if client == nil || !client.IsConnected() {
m.loggerWrapper.GetLogger(instanceId).LogError("[%s] New client validation failed - Exists: %v, Connected: %v",
instanceId,
client != nil,
client != nil && client.IsConnected())
return nil, errors.New("no active session found")
}
} else if !client.IsConnected() {
m.loggerWrapper.GetLogger(instanceId).LogError("[%s] Existing client is disconnected - Connected status: %v",
instanceId,
client.IsConnected())
return nil, errors.New("client disconnected")
}
m.loggerWrapper.GetLogger(instanceId).LogInfo("[%s] Client successfully validated - Connected: %v", instanceId, client.IsConnected())
return client, nil
}
func (m *messageService) React(data *ReactStruct, instance *instance_model.Instance) (*MessageSendStruct, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return nil, err
}
msgId := ""
recipient, ok := utils.ParseJID(data.Number)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error validating message fields", instance.Id)
return nil, errors.New("invalid phone number")
}
if data.Id == "" {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Missing Id in Payload", instance.Id)
return nil, errors.New("missing id in payload")
} else {
msgId = data.Id
}
fromMe := data.FromMe
reaction := data.Reaction
if reaction == "remove" {
reaction = ""
}
// Create MessageKey
messageKey := &waCommon.MessageKey{
RemoteJID: proto.String(recipient.String()),
FromMe: proto.Bool(fromMe),
ID: proto.String(msgId),
}
// Add participant if provided (for group messages)
if data.Participant != "" {
participantJID, ok := utils.ParseJID(data.Participant)
if ok {
messageKey.Participant = proto.String(participantJID.String())
}
}
msg := &waE2E.Message{
ReactionMessage: &waE2E.ReactionMessage{
Key: messageKey,
Text: proto.String(reaction),
// GroupingKey: proto.String(reaction),
SenderTimestampMS: proto.Int64(time.Now().UnixMilli()),
},
}
response, err := client.SendMessage(context.Background(), recipient, msg, whatsmeow.SendRequestExtra{
ID: msgId,
})
if err != nil {
return nil, err
}
isGroup := strings.Contains(data.Number, "@g.us")
messageType := "ReactionMessage"
messageInfo := types.MessageInfo{
MessageSource: types.MessageSource{
Chat: recipient,
Sender: *client.Store.ID,
IsFromMe: true,
IsGroup: isGroup,
},
ID: msgId,
Timestamp: time.Now(),
ServerID: response.ServerID,
Type: messageType,
}
messageSent := &MessageSendStruct{
Info: messageInfo,
Message: msg,
}
return messageSent, nil
}
func (m *messageService) ChatPresence(data *ChatPresenceStruct, instance *instance_model.Instance) (string, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return "", err
}
var ts time.Time
recipient, ok := utils.ParseJID(data.Number)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error validating message fields", instance.Id)
return "", errors.New("invalid phone number")
}
media := ""
if data.IsAudio {
media = "audio"
}
err = client.SendChatPresence(context.Background(), recipient, types.ChatPresence(data.State), types.ChatPresenceMedia(media))
if err != nil {
return "", err
}
m.loggerWrapper.GetLogger(instance.Id).LogInfo("Message sent to %s", data.Number)
return ts.String(), nil
}
func (m *messageService) MarkRead(data *MarkReadStruct, instance *instance_model.Instance) (string, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return "", err
}
var ts time.Time
jid, ok := utils.ParseJID(data.Number)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error validating message fields", instance.Id)
return "", errors.New("invalid phone number")
}
err = client.MarkRead(context.Background(), data.Id, time.Now(), jid, jid)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] error marking message as read: %v", instance.Id, err)
return "", errors.New("error marking message as read")
}
return ts.String(), nil
}
func (m *messageService) DownloadMedia(data *DownloadMediaStruct, instance *instance_model.Instance, request *http.Request) (*dataurl.DataURL, string, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return nil, "", err
}
var ts time.Time
msg := data.Message
mimetype := ""
var mediaData []byte
img := msg.GetImageMessage()
audio := msg.GetAudioMessage()
document := msg.GetDocumentMessage()
video := msg.GetVideoMessage()
sticker := msg.GetStickerMessage()
if img == nil && audio == nil && document == nil && video == nil && sticker == nil {
return nil, "", errors.New("invalid media type")
}
userDirectory := fmt.Sprintf(`files/user_%s`, instance.Id)
_, err = os.Stat(userDirectory)
if os.IsNotExist(err) {
errDir := os.MkdirAll(userDirectory, 0751)
if errDir != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Could not create user directory (%s)", instance.Id, userDirectory)
return nil, "", errDir
}
}
if img != nil {
mediaData, err = client.Download(context.Background(), img)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Failed to download image", instance.Id)
msg := fmt.Sprintf("Failed to download image %v", err)
return nil, "", errors.New(msg)
}
mimetype = img.GetMimetype()
}
if audio != nil {
mediaData, err = client.Download(context.Background(), audio)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Failed to download audio", instance.Id)
msg := fmt.Sprintf("Failed to download audio %v", err)
return nil, "", errors.New(msg)
}
mimetype = audio.GetMimetype()
}
if document != nil {
mediaData, err = client.Download(context.Background(), document)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Failed to download document", instance.Id)
msg := fmt.Sprintf("Failed to download document %v", err)
return nil, "", errors.New(msg)
}
mimetype = document.GetMimetype()
}
if video != nil {
mediaData, err = client.Download(context.Background(), video)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Failed to download video", instance.Id)
msg := fmt.Sprintf("Failed to download video %v", err)
return nil, "", errors.New(msg)
}
mimetype = video.GetMimetype()
}
if sticker != nil {
mediaData, err = client.Download(context.Background(), sticker)
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Failed to download sticker", instance.Id)
msg := fmt.Sprintf("Failed to download sticker %v", err)
return nil, "", errors.New(msg)
}
mimetype = sticker.GetMimetype()
}
dataURL := dataurl.New(mediaData, mimetype)
return dataURL, ts.String(), nil
}
func (m *messageService) GetMessageStatus(data *MessageStatusStruct, instance *instance_model.Instance) (*message_model.Message, string, error) {
_, err := m.ensureClientConnected(instance.Id)
if err != nil {
return nil, "", err
}
var ts time.Time
result, err := m.messageRepository.GetMessageByID(data.Id)
if err != nil {
return nil, "", err
}
return result, ts.String(), nil
}
func (m *messageService) DeleteMessageEveryone(data *MessageStruct, instance *instance_model.Instance) (string, string, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return "", "", err
}
var ts time.Time
recipient, ok := utils.ParseJID(data.Chat)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error validating message fields", instance.Id)
return "", "", errors.New("invalid phone number")
}
var senderJID types.JID
if data.FromMe == nil || *data.FromMe {
senderJID = types.EmptyJID
} else {
if data.Participant == "" {
return "", "", errors.New("participant is required to delete a message from another user")
}
parsedJID, ok := utils.ParseJID(data.Participant)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error parsing participant JID for non-FromMe message: %s", instance.Id, data.Participant)
return "", "", errors.New("invalid participant JID")
}
senderJID = parsedJID
}
m.loggerWrapper.GetLogger(instance.Id).LogInfo("Revoking message %s from %s", data.MessageID, recipient)
resp, err := client.SendMessage(
context.Background(),
recipient,
client.BuildRevoke(recipient, senderJID, data.MessageID))
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] error revoking message: %v", instance.Id, err)
return "", "", err
}
response := resp.ID
return response, ts.String(), nil
}
func (m *messageService) EditMessage(data *EditMessageStruct, instance *instance_model.Instance) (string, string, error) {
client, err := m.ensureClientConnected(instance.Id)
if err != nil {
return "", "", err
}
var ts time.Time
recipient, ok := utils.ParseJID(data.Chat)
if !ok {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] Error validating message fields", instance.Id)
return "", "", errors.New("invalid phone number")
}
resp, err := client.SendMessage(
context.Background(),
recipient,
client.BuildEdit(
recipient,
data.MessageID,
&waE2E.Message{
Conversation: proto.String(data.Message),
}))
if err != nil {
m.loggerWrapper.GetLogger(instance.Id).LogError("[%s] error revoking message: %v", instance.Id, err)
return "", "", err
}
response := resp.ID
return response, ts.String(), nil
}
func NewMessageService(
clientPointer map[string]*whatsmeow.Client,
messageRepository message_repository.MessageRepository,
whatsmeowService whatsmeow_service.WhatsmeowService,
loggerWrapper *logger_wrapper.LoggerManager,
) MessageService {
return &messageService{
clientPointer: clientPointer,
messageRepository: messageRepository,
whatsmeowService: whatsmeowService,
loggerWrapper: loggerWrapper,
}
}