-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(CIT) Script (Job) Recordatorio Turnos (#1943)
* (FEAT) Script (Job) Recordatorio Turnos * fix(CITAS): Cambia evento de envio por funcion local * Delete scripts/recordatorioTurnos2.ts --------- Co-authored-by: silviroa <[email protected]>
- Loading branch information
1 parent
6e5f903
commit 694951b
Showing
1 changed file
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
import moment = require('moment'); | ||
import { Agenda, AgendaSchema } from '../modules/turnos/schemas/agenda'; | ||
import { notificacionesLog } from '../modules/turnos/citasLog'; | ||
import { userScheduler } from '../config.private'; | ||
import * as mongoose from 'mongoose'; | ||
import { WebHook } from '../modules/webhook/webhook.schema'; | ||
import { WebHookLog } from '../modules/webhook/webhooklog/webhooklog.schema'; | ||
import { handleHttpRequest } from '../utils/requestHandler'; | ||
|
||
async function run(done) { | ||
try { | ||
await recorrerAgendas(); | ||
done(); | ||
} catch (error) { | ||
done(error); | ||
} | ||
} | ||
|
||
async function recorrerAgendas() { | ||
|
||
const fechaAgenda: Date = moment().add(1, 'days').toDate(); | ||
const match = { | ||
horaInicio: { | ||
$gte: moment(fechaAgenda).startOf('day').toDate(), | ||
$lte: moment(fechaAgenda).endOf('day').toDate() | ||
}, | ||
estado: { $in: ['disponible', 'publicada'] }, | ||
nominalizada: true, | ||
dinamica: false, | ||
enviarSms: true, | ||
'bloques.turnos.estado': 'asignado' | ||
}; | ||
|
||
const agendasMañana: any[] = await Agenda.find(match); | ||
for (let i = 0; i < agendasMañana.length; i++) { | ||
const agenda = agendasMañana[i]; | ||
for (let j = 0; j < agenda.bloques.length; j++) { | ||
const bloque = agenda.bloques[j]; | ||
for (let k = 0; k < bloque.turnos.length; k++) { | ||
const turno = bloque.turnos[k]; | ||
if (turno.estado === 'asignado' && turno.paciente) { | ||
await recordarTurno(agenda, turno); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
async function recordarTurno(agenda, turno) { | ||
try { | ||
if (turno?._id || turno.id) { | ||
const fechaMayor = moment(turno.horaInicio).toDate() > moment().toDate(); | ||
const idTurno = turno._id || turno.id; | ||
const datoAgenda = dataAgenda(agenda, idTurno); | ||
if (fechaMayor && turno.paciente.telefono && datoAgenda.organizacion) { | ||
const dtoMensaje: any = { | ||
idTurno: turno._id, | ||
mensaje: 'turno-recordatorio', | ||
telefono: turno.paciente.telefono, | ||
nombrePaciente: `${turno.paciente.apellido}, ${turno.paciente.alias ? turno.paciente.alias : turno.paciente.nombre}`, | ||
tipoPrestacion: turno.tipoPrestacion.term, | ||
fecha: moment(turno.horaInicio).locale('es').format('dddd DD [de] MMMM [de] YYYY [a las] HH:mm [Hs.]'), | ||
profesional: datoAgenda.profesionales ? datoAgenda.profesionales : '', | ||
organizacion: datoAgenda.organizacion ? datoAgenda.organizacion : '' | ||
}; | ||
await send('notificaciones:enviar', dtoMensaje); | ||
} | ||
} else { | ||
notificacionesLog.error('obteneIdTurno', { turno }, { error: 'No se encontró el turno' }, userScheduler); | ||
} | ||
} catch (unError) { | ||
notificacionesLog.error('obtenerAgenda', { turno }, unError, userScheduler); | ||
} | ||
}; | ||
|
||
function dataAgenda(agenda, idTurno) { | ||
let profesionales = ''; | ||
let organizacion = ''; | ||
try { | ||
if (agenda) { | ||
if (agenda.profesionales.length) { | ||
profesionales = 'con el/los profesionales '; | ||
for (const prof of agenda.profesionales) { | ||
profesionales += `${prof.nombre} ${prof.apellido}, `; | ||
} | ||
} | ||
organizacion = agenda.organizacion?.nombre; | ||
if (agenda.espacioFisico?.nombre) { | ||
organizacion += `, ${agenda.espacioFisico.nombre}`; | ||
} | ||
return { | ||
profesionales, | ||
organizacion | ||
}; | ||
} else { | ||
notificacionesLog.error('verificarAgenda:agenda', { turno: idTurno }, { error: 'agenda no encontrada' }, userScheduler); | ||
return null; | ||
} | ||
} catch (error) { | ||
notificacionesLog.error('verificarAgenda', { turno: idTurno }, { error: error.message }, userScheduler); | ||
return null; | ||
} | ||
} | ||
|
||
async function send(event, datos) { | ||
|
||
const subscriptions: any = await WebHook.findOne({ | ||
active: true, | ||
event | ||
}); | ||
|
||
if (subscriptions) { | ||
|
||
const data = { | ||
id: new mongoose.Types.ObjectId(), | ||
subscription: subscriptions._id, | ||
data: datos, | ||
event | ||
}; | ||
try { | ||
const resultado = await handleHttpRequest({ | ||
method: subscriptions.method, | ||
uri: subscriptions.url, | ||
headers: subscriptions.headers, | ||
body: data, | ||
json: true, | ||
timeout: 10000, | ||
}); | ||
|
||
return resultado; | ||
} catch (err) { | ||
notificacionesLog.error('envioNotificacion', { error: err }, userScheduler); | ||
return null; | ||
} | ||
|
||
} else { | ||
notificacionesLog.error('envioNotificacion', { turno: datos }, { error: 'evento no encontrado' }, userScheduler); | ||
return null; | ||
} | ||
|
||
} | ||
export = run; | ||
|
||
|