2022-01-06 01:26:15 +00:00
|
|
|
import { Request, Response } from "express";
|
|
|
|
import { getIO } from "../libs/socket";
|
|
|
|
import { removeWbot } from "../libs/wbot";
|
|
|
|
import { StartWhatsAppSession } from "../services/WbotServices/StartWhatsAppSession";
|
|
|
|
|
2022-02-14 01:39:33 +00:00
|
|
|
import { removeDir } from "../helpers/DeleteDirectory";
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
import CreateWhatsAppService from "../services/WhatsappService/CreateWhatsAppService";
|
|
|
|
import DeleteWhatsAppService from "../services/WhatsappService/DeleteWhatsAppService";
|
|
|
|
import ListWhatsAppsService from "../services/WhatsappService/ListWhatsAppsService";
|
|
|
|
import ShowWhatsAppService from "../services/WhatsappService/ShowWhatsAppService";
|
|
|
|
import UpdateWhatsAppService from "../services/WhatsappService/UpdateWhatsAppService";
|
|
|
|
|
2022-01-13 17:11:50 +00:00
|
|
|
import AppError from "../errors/AppError";
|
2023-02-13 12:43:00 +00:00
|
|
|
|
2023-04-10 12:08:09 +00:00
|
|
|
import getNumberFromName from "../helpers/GetNumberSequence";
|
2023-08-28 17:05:53 +00:00
|
|
|
import phoneNumberStart from "../helpers/PhoneNumberStatusCode";
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
import path, { join } from "path";
|
2023-04-10 12:08:09 +00:00
|
|
|
import validatePhoneName from "../helpers/ValidatePhoneName";
|
|
|
|
import postData from "../helpers/AxiosPost";
|
|
|
|
import Whatsapp from "../models/Whatsapp";
|
2023-08-28 17:05:53 +00:00
|
|
|
import Message from "../models/Message";
|
|
|
|
import FindOrCreateTicketService from "../services/TicketServices/FindOrCreateTicketService";
|
|
|
|
import {
|
2023-09-08 19:50:51 +00:00
|
|
|
handleMessage,
|
2023-08-28 17:05:53 +00:00
|
|
|
handleMsgAck,
|
|
|
|
verifyContact,
|
|
|
|
verifyMessage
|
|
|
|
} from "../services/WbotServices/wbotMessageListener";
|
|
|
|
import Contact from "../models/Contact";
|
|
|
|
import CreateOrUpdateContactService from "../services/ContactServices/CreateOrUpdateContactService";
|
2023-09-08 19:50:51 +00:00
|
|
|
import GetDefaultWhatsApp from "../helpers/GetDefaultWhatsApp";
|
|
|
|
import ShowUserService from "../services/UserServices/ShowUserService";
|
|
|
|
|
|
|
|
import fs from "fs";
|
|
|
|
import receiveWhatsAppMediaOfficialAPI from "../helpers/ReceiveWhatsAppMediaOfficialAPI";
|
2022-02-14 01:39:33 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
import whatsappOfficialAPI from "../helpers/WhatsappOfficialAPI";
|
|
|
|
import whatsappOfficialNumberInfo from "../helpers/WhatsappOfficialNumberInfo";
|
|
|
|
import { getSettingValue } from "../helpers/WhaticketSettings";
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
interface WhatsappData {
|
|
|
|
name: string;
|
|
|
|
queueIds: number[];
|
2023-02-13 12:43:00 +00:00
|
|
|
url: string;
|
|
|
|
urlApi: string;
|
2022-01-06 01:26:15 +00:00
|
|
|
greetingMessage?: string;
|
|
|
|
farewellMessage?: string;
|
|
|
|
status?: string;
|
|
|
|
isDefault?: boolean;
|
2023-09-16 14:45:44 +00:00
|
|
|
isOfficial?: boolean;
|
|
|
|
phoneNumberId?: string;
|
|
|
|
wabaId?: string;
|
2022-01-06 01:26:15 +00:00
|
|
|
}
|
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
let count: number = 0;
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
export const index = async (req: Request, res: Response): Promise<Response> => {
|
2023-09-16 14:45:44 +00:00
|
|
|
let whatsapps = await ListWhatsAppsService();
|
|
|
|
|
|
|
|
if (getSettingValue("whatsaAppCloudApi")?.value == "enabled") {
|
|
|
|
// Atualizar isso quando tiver tempo
|
|
|
|
if (count > 12) count = 0;
|
|
|
|
if (count == 0) {
|
|
|
|
for (let i in whatsapps) {
|
|
|
|
const { id, wabaId, isOfficial } = whatsapps[i];
|
|
|
|
|
|
|
|
if (isOfficial && wabaId) {
|
|
|
|
try {
|
|
|
|
const info = await whatsappOfficialNumberInfo(wabaId);
|
|
|
|
if (info) {
|
|
|
|
const whatsapp = await Whatsapp.findByPk(id);
|
|
|
|
|
|
|
|
if (whatsapp) {
|
|
|
|
whatsapp.update({
|
|
|
|
classification: info.quality_rating
|
|
|
|
});
|
|
|
|
whatsapps[i].classification = info.quality_rating;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (error) {
|
2023-09-19 12:41:15 +00:00
|
|
|
console.log(
|
|
|
|
"error on try update classification number from oficial whatsapp in WhatsappController.ts: ",
|
|
|
|
error
|
|
|
|
);
|
2023-09-16 14:45:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log("count: ", count);
|
|
|
|
count++;
|
|
|
|
}
|
2022-06-29 00:34:43 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
return res.status(200).json(whatsapps);
|
|
|
|
};
|
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
export const whatsAppOfficialMatchQueue = async (
|
|
|
|
req: Request,
|
|
|
|
res: Response
|
|
|
|
): Promise<Response> => {
|
|
|
|
const { userId, queueId }: any = req.query;
|
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
let whatsapps = await GetDefaultWhatsApp({ userId, queueId });
|
|
|
|
|
|
|
|
if (whatsapps && Array.isArray(whatsapps)) {
|
|
|
|
const uniqueWhatsApps = whatsapps.filter(
|
|
|
|
(whatsapp, index, self) =>
|
|
|
|
index === self.findIndex(w => w.number === whatsapp.number)
|
|
|
|
);
|
|
|
|
whatsapps = uniqueWhatsApps;
|
|
|
|
}
|
2023-09-08 19:50:51 +00:00
|
|
|
|
|
|
|
return res.status(200).json(whatsapps);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const whatsAppOfficialMatchQueueUser = async (
|
|
|
|
req: Request,
|
|
|
|
res: Response
|
|
|
|
): Promise<Response> => {
|
|
|
|
const { userId, queueId }: any = req.query;
|
|
|
|
|
|
|
|
let whatsApps: any = await ListWhatsAppsService();
|
|
|
|
let user: any = await ShowUserService(userId);
|
|
|
|
|
|
|
|
// console.log(JSON.stringify(user, null, 2));
|
|
|
|
|
|
|
|
let queuesConnected = whatsApps
|
|
|
|
.filter((w: any) => w.status === "CONNECTED")
|
|
|
|
.map((item: any) => {
|
|
|
|
const { queues } = item;
|
|
|
|
return {
|
|
|
|
queues: queues.map((q: any) => {
|
|
|
|
return { id: q.id };
|
|
|
|
})
|
|
|
|
};
|
|
|
|
})
|
|
|
|
.flatMap((item: any) => item.queues.map((queue: any) => queue.id));
|
|
|
|
|
|
|
|
queuesConnected = [...new Set(queuesConnected)].map(q => {
|
|
|
|
return { id: q };
|
|
|
|
});
|
|
|
|
|
|
|
|
const userQueues = user.queues.map((item: any) => {
|
|
|
|
const { id, name, color } = item;
|
|
|
|
return {
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
color,
|
|
|
|
disable: queuesConnected.find((queue: any) => queue.id === id)
|
|
|
|
? false
|
|
|
|
: true
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
return res.status(200).json(userQueues);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const media = async (req: Request, res: Response) => {
|
|
|
|
const { filename } = req.params;
|
|
|
|
|
|
|
|
const filePath = join(__dirname, "..", "..", "..", "..", "public", filename);
|
|
|
|
|
|
|
|
console.log("filePath: ", filePath);
|
|
|
|
|
|
|
|
console.log(filename);
|
|
|
|
|
|
|
|
if (!fs.existsSync(filePath)) {
|
|
|
|
return res.status(404).json({ message: "File not folund!" });
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set appropriate headers for the download.
|
|
|
|
res.setHeader("Content-Disposition", `attachment; filename=${filename}`);
|
|
|
|
res.sendFile(filePath);
|
|
|
|
};
|
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
export const weebhook = async (
|
|
|
|
req: Request,
|
|
|
|
res: Response
|
|
|
|
): Promise<Response> => {
|
|
|
|
// console.log(JSON.stringify(req.body, null, 2));
|
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
console.log("req.method: ", req.method);
|
|
|
|
|
|
|
|
if (req.method == "GET") {
|
|
|
|
/**
|
|
|
|
* UPDATE YOUR VERIFY TOKEN
|
|
|
|
*This will be the Verify Token value when you set up webhook
|
|
|
|
**/
|
|
|
|
const verify_token = process.env.VERIFY_TOKEN;
|
|
|
|
|
|
|
|
// Parse params from the webhook verification request
|
|
|
|
let mode = req.query["hub.mode"];
|
|
|
|
let token = req.query["hub.verify_token"];
|
|
|
|
let challenge = req.query["hub.challenge"];
|
|
|
|
|
|
|
|
// Check if a token and mode were sent
|
|
|
|
if (mode && token) {
|
|
|
|
// Check the mode and token sent are correct
|
|
|
|
if (mode === "subscribe" && token === verify_token) {
|
|
|
|
// Respond with 200 OK and challenge token from the request
|
|
|
|
console.log("WEBHOOK_VERIFIED");
|
|
|
|
return res.status(200).send(challenge);
|
|
|
|
} else {
|
|
|
|
// Responds with '403 Forbidden' if verify tokens do not match
|
|
|
|
return res.sendStatus(403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.sendStatus(500);
|
|
|
|
}
|
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
// MESSAGE
|
|
|
|
if (req.body.object) {
|
|
|
|
if (
|
|
|
|
req.body.entry &&
|
|
|
|
req.body.entry[0].changes &&
|
|
|
|
req.body.entry[0].changes[0] &&
|
|
|
|
req.body.entry[0].changes[0].value.messages &&
|
|
|
|
req.body.entry[0].changes[0].value.messages[0]
|
|
|
|
) {
|
2023-09-08 19:50:51 +00:00
|
|
|
const message = req.body.entry[0].changes[0].value.messages[0];
|
|
|
|
const contact_from = message.from; // extract the phone number from the webhook payload
|
2023-08-28 17:05:53 +00:00
|
|
|
const contact_to =
|
|
|
|
req.body.entry[0].changes[0].value.metadata.display_phone_number;
|
2023-09-08 19:50:51 +00:00
|
|
|
let type = message.type;
|
2023-08-28 17:05:53 +00:00
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
let wbot = {};
|
2023-08-28 17:05:53 +00:00
|
|
|
let msg = {};
|
2023-09-08 19:50:51 +00:00
|
|
|
let contacts = req.body.entry[0].changes[0].value.contacts[0];
|
2023-08-28 17:05:53 +00:00
|
|
|
|
|
|
|
msg = {
|
|
|
|
...msg,
|
2023-09-08 19:50:51 +00:00
|
|
|
id: { id: message.id },
|
2023-08-28 17:05:53 +00:00
|
|
|
fromMe: false,
|
2023-09-08 19:50:51 +00:00
|
|
|
type: type,
|
2023-08-28 17:05:53 +00:00
|
|
|
read: false,
|
2023-09-08 19:50:51 +00:00
|
|
|
hasMedia: false
|
2023-08-28 17:05:53 +00:00
|
|
|
};
|
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
// NEW
|
|
|
|
const whatsapp = await ShowWhatsAppService(null, {
|
|
|
|
number: contact_to
|
|
|
|
});
|
|
|
|
|
|
|
|
if (type == "text") {
|
|
|
|
type = "chat";
|
|
|
|
msg = {
|
|
|
|
...msg,
|
2023-09-19 12:41:15 +00:00
|
|
|
body: message.text.body, // extract the message text from the webhook payload,
|
|
|
|
type
|
2023-09-08 19:50:51 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
const mediaId = message[message.type].id;
|
|
|
|
const mimetype = message[message.type].mime_type;
|
|
|
|
|
|
|
|
let filename = await receiveWhatsAppMediaOfficialAPI(
|
|
|
|
mediaId,
|
|
|
|
whatsapp.phoneNumberId
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!filename) throw new AppError("There was an error");
|
|
|
|
|
|
|
|
msg = {
|
|
|
|
...msg,
|
|
|
|
hasMedia: true
|
|
|
|
};
|
|
|
|
|
|
|
|
wbot = { ...wbot, media: { filename, mimetype } };
|
|
|
|
}
|
|
|
|
|
2023-09-19 12:41:15 +00:00
|
|
|
msg = { ...msg, phoneNumberId: whatsapp.phoneNumberId };
|
|
|
|
|
2023-09-08 19:50:51 +00:00
|
|
|
console.log("from: ", contact_from);
|
|
|
|
console.log("to: ", contact_to);
|
|
|
|
console.log("msg type: ", type);
|
|
|
|
|
|
|
|
wbot = {
|
|
|
|
...wbot,
|
|
|
|
id: whatsapp.id,
|
|
|
|
msgContact: {
|
|
|
|
number: contact_from,
|
|
|
|
name: contacts?.profile?.name
|
|
|
|
},
|
|
|
|
chat: { isGroup: false, unreadCount: 1 },
|
|
|
|
quotedMsg: message && message?.context ? message.context.id : undefined
|
|
|
|
};
|
|
|
|
|
|
|
|
handleMessage(msg, wbot, true);
|
2023-08-28 17:05:53 +00:00
|
|
|
|
|
|
|
return res.sendStatus(200);
|
|
|
|
}
|
|
|
|
// STATUS MESSAGE SENT
|
|
|
|
else if (
|
|
|
|
req.body.entry &&
|
|
|
|
req.body.entry[0].changes &&
|
|
|
|
req.body.entry[0].changes[0] &&
|
|
|
|
req.body.entry[0].changes[0].value.statuses &&
|
|
|
|
req.body.entry[0].changes[0].value.statuses[0]
|
|
|
|
) {
|
|
|
|
const id = req.body.entry[0].changes[0].value.statuses[0].id;
|
|
|
|
const ack = req.body.entry[0].changes[0].value.statuses[0].status;
|
|
|
|
handleMsgAck(id, ack, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.sendStatus(200);
|
|
|
|
};
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
export const store = async (req: Request, res: Response): Promise<Response> => {
|
2023-09-16 14:45:44 +00:00
|
|
|
let {
|
2022-01-06 01:26:15 +00:00
|
|
|
name,
|
|
|
|
status,
|
|
|
|
isDefault,
|
|
|
|
greetingMessage,
|
|
|
|
farewellMessage,
|
2023-02-13 12:43:00 +00:00
|
|
|
queueIds,
|
|
|
|
url,
|
2023-09-16 14:45:44 +00:00
|
|
|
urlApi,
|
|
|
|
phoneNumberId,
|
|
|
|
wabaId,
|
|
|
|
isOfficial
|
2022-01-06 01:26:15 +00:00
|
|
|
}: WhatsappData = req.body;
|
|
|
|
|
2022-01-13 17:11:50 +00:00
|
|
|
if (req.user.profile !== "master") {
|
|
|
|
throw new AppError("ERR_NO_PERMISSION", 403);
|
|
|
|
}
|
2022-06-29 00:34:43 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
const invalid = checkWhatsAppData({
|
|
|
|
urlApi,
|
|
|
|
isOfficial,
|
|
|
|
phoneNumberId,
|
|
|
|
wabaId
|
|
|
|
});
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (invalid) {
|
|
|
|
return res.status(400).json(invalid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isOfficial) {
|
|
|
|
urlApi = "";
|
|
|
|
url = "";
|
|
|
|
} else if (!isOfficial) {
|
|
|
|
phoneNumberId = "";
|
|
|
|
wabaId = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
let invalidPhoneName = validatePhoneName(name);
|
|
|
|
|
|
|
|
if (invalidPhoneName) {
|
|
|
|
return res.status(200).json({ message: invalidPhoneName });
|
2023-04-10 12:08:09 +00:00
|
|
|
}
|
2023-08-28 17:05:53 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const { whatsapp, oldDefaultWhatsapp } = await CreateWhatsAppService({
|
|
|
|
name,
|
2023-02-13 12:43:00 +00:00
|
|
|
url,
|
|
|
|
urlApi,
|
2022-01-06 01:26:15 +00:00
|
|
|
status,
|
|
|
|
isDefault,
|
|
|
|
greetingMessage,
|
|
|
|
farewellMessage,
|
2023-09-16 14:45:44 +00:00
|
|
|
queueIds,
|
|
|
|
phoneNumberId,
|
|
|
|
wabaId,
|
|
|
|
isOfficial
|
2022-01-06 01:26:15 +00:00
|
|
|
});
|
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
console.log("whatsapp.id: ", whatsapp.id);
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (!isOfficial) {
|
|
|
|
postData(`${whatsapp.urlApi}/api/session`, {
|
|
|
|
app_name: process.env.APP_NAME,
|
|
|
|
whatsappId: whatsapp.id,
|
|
|
|
number: getNumberFromName(name),
|
|
|
|
client_url: `${process.env.BACKEND_URL_RAW}:${process.env.PORT}`
|
|
|
|
});
|
|
|
|
}
|
2022-01-06 01:26:15 +00:00
|
|
|
|
|
|
|
const io = getIO();
|
|
|
|
io.emit("whatsapp", {
|
|
|
|
action: "update",
|
|
|
|
whatsapp
|
|
|
|
});
|
|
|
|
|
|
|
|
if (oldDefaultWhatsapp) {
|
|
|
|
io.emit("whatsapp", {
|
|
|
|
action: "update",
|
|
|
|
whatsapp: oldDefaultWhatsapp
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.status(200).json(whatsapp);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const show = async (req: Request, res: Response): Promise<Response> => {
|
|
|
|
const { whatsappId } = req.params;
|
|
|
|
|
|
|
|
const whatsapp = await ShowWhatsAppService(whatsappId);
|
2022-06-29 00:34:43 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
return res.status(200).json(whatsapp);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const update = async (
|
|
|
|
req: Request,
|
|
|
|
res: Response
|
|
|
|
): Promise<Response> => {
|
|
|
|
const { whatsappId } = req.params;
|
|
|
|
const whatsappData = req.body;
|
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
let invalidPhoneName = validatePhoneName(whatsappData.name);
|
|
|
|
|
|
|
|
if (invalidPhoneName) {
|
|
|
|
return res.status(200).json({ message: invalidPhoneName });
|
|
|
|
}
|
|
|
|
|
|
|
|
const { urlApi, isOfficial, phoneNumberId, wabaId } = whatsappData;
|
|
|
|
|
|
|
|
const invalid = checkWhatsAppData({
|
|
|
|
urlApi,
|
|
|
|
isOfficial,
|
|
|
|
phoneNumberId,
|
|
|
|
wabaId
|
|
|
|
});
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (invalid) {
|
|
|
|
return res.status(400).json(invalid);
|
|
|
|
}
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (isOfficial) {
|
|
|
|
whatsappData.urlApi = "";
|
|
|
|
whatsappData.url = "";
|
|
|
|
} else if (!isOfficial) {
|
|
|
|
whatsappData.phoneNumberId = "";
|
|
|
|
whatsappData.wabaId = "";
|
2023-04-10 12:08:09 +00:00
|
|
|
}
|
2023-08-28 17:05:53 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const { whatsapp, oldDefaultWhatsapp } = await UpdateWhatsAppService({
|
|
|
|
whatsappData,
|
|
|
|
whatsappId
|
|
|
|
});
|
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (!whatsappData?.isOfficial) {
|
|
|
|
postData(`${whatsapp.urlApi}/api/session`, {
|
|
|
|
app_name: process.env.APP_NAME,
|
|
|
|
whatsappId: whatsapp.id,
|
|
|
|
number: getNumberFromName(whatsapp.name),
|
|
|
|
client_url: `${process.env.BACKEND_URL_RAW}:${process.env.PORT}`
|
|
|
|
});
|
|
|
|
}
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const io = getIO();
|
|
|
|
io.emit("whatsapp", {
|
|
|
|
action: "update",
|
|
|
|
whatsapp
|
|
|
|
});
|
|
|
|
|
|
|
|
if (oldDefaultWhatsapp) {
|
|
|
|
io.emit("whatsapp", {
|
|
|
|
action: "update",
|
|
|
|
whatsapp: oldDefaultWhatsapp
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.status(200).json(whatsapp);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const remove = async (
|
|
|
|
req: Request,
|
|
|
|
res: Response
|
|
|
|
): Promise<Response> => {
|
2022-01-13 17:11:50 +00:00
|
|
|
if (req.user.profile !== "master") {
|
|
|
|
throw new AppError("ERR_NO_PERMISSION", 403);
|
2022-06-29 00:34:43 +00:00
|
|
|
}
|
2022-01-13 17:11:50 +00:00
|
|
|
|
2022-06-29 00:34:43 +00:00
|
|
|
const { whatsappId } = req.params;
|
2022-01-06 01:26:15 +00:00
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
const whatsapp: any = await Whatsapp.findByPk(whatsappId, { raw: true });
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2023-09-16 14:45:44 +00:00
|
|
|
if (!whatsapp?.isOfficial) {
|
|
|
|
postData(`${whatsapp.urlApi}/api/session/del`, {
|
|
|
|
app_name: process.env.APP_NAME,
|
|
|
|
whatsappId: whatsappId
|
|
|
|
});
|
|
|
|
}
|
2023-04-10 12:08:09 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
await DeleteWhatsAppService(whatsappId);
|
2022-02-14 10:57:41 +00:00
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
removeDir(
|
|
|
|
path.join(process.cwd(), ".wwebjs_auth", `session-bd_${whatsappId}`)
|
|
|
|
);
|
2022-11-16 13:23:14 +00:00
|
|
|
|
2023-08-28 17:05:53 +00:00
|
|
|
removeDir(
|
|
|
|
path.join(
|
|
|
|
process.cwd(),
|
|
|
|
".wwebjs_auth",
|
|
|
|
"sessions",
|
|
|
|
`session-bd_${whatsappId}`
|
|
|
|
)
|
|
|
|
);
|
2022-11-16 13:23:14 +00:00
|
|
|
|
2023-02-13 12:43:00 +00:00
|
|
|
removeWbot(+whatsappId);
|
2022-02-14 01:39:33 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const io = getIO();
|
|
|
|
io.emit("whatsapp", {
|
|
|
|
action: "delete",
|
|
|
|
whatsappId: +whatsappId
|
2022-06-29 00:34:43 +00:00
|
|
|
});
|
2022-02-14 01:39:33 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
return res.status(200).json({ message: "Whatsapp deleted." });
|
|
|
|
};
|
2023-09-16 14:45:44 +00:00
|
|
|
|
|
|
|
interface WhatsappDataValidate {
|
|
|
|
urlApi?: string;
|
|
|
|
isOfficial?: boolean;
|
|
|
|
phoneNumberId?: string;
|
|
|
|
wabaId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const checkWhatsAppData = ({
|
|
|
|
urlApi,
|
|
|
|
isOfficial,
|
|
|
|
phoneNumberId,
|
|
|
|
wabaId
|
|
|
|
}: WhatsappDataValidate) => {
|
|
|
|
if (isOfficial && (!phoneNumberId || phoneNumberId.trim() == "")) {
|
|
|
|
return { message: "Phone number Id is required!" };
|
|
|
|
} else if (isOfficial && (!wabaId || wabaId.trim() == "")) {
|
|
|
|
return { message: "WABA ID is required!" };
|
|
|
|
} else if (!isOfficial && (!urlApi || urlApi.trim() == "")) {
|
|
|
|
return { message: "urlApi is required!" };
|
|
|
|
}
|
|
|
|
};
|