Pequenas adições de console.log
parent
6d9bef094f
commit
b43e76938f
|
@ -70,8 +70,8 @@ export const initIO = (httpServer: Server): SocketIO => {
|
|||
});
|
||||
|
||||
|
||||
socket.on("media_uploaded", async (data: any) => {
|
||||
|
||||
socket.on("media_uploaded", async (data: any) => {
|
||||
|
||||
handleMessage(data.msg, data);
|
||||
|
||||
});
|
||||
|
|
|
@ -12,7 +12,8 @@ import { loadSchedulesCache } from "./helpers/SchedulingNotifyCache";
|
|||
import { delRestoreControllFile } from "./helpers/RestoreControll";
|
||||
|
||||
import "./helpers/SchedulingNotifySendMessage"
|
||||
|
||||
import axios from "axios";
|
||||
import os from 'os';
|
||||
|
||||
const server = app.listen(process.env.PORT, () => {
|
||||
logger.info(`Server started on port: ${process.env.PORT}`);
|
||||
|
@ -30,9 +31,11 @@ initIO(server);
|
|||
|
||||
// StartAllWhatsAppsSessions();
|
||||
gracefulShutdown(server);
|
||||
|
||||
|
||||
(async () => {
|
||||
|
||||
console.log('os.tmpdir(): ', os.tmpdir())
|
||||
|
||||
let whatsapps: any = await Whatsapp.findAll({ attributes: ['id', 'url'] })
|
||||
|
||||
// console.log('whatsapps: ', whatsapps)
|
||||
|
@ -43,12 +46,20 @@ gracefulShutdown(server);
|
|||
|
||||
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) {
|
||||
throw new Error('Response null');
|
||||
}
|
||||
|
||||
if (response.data.data && response.data.data == 'CONNECTED') {
|
||||
await whatsapps[i].update({ status: 'CONNECTED' });
|
||||
}
|
||||
|
||||
} catch (error: any) {
|
||||
|
||||
await whatsapps[i].update({ status: 'OPENING' });
|
||||
|
|
|
@ -19,7 +19,7 @@ interface Request {
|
|||
|
||||
const CreateMessageService = async ({ messageData }: Request): Promise<Message> => {
|
||||
|
||||
// console.log('UPSERT MESSAGE messageData: ', messageData)
|
||||
console.log('UPSERT MESSAGE messageData: ', messageData)
|
||||
|
||||
await Message.upsert(messageData);
|
||||
|
||||
|
|
|
@ -167,7 +167,7 @@ const verifyMediaMessage = async (
|
|||
};
|
||||
|
||||
await ticket.update({ lastMessage: msg.body || media.filename });
|
||||
const newMessage = await CreateMessageService({ messageData });
|
||||
const newMessage = await CreateMessageService({ messageData });
|
||||
|
||||
return newMessage;
|
||||
};
|
||||
|
@ -198,7 +198,7 @@ const verifyMessage = async (
|
|||
};
|
||||
|
||||
|
||||
await ticket.update({ lastMessage: msg.body });
|
||||
await ticket.update({ lastMessage: msg.body });
|
||||
|
||||
await CreateMessageService({ messageData });
|
||||
};
|
||||
|
@ -418,6 +418,8 @@ const handleMessage = async (
|
|||
msg: any,
|
||||
wbot: any
|
||||
): Promise<void> => {
|
||||
|
||||
console.log('kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk')
|
||||
|
||||
if (!msg.fromMe) {
|
||||
|
||||
|
@ -557,7 +559,11 @@ const handleMessage = async (
|
|||
|
||||
}
|
||||
//
|
||||
|
||||
|
||||
if(msg.fromMe){
|
||||
console.log('====> msg.fromMe: ',msg.fromMe)
|
||||
|
||||
}
|
||||
|
||||
if (msg.hasMedia) {
|
||||
await verifyMediaMessage(msg, ticket, contact, wbot.media, wbot.quotedMsg);
|
||||
|
|
Loading…
Reference in New Issue