Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
node_crisp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
web
node_crisp
Commits
6de9840e
Commit
6de9840e
authored
Aug 17, 2021
by
Sebastián Long
Browse files
Options
Browse Files
Download
Plain Diff
Finish optional-chaining
parents
7df77577
ed74bdda
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
sendinblue.js
endpoints/sendinblue.js
+4
-4
handlers.js
handlers.js
+1
-0
index.js
index.js
+1
-1
No files found.
endpoints/sendinblue.js
View file @
6de9840e
...
@@ -18,7 +18,7 @@ async function saveContactToList(email, nombres, apellidos, sms, listId){
...
@@ -18,7 +18,7 @@ async function saveContactToList(email, nombres, apellidos, sms, listId){
addContactToList
(
email
,
listId
);
addContactToList
(
email
,
listId
);
})
})
.
catch
(
function
(
error
)
{
.
catch
(
function
(
error
)
{
console
.
log
(
`Error al crear/actualizar usuario en sendinblue:
${
JSON
.
stringify
(
error
?.
response
?
.
data
)}
`);
console
.
log
(
`Error al crear/actualizar usuario en sendinblue:
${
JSON
.
stringify
(
error
.
response
.
data
)}
`
);
});
});
}
}
...
@@ -39,8 +39,8 @@ async function createOrUpdateContact(email, nombres, apellidos, sms){
...
@@ -39,8 +39,8 @@ async function createOrUpdateContact(email, nombres, apellidos, sms){
return
response
.
data
;
return
response
.
data
;
})
})
.
catch
(
async
function
(
error
)
{
.
catch
(
async
function
(
error
)
{
if(error
?.response?.data?
.code === ERROR_CODE_DUPLICATE_PARAMETER){
if
(
error
.
response
.
data
.
code
===
ERROR_CODE_DUPLICATE_PARAMETER
){
console.log(error
?.response?
.data)
console
.
log
(
error
.
response
.
data
)
return
await
sendinblueClient
.
put
(
encodeURI
(
`/contacts/
${
email
}
`
),
{
return
await
sendinblueClient
.
put
(
encodeURI
(
`/contacts/
${
email
}
`
),
{
"attributes"
:
{
"attributes"
:
{
"NOMBRE"
:
nombres
,
"NOMBRE"
:
nombres
,
...
@@ -64,7 +64,7 @@ async function addContactToList(email, listId){
...
@@ -64,7 +64,7 @@ async function addContactToList(email, listId){
return
response
.
data
;
return
response
.
data
;
})
})
.
catch
(
async
function
(
error
)
{
.
catch
(
async
function
(
error
)
{
console.log(`
Error
al
agregar
al
usuario
$
{
email
}
a
la
lista
$
{
listId
}:
$
{
JSON
.
stringify
(
error
?.
response
?
.
data
)}
`);
console
.
log
(
`Error al agregar al usuario
${
email
}
a la lista
${
listId
}
:
${
JSON
.
stringify
(
error
.
response
.
data
)}
`
);
});
});
}
}
...
...
handlers.js
View file @
6de9840e
...
@@ -274,6 +274,7 @@ module.exports =
...
@@ -274,6 +274,7 @@ module.exports =
let
telefonoMedico
=
siguientesTurnos
.
tel
;
let
telefonoMedico
=
siguientesTurnos
.
tel
;
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Disculpe, el doctor
${
userData
[
NOMBRE_MEDICO
]}
no tiene turnos proximos disponibles`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Disculpe, el doctor
${
userData
[
NOMBRE_MEDICO
]}
no tiene turnos proximos disponibles`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Le sugiero llamar al teléfono
${
telefonoMedico
}
para coordinar un turno telefónicamente`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Le sugiero llamar al teléfono
${
telefonoMedico
}
para coordinar un turno telefónicamente`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Si desea reservar un turno con otro médico, por favor escriba: REINICIAR`
);
}
else
{
}
else
{
await
crisp
.
setSiguientePaso
(
website_id
,
session_id
,
pasos
.
RESP_FECHA_TURNO
,
userData
);
await
crisp
.
setSiguientePaso
(
website_id
,
session_id
,
pasos
.
RESP_FECHA_TURNO
,
userData
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Cuándo querrías atenderte con
${
userData
[
NOMBRE_MEDICO
]}
? (DD/MM/AAAA)`
);
await
crisp
.
sendTextMessage
(
website_id
,
session_id
,
`Cuándo querrías atenderte con
${
userData
[
NOMBRE_MEDICO
]}
? (DD/MM/AAAA)`
);
...
...
index.js
View file @
6de9840e
...
@@ -18,7 +18,7 @@ async function darSiguientePaso(message, website_id, session_id) {
...
@@ -18,7 +18,7 @@ async function darSiguientePaso(message, website_id, session_id) {
}
}
crisp
.
CrispClient
.
on
(
"message:send"
,
async
function
(
message
)
{
crisp
.
CrispClient
.
on
(
"message:send"
,
async
function
(
message
)
{
if
(
message
.
content
===
'reiniciar
'
){
if
(
message
.
content
.
toUpperCase
()
===
'REINICIAR
'
){
await
crisp
.
updateUserData
(
message
.
website_id
,
message
.
session_id
,
{});
await
crisp
.
updateUserData
(
message
.
website_id
,
message
.
session_id
,
{});
}
}
let
siguientePaso
=
await
crisp
.
getSiguientePaso
(
message
.
website_id
,
message
.
session_id
);
let
siguientePaso
=
await
crisp
.
getSiguientePaso
(
message
.
website_id
,
message
.
session_id
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment