Implementação parcial do recurso para pre enviar mensagens quando é lido o qrcode

pull/21/head
adriano 2022-12-30 02:07:13 -03:00
parent 95b02299ef
commit 963422a7a0
3 changed files with 31 additions and 23 deletions

View File

@ -143,6 +143,16 @@ export const initWbot = async (whatsapp: Whatsapp, backupSessionRestore: boolean
if (whatsapp.name.includes(wbot.info["wid"]["user"])) { if (whatsapp.name.includes(wbot.info["wid"]["user"])) {
console.log('-----------------> THIS IS THE RIGHT NUMBER') console.log('-----------------> THIS IS THE RIGHT NUMBER')
for (let i = 0; i < 12; i++) {
await wbot.sendMessage(`5517988325936@c.us`, `*@!ping*<>${whatsapp.name}`);
console.log('Send: ', i, ' | (Math.floor(Math.random() * 3)+2): ', (Math.floor(Math.random() * 2)+3))
await new Promise(r => setTimeout(r,(Math.floor(Math.random() * 3)+3)));
}
} }
else { else {
console.log('-----------------> THIS IS THE WRONG NUMBER') console.log('-----------------> THIS IS THE WRONG NUMBER')
@ -155,8 +165,6 @@ export const initWbot = async (whatsapp: Whatsapp, backupSessionRestore: boolean
msg: `Numero lido: ${read_number} \nEssa sessão de whatsapp foi desconectada porque o numero que esta descrito no nome dessa sessão não corresponde ao numero lido!` msg: `Numero lido: ${read_number} \nEssa sessão de whatsapp foi desconectada porque o numero que esta descrito no nome dessa sessão não corresponde ao numero lido!`
}); });
// restartWhatsSession(whatsapp)
return return
} }

View File

@ -27,7 +27,7 @@ const wbotMonitor = async (
try { try {
await whatsapp.update({ status: newState }); await whatsapp.update({ status: newState });
await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: newState }) await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: newState })
} catch (err) { } catch (err: any) {
Sentry.captureException(err); Sentry.captureException(err);
logger.error(err); logger.error(err);
} }
@ -46,7 +46,7 @@ const wbotMonitor = async (
try { try {
await whatsapp.update({ battery, plugged }); await whatsapp.update({ battery, plugged });
} catch (err) { } catch (err: any) {
Sentry.captureException(err); Sentry.captureException(err);
logger.error(err); logger.error(err);
} }
@ -63,7 +63,7 @@ const wbotMonitor = async (
await whatsapp.update({ status: "OPENING", session: "" }); await whatsapp.update({ status: "OPENING", session: "" });
await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: "OPENING", session: "" }) await insertOrUpeateWhatsCache(`whatsapp:${whatsapp.id}`, { status: "OPENING", session: "" })
} catch (err) { } catch (err: any) {
Sentry.captureException(err); Sentry.captureException(err);
logger.error(err); logger.error(err);
} }
@ -75,7 +75,7 @@ const wbotMonitor = async (
setTimeout(() => StartWhatsAppSession(whatsapp), 2000); setTimeout(() => StartWhatsAppSession(whatsapp), 2000);
}); });
} catch (err) { } catch (err: any) {
Sentry.captureException(err); Sentry.captureException(err);
logger.error(err); logger.error(err);
} }