FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
evolution-api/src/api/controllers/sendMessage.controller.ts at main · rafwell/evolution-api · GitHub
rafwell
/
evolution-api
Public
forked from
evolution-foundation/evolution-api
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
evolution-api
/
src
/
api
/
controllers
/
sendMessage.controller.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
107 lines (89 loc) · 4.04 KB
Breadcrumbs
evolution-api
/
src
/
api
/
controllers
/
sendMessage.controller.ts
Copy path
File metadata and controls
107 lines (89 loc) · 4.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
{
InstanceDto
}
from
'@api/dto/instance.dto'
;
import
{
SendAudioDto
,
SendButtonsDto
,
SendContactDto
,
SendListDto
,
SendLocationDto
,
SendMediaDto
,
SendPollDto
,
SendPtvDto
,
SendReactionDto
,
SendStatusDto
,
SendStickerDto
,
SendTemplateDto
,
SendTextDto
,
}
from
'@api/dto/sendMessage.dto'
;
import
{
WAMonitoringService
}
from
'@api/services/monitor.service'
;
import
{
BadRequestException
}
from
'@exceptions'
;
import
{
isBase64
,
isURL
}
from
'class-validator'
;
import
emojiRegex
from
'emoji-regex'
;
const
regex
=
emojiRegex
(
)
;
function
isEmoji
(
str
:
string
)
{
if
(
str
===
''
)
return
true
;
const
match
=
str
.
match
(
regex
)
;
return
match
?.
length
===
1
&&
match
[
0
]
===
str
;
}
export
class
SendMessageController
{
constructor
(
private
readonly
waMonitor
:
WAMonitoringService
)
{
}
public
async
sendTemplate
(
{
instanceName
}
:
InstanceDto
,
data
:
SendTemplateDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
templateMessage
(
data
)
;
}
public
async
sendText
(
{
instanceName
}
:
InstanceDto
,
data
:
SendTextDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
textMessage
(
data
)
;
}
public
async
sendMedia
(
{
instanceName
}
:
InstanceDto
,
data
:
SendMediaDto
,
file
?:
any
)
{
if
(
isBase64
(
data
?.
media
)
&&
!
data
?.
fileName
&&
data
?.
mediatype
===
'document'
)
{
throw
new
BadRequestException
(
'For base64 the file name must be informed.'
)
;
}
if
(
file
||
isURL
(
data
?.
media
)
||
isBase64
(
data
?.
media
)
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
mediaMessage
(
data
,
file
)
;
}
throw
new
BadRequestException
(
'Owned media must be a url or base64'
)
;
}
public
async
sendPtv
(
{
instanceName
}
:
InstanceDto
,
data
:
SendPtvDto
,
file
?:
any
)
{
if
(
file
||
isURL
(
data
?.
video
)
||
isBase64
(
data
?.
video
)
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
ptvMessage
(
data
,
file
)
;
}
throw
new
BadRequestException
(
'Owned media must be a url or base64'
)
;
}
public
async
sendSticker
(
{
instanceName
}
:
InstanceDto
,
data
:
SendStickerDto
,
file
?:
any
)
{
if
(
file
||
isURL
(
data
.
sticker
)
||
isBase64
(
data
.
sticker
)
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
mediaSticker
(
data
,
file
)
;
}
throw
new
BadRequestException
(
'Owned media must be a url or base64'
)
;
}
public
async
sendWhatsAppAudio
(
{
instanceName
}
:
InstanceDto
,
data
:
SendAudioDto
,
file
?:
any
)
{
if
(
file
?.
buffer
||
isURL
(
data
.
audio
)
||
isBase64
(
data
.
audio
)
)
{
// Si file existe y tiene buffer, o si es una URL o Base64, continúa
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
audioWhatsapp
(
data
,
file
)
;
}
else
{
console
.
error
(
'El archivo no tiene buffer o el audio no es una URL o Base64 válida'
)
;
throw
new
BadRequestException
(
'Owned media must be a url, base64, or valid file with buffer'
)
;
}
}
public
async
sendButtons
(
{
instanceName
}
:
InstanceDto
,
data
:
SendButtonsDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
buttonMessage
(
data
)
;
}
public
async
sendLocation
(
{
instanceName
}
:
InstanceDto
,
data
:
SendLocationDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
locationMessage
(
data
)
;
}
public
async
sendList
(
{
instanceName
}
:
InstanceDto
,
data
:
SendListDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
listMessage
(
data
)
;
}
public
async
sendContact
(
{
instanceName
}
:
InstanceDto
,
data
:
SendContactDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
contactMessage
(
data
)
;
}
public
async
sendReaction
(
{
instanceName
}
:
InstanceDto
,
data
:
SendReactionDto
)
{
if
(
!
isEmoji
(
data
.
reaction
)
)
{
throw
new
BadRequestException
(
'Reaction must be a single emoji or empty string'
)
;
}
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
reactionMessage
(
data
)
;
}
public
async
sendPoll
(
{
instanceName
}
:
InstanceDto
,
data
:
SendPollDto
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
pollMessage
(
data
)
;
}
public
async
sendStatus
(
{
instanceName
}
:
InstanceDto
,
data
:
SendStatusDto
,
file
?:
any
)
{
return
await
this
.
waMonitor
.
waInstances
[
instanceName
]
.
statusMessage
(
data
,
file
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL