Pequenas adições de console.log
parent
6d9bef094f
commit
b43e76938f
|
@ -12,7 +12,8 @@ import { loadSchedulesCache } from "./helpers/SchedulingNotifyCache";
|
||||||
import { delRestoreControllFile } from "./helpers/RestoreControll";
|
import { delRestoreControllFile } from "./helpers/RestoreControll";
|
||||||
|
|
||||||
import "./helpers/SchedulingNotifySendMessage"
|
import "./helpers/SchedulingNotifySendMessage"
|
||||||
|
import axios from "axios";
|
||||||
|
import os from 'os';
|
||||||
|
|
||||||
const server = app.listen(process.env.PORT, () => {
|
const server = app.listen(process.env.PORT, () => {
|
||||||
logger.info(`Server started on port: ${process.env.PORT}`);
|
logger.info(`Server started on port: ${process.env.PORT}`);
|
||||||
|
@ -33,6 +34,8 @@ gracefulShutdown(server);
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
|
|
||||||
|
console.log('os.tmpdir(): ', os.tmpdir())
|
||||||
|
|
||||||
let whatsapps: any = await Whatsapp.findAll({ attributes: ['id', 'url'] })
|
let whatsapps: any = await Whatsapp.findAll({ attributes: ['id', 'url'] })
|
||||||
|
|
||||||
// console.log('whatsapps: ', whatsapps)
|
// console.log('whatsapps: ', whatsapps)
|
||||||
|
@ -43,12 +46,20 @@ gracefulShutdown(server);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
const response = await endPointQuery(`${whatsapps[i].dataValues.url}/api/status`, {})
|
console.log(`API URL: ${whatsapps[i].dataValues.url}/api/connection/status`)
|
||||||
|
|
||||||
|
const response = await axios.get(`${whatsapps[i].dataValues.url}/api/connection/status`, {});
|
||||||
|
|
||||||
|
console.log(`-------> Response: ${response.data.data}`)
|
||||||
|
|
||||||
if (!response) {
|
if (!response) {
|
||||||
throw new Error('Response null');
|
throw new Error('Response null');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (response.data.data && response.data.data == 'CONNECTED') {
|
||||||
|
await whatsapps[i].update({ status: 'CONNECTED' });
|
||||||
|
}
|
||||||
|
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
|
|
||||||
await whatsapps[i].update({ status: 'OPENING' });
|
await whatsapps[i].update({ status: 'OPENING' });
|
||||||
|
|
|
@ -19,7 +19,7 @@ interface Request {
|
||||||
|
|
||||||
const CreateMessageService = async ({ messageData }: Request): Promise<Message> => {
|
const CreateMessageService = async ({ messageData }: Request): Promise<Message> => {
|
||||||
|
|
||||||
// console.log('UPSERT MESSAGE messageData: ', messageData)
|
console.log('UPSERT MESSAGE messageData: ', messageData)
|
||||||
|
|
||||||
await Message.upsert(messageData);
|
await Message.upsert(messageData);
|
||||||
|
|
||||||
|
|
|
@ -419,6 +419,8 @@ const handleMessage = async (
|
||||||
wbot: any
|
wbot: any
|
||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
|
|
||||||
|
console.log('kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk')
|
||||||
|
|
||||||
if (!msg.fromMe) {
|
if (!msg.fromMe) {
|
||||||
|
|
||||||
_clear_lst()
|
_clear_lst()
|
||||||
|
@ -558,6 +560,10 @@ const handleMessage = async (
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
|
||||||
|
if(msg.fromMe){
|
||||||
|
console.log('====> msg.fromMe: ',msg.fromMe)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (msg.hasMedia) {
|
if (msg.hasMedia) {
|
||||||
await verifyMediaMessage(msg, ticket, contact, wbot.media, wbot.quotedMsg);
|
await verifyMediaMessage(msg, ticket, contact, wbot.media, wbot.quotedMsg);
|
||||||
|
|
Loading…
Reference in New Issue