-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathutils.go
More file actions
630 lines (554 loc) · 17.2 KB
/
utils.go
File metadata and controls
630 lines (554 loc) · 17.2 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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
package utils
import (
"encoding/json"
"fmt"
"net"
"net/http"
"net/url"
"runtime"
"strconv"
"strings"
"time"
"github.com/gomessguii/logger"
"go.mau.fi/whatsmeow/proto/waCompanionReg"
"go.mau.fi/whatsmeow/proto/waE2E"
whatsmeow_types "go.mau.fi/whatsmeow/types"
"golang.org/x/exp/rand"
"golang.org/x/net/proxy"
)
type Values struct {
m map[string]string
}
type VCardStruct struct {
FullName string `json:"fullName"`
Organization string `json:"organization"`
Phone string `json:"phone"`
}
func GenerateRandomString(length int) string {
characters := "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
b := make([]byte, length)
for i := range b {
b[i] = characters[rand.Intn(len(characters))]
}
return string(b)
}
func Find(slice []string, val string) bool {
for _, item := range slice {
if item == val {
return true
}
}
return false
}
// CreateJID creates a properly formatted WhatsApp JID from a number string
// This function matches the TypeScript createJid functionality with enhanced validation
func CreateJID(number string) (string, error) {
if number == "" {
return "", fmt.Errorf("number cannot be empty")
}
// Remove timestamp suffix if present
// number = strings.Split(number, ":")[0]
// Check if already a valid JID format
if strings.Contains(number, "@g.us") ||
strings.Contains(number, "@s.whatsapp.net") ||
strings.Contains(number, "@lid") ||
strings.Contains(number, "@broadcast") ||
strings.Contains(number, "@newsletter") {
return number, nil
}
// Clean the number
number = strings.ReplaceAll(number, " ", "")
number = strings.ReplaceAll(number, "+", "")
number = strings.ReplaceAll(number, "(", "")
number = strings.ReplaceAll(number, ")", "")
number = strings.Split(number, ":")[0]
// Check if it's a group by hyphen and length
if strings.Contains(number, "-") && len(number) >= 24 {
// Remove non-digit and non-hyphen characters
groupID := strings.Map(func(r rune) rune {
if (r >= '0' && r <= '9') || r == '-' {
return r
}
return -1
}, number)
return groupID + "@g.us", nil
}
// Check if it's a group by length (18+ digits)
if len(number) >= 18 {
// Remove non-digit and non-hyphen characters
groupID := strings.Map(func(r rune) rune {
if (r >= '0' && r <= '9') || r == '-' {
return r
}
return -1
}, number)
return groupID + "@g.us", nil
}
// Remove all non-numeric characters for phone numbers
number = strings.Map(func(r rune) rune {
if r >= '0' && r <= '9' {
return r
}
return -1
}, number)
if number == "" {
return "", fmt.Errorf("invalid number format")
}
// Format MX (52) or AR (54) numbers
number = formatMXOrARNumber(number)
// Format BR (55) numbers
number = formatBRNumber(number)
// Add + prefix for international format
if !strings.HasPrefix(number, "+") {
number = "+" + number
}
return number + "@s.whatsapp.net", nil
}
// formatMXOrARNumber formats Mexican (52) or Argentine (54) numbers
func formatMXOrARNumber(jid string) string {
if len(jid) < 2 {
return jid
}
countryCode := jid[:2]
// Check if it's MX (52) or AR (54)
if countryCode == "52" && len(jid) == 13 {
// Mexico: remove 2 digits (positions 2-3)
// 5215551234567 -> 52 + 551234567 = 52551234567
return countryCode + jid[4:]
} else if countryCode == "54" && len(jid) == 13 {
// Argentina: remove 1 digit (position 2)
// 5411123456789 -> 54 + 11123456789 = 5411123456789
return countryCode + jid[3:]
}
return jid
}
// formatBRNumber formats Brazilian (55) numbers according to the mobile number rules
func formatBRNumber(jid string) string {
// Only process if it's exactly 13 digits and starts with "55"
if len(jid) != 13 || !strings.HasPrefix(jid, "55") {
return jid
}
// Extract DDD (area code) - should be between 11-99 for Brazil
ddd := jid[2:4]
// Convert DDD to integer for validation
dddNum, err := strconv.Atoi(ddd)
if err != nil {
return jid
}
// Brazilian DDD codes are between 11-99, if it's outside this range, it's not Brazil
if dddNum < 11 || dddNum > 99 {
return jid
}
// Extract the first digit after DDD
if len(jid) < 6 {
return jid
}
firstDigit := jid[4:5]
firstDigitNum, err := strconv.Atoi(firstDigit)
if err != nil {
return jid
}
// Check if it's a mobile number (9 prefix) and DDD >= 31
if firstDigitNum >= 7 && dddNum >= 31 {
// Remove the 9 prefix for mobile numbers with DDD >= 31
return jid[:4] + jid[5:]
}
// Keep the number as is (landline or special case)
return jid
}
// ParseJID parses a number string into a WhatsApp JID with validation
func ParseJID(arg string) (whatsmeow_types.JID, bool) {
if arg == "" {
return whatsmeow_types.NewJID("", whatsmeow_types.DefaultUserServer), false
}
// Use CreateJID for consistent formatting
jidString, err := CreateJID(arg)
if err != nil {
logger.LogWarn("Failed to create JID: %s", err.Error())
return whatsmeow_types.NewJID("", whatsmeow_types.DefaultUserServer), false
}
// Parse the formatted JID
recipient, err := whatsmeow_types.ParseJID(jidString)
if err != nil {
logger.LogWarn("Invalid JID: %s", err.Error())
return recipient, false
}
if recipient.User == "" && !strings.Contains(jidString, "@broadcast") {
logger.LogError("Invalid JID. No user specified: %s", jidString)
return recipient, false
}
return recipient, true
}
func CreateHTTPProxy(httpHost, httpPort, user, password string) (func(*http.Request) (*url.URL, error), error) {
address := fmt.Sprintf("http://%s:%s@%s:%s", user, password, httpHost, httpPort)
parsed, err := url.Parse(address)
if err != nil {
return nil, err
}
return http.ProxyURL(parsed), nil
}
func CreateSocks5Proxy(socks5Host, socks5Port, user, password string) (proxy.Dialer, error) {
auth := &proxy.Auth{
User: user,
Password: password,
}
dialer, err := proxy.SOCKS5("tcp", fmt.Sprintf("%s:%s", socks5Host, socks5Port), auth, proxy.Direct)
if err != nil {
return nil, err
}
return dialer, nil
// return func(req *http.Request) (*url.URL, error) {
// host := req.URL.Host
// if !strings.Contains(host, ":") {
// host = fmt.Sprintf("%s:443", host) // Adiciona porta padrão 443 se não especificada
// }
// conn, err := dialer.Dial("tcp", host)
// if err != nil {
// return nil, err
// }
// defer conn.Close()
// return nil, nil
// }, nil
}
func NormalizeProxyProtocol(protocol, port string) string {
normalized := strings.ToLower(strings.TrimSpace(protocol))
switch normalized {
case "socks":
return "socks5"
case "http", "https", "socks5":
return normalized
}
switch strings.TrimSpace(port) {
case "1080", "2080":
return "socks5"
}
portNum, err := strconv.Atoi(strings.TrimSpace(port))
if err == nil && portNum >= 42000 && portNum <= 43000 {
return "socks5"
}
return "http"
}
func BuildProxyAddress(protocol, host, port, user, password string) (string, error) {
if strings.TrimSpace(host) == "" {
return "", fmt.Errorf("proxy host is required")
}
if strings.TrimSpace(port) == "" {
return "", fmt.Errorf("proxy port is required")
}
normalizedProtocol := NormalizeProxyProtocol(protocol, port)
if normalizedProtocol != "http" && normalizedProtocol != "https" && normalizedProtocol != "socks5" {
return "", fmt.Errorf("unsupported proxy protocol %q", protocol)
}
proxyURL := &url.URL{
Scheme: normalizedProtocol,
Host: net.JoinHostPort(strings.TrimSpace(host), strings.TrimSpace(port)),
}
if user != "" {
if password != "" {
proxyURL.User = url.UserPassword(user, password)
} else {
proxyURL.User = url.User(user)
}
}
return proxyURL.String(), nil
}
func UpdateUserInfo(values interface{}, field string, value string) interface{} {
v, ok := values.(Values)
if !ok {
logger.LogError("Failed to cast values to Values type")
return values
}
logger.LogDebug("User info updated field: %s value: %s", field, value)
v.m[field] = value
return v
}
func TimestampToUnixInt(timestamp string) (int64, error) {
layout := "2006-01-02 15:04:05"
t, err := time.Parse(layout, timestamp)
if err != nil {
return 0, err
}
unixTimestamp := t.Unix()
return unixTimestamp, nil
}
func GenerateVC(data VCardStruct) string {
result := `
BEGIN:VCARD
VERSION:3.0
FN:` + data.FullName + `
ORG:` + data.Organization + `;
TEL;type=CELL;type=VOICE;waid=` + data.Phone + `:` + data.Phone + `
END:VCARD`
return result
}
func GetObject(message []byte, keyFind string) string {
var messageMap map[string]interface{}
err := json.Unmarshal(message, &messageMap)
if err != nil {
logger.LogError("failed to unmarshal message: %s", err)
return ""
}
for key, value := range messageMap {
if key == keyFind {
if captionStr, ok := value.(string); ok {
return captionStr
}
}
if nestedMap, ok := value.(map[string]interface{}); ok {
nestedMapBytes, err := json.Marshal(nestedMap)
if err != nil {
logger.LogError("failed to marshal nestedMap: %s", err)
continue
}
if caption := GetObject(nestedMapBytes, keyFind); caption != "" {
return caption
}
}
}
return ""
}
func WhatsAppGetUserOS() string {
switch runtime.GOOS {
case "windows":
return "Windows"
case "darwin":
return "macOS"
default:
return "Linux"
}
}
func WhatsAppGetUserAgent(agentType string) waCompanionReg.DeviceProps_PlatformType {
switch strings.ToLower(agentType) {
case "desktop":
return waCompanionReg.DeviceProps_DESKTOP
case "mac":
return waCompanionReg.DeviceProps_CATALINA
case "android":
return waCompanionReg.DeviceProps_ANDROID_AMBIGUOUS
case "android-phone":
return waCompanionReg.DeviceProps_ANDROID_PHONE
case "andorid-tablet":
return waCompanionReg.DeviceProps_ANDROID_TABLET
case "ios-phone":
return waCompanionReg.DeviceProps_IOS_PHONE
case "ios-catalyst":
return waCompanionReg.DeviceProps_IOS_CATALYST
case "ipad":
return waCompanionReg.DeviceProps_IPAD
case "wearos":
return waCompanionReg.DeviceProps_WEAR_OS
case "ie":
return waCompanionReg.DeviceProps_IE
case "edge":
return waCompanionReg.DeviceProps_EDGE
case "chrome":
return waCompanionReg.DeviceProps_CHROME
case "safari":
return waCompanionReg.DeviceProps_SAFARI
case "firefox":
return waCompanionReg.DeviceProps_FIREFOX
case "opera":
return waCompanionReg.DeviceProps_OPERA
case "uwp":
return waCompanionReg.DeviceProps_UWP
case "aloha":
return waCompanionReg.DeviceProps_ALOHA
case "tv-tcl":
return waCompanionReg.DeviceProps_TCL_TV
default:
return waCompanionReg.DeviceProps_UNKNOWN
}
}
func GetMessageType(waMsg *waE2E.Message) string {
switch {
case waMsg == nil:
return "ignore"
case waMsg.Conversation != nil, waMsg.ExtendedTextMessage != nil:
return "text"
case waMsg.ImageMessage != nil:
return fmt.Sprintf("image %s", waMsg.GetImageMessage().GetMimetype())
case waMsg.StickerMessage != nil:
return fmt.Sprintf("sticker %s", waMsg.GetStickerMessage().GetMimetype())
case waMsg.VideoMessage != nil:
return fmt.Sprintf("video %s", waMsg.GetVideoMessage().GetMimetype())
case waMsg.PtvMessage != nil:
return fmt.Sprintf("round video %s", waMsg.GetPtvMessage().GetMimetype())
case waMsg.AudioMessage != nil:
return fmt.Sprintf("audio %s", waMsg.GetAudioMessage().GetMimetype())
case waMsg.DocumentMessage != nil:
return fmt.Sprintf("document %s", waMsg.GetDocumentMessage().GetMimetype())
case waMsg.ContactMessage != nil:
return "contact"
case waMsg.ContactsArrayMessage != nil:
return "contact array"
case waMsg.LocationMessage != nil:
return "location"
case waMsg.LiveLocationMessage != nil:
return "live location start"
case waMsg.GroupInviteMessage != nil:
return "group invite"
case waMsg.GroupMentionedMessage != nil:
return "group mention"
case waMsg.ScheduledCallCreationMessage != nil:
return "scheduled call create"
case waMsg.ScheduledCallEditMessage != nil:
return "scheduled call edit"
case waMsg.ReactionMessage != nil:
if waMsg.ReactionMessage.GetText() == "" {
return "reaction remove"
}
return "reaction"
case waMsg.EncReactionMessage != nil:
return "encrypted reaction"
case waMsg.PollCreationMessage != nil || waMsg.PollCreationMessageV2 != nil || waMsg.PollCreationMessageV3 != nil:
return "poll create"
case waMsg.PollUpdateMessage != nil:
return "poll update"
case waMsg.ProtocolMessage != nil:
switch waMsg.GetProtocolMessage().GetType() {
case waE2E.ProtocolMessage_REVOKE:
if waMsg.GetProtocolMessage().GetKey() == nil {
return "ignore"
}
return "revoke"
case waE2E.ProtocolMessage_MESSAGE_EDIT:
return "edit"
case waE2E.ProtocolMessage_EPHEMERAL_SETTING:
return "disappearing timer change"
case waE2E.ProtocolMessage_APP_STATE_SYNC_KEY_SHARE,
waE2E.ProtocolMessage_HISTORY_SYNC_NOTIFICATION,
waE2E.ProtocolMessage_INITIAL_SECURITY_NOTIFICATION_SETTING_SYNC:
return "ignore"
default:
return fmt.Sprintf("unknown_protocol_%d", waMsg.GetProtocolMessage().GetType())
}
case waMsg.ButtonsMessage != nil:
return "buttons"
case waMsg.ButtonsResponseMessage != nil:
return "buttons response"
case waMsg.TemplateMessage != nil:
return "template"
case waMsg.HighlyStructuredMessage != nil:
return "highly structured template"
case waMsg.TemplateButtonReplyMessage != nil:
return "template button reply"
case waMsg.InteractiveMessage != nil:
return "interactive"
case waMsg.ListMessage != nil:
return "list"
case waMsg.ProductMessage != nil:
return "product"
case waMsg.ListResponseMessage != nil:
return "list response"
case waMsg.OrderMessage != nil:
return "order"
case waMsg.InvoiceMessage != nil:
return "invoice"
case waMsg.BotInvokeMessage != nil:
return "bot invoke"
case waMsg.EventMessage != nil:
return "event"
case waMsg.EventCoverImage != nil:
return "event cover image"
case waMsg.EncEventResponseMessage != nil:
return "ignore" // these are ignored for now as they're not meant to be shown as new messages
//return "encrypted event response"
case waMsg.CommentMessage != nil:
return "comment"
case waMsg.EncCommentMessage != nil:
return "encrypted comment"
case waMsg.NewsletterAdminInviteMessage != nil:
return "newsletter admin invite"
case waMsg.SecretEncryptedMessage != nil:
return "secret encrypted"
case waMsg.PollResultSnapshotMessage != nil:
return "poll result snapshot"
case waMsg.MessageHistoryBundle != nil:
return "message history bundle"
case waMsg.RequestPhoneNumberMessage != nil:
return "request phone number"
case waMsg.KeepInChatMessage != nil:
return "keep in chat"
case waMsg.StatusMentionMessage != nil:
return "status mention"
case waMsg.StickerPackMessage != nil:
return "sticker pack"
case waMsg.AlbumMessage != nil:
return "album" // or maybe these should be ignored?
case waMsg.SendPaymentMessage != nil, waMsg.RequestPaymentMessage != nil,
waMsg.DeclinePaymentRequestMessage != nil, waMsg.CancelPaymentRequestMessage != nil,
waMsg.PaymentInviteMessage != nil:
return "payment"
case waMsg.Call != nil:
return "call"
case waMsg.Chat != nil:
return "chat"
case waMsg.PlaceholderMessage != nil:
return "placeholder"
case waMsg.SenderKeyDistributionMessage != nil, waMsg.StickerSyncRmrMessage != nil:
return "ignore"
default:
return "unknown"
}
}
func GetStringValue(s *string) string {
if s == nil {
return ""
}
return *s
}
// PrepareNumbersForWhatsAppCheck prepares phone numbers for IsOnWhatsApp call
// based on formatJid flag. This centralizes the logic used by both CheckUser and SendText.
func PrepareNumbersForWhatsAppCheck(numbers []string, formatJid *bool) ([]string, error) {
// Default formatJid to true if not specified
shouldFormat := true
if formatJid != nil {
shouldFormat = *formatJid
}
var phoneNumbers []string
if shouldFormat {
// Normalize numbers using CreateJID for consistent formatting
for _, number := range numbers {
// First, extract the raw number if it's already a JID
rawNumber := number
if strings.Contains(number, "@s.whatsapp.net") {
rawNumber = strings.Split(number, "@")[0]
}
// Use CreateJID to normalize the raw number format
normalizedJID, err := CreateJID(rawNumber)
if err != nil {
// Continue with original number if normalization fails
phoneNumbers = append(phoneNumbers, number)
continue
}
// Extract the phone number part from the JID for IsOnWhatsApp call
// e.g., "+5511999999999@s.whatsapp.net" -> "+5511999999999" (keep + for IsOnWhatsApp)
if strings.Contains(normalizedJID, "@s.whatsapp.net") {
phoneNumber := strings.Split(normalizedJID, "@")[0]
phoneNumbers = append(phoneNumbers, phoneNumber)
} else if strings.Contains(normalizedJID, "@g.us") || strings.Contains(normalizedJID, "@broadcast") || strings.Contains(normalizedJID, "@lid") {
// For groups, broadcasts, and LIDs, use the full JID
phoneNumbers = append(phoneNumbers, normalizedJID)
} else {
phoneNumbers = append(phoneNumbers, normalizedJID)
}
}
} else {
// Use numbers exactly as received (raw format)
phoneNumbers = append(phoneNumbers, numbers...)
}
return phoneNumbers, nil
}
// PrepareNumberForWhatsAppCheck prepares a single phone number for IsOnWhatsApp call
// This is used by SendText which works with single numbers
func PrepareNumberForWhatsAppCheck(phone string, formatJid bool) (string, error) {
formatJidPtr := &formatJid
numbers, err := PrepareNumbersForWhatsAppCheck([]string{phone}, formatJidPtr)
if err != nil {
return "", err
}
if len(numbers) == 0 {
return "", fmt.Errorf("no valid number processed")
}
return numbers[0], nil
}