41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
|
import { Request, Response } from "express";
|
||
|
import { getWbot } from "../libs/wbot";
|
||
|
import ShowWhatsAppService from "../services/WhatsappService/ShowWhatsAppService";
|
||
|
import { StartWhatsAppSession } from "../services/WbotServices/StartWhatsAppSession";
|
||
|
import UpdateWhatsAppService from "../services/WhatsappService/UpdateWhatsAppService";
|
||
|
|
||
|
const store = async (req: Request, res: Response): Promise<Response> => {
|
||
|
const { whatsappId } = req.params;
|
||
|
const whatsapp = await ShowWhatsAppService(whatsappId);
|
||
|
|
||
|
StartWhatsAppSession(whatsapp);
|
||
|
|
||
|
return res.status(200).json({ message: "Starting session." });
|
||
|
};
|
||
|
|
||
|
const update = async (req: Request, res: Response): Promise<Response> => {
|
||
|
const { whatsappId } = req.params;
|
||
|
|
||
|
const { whatsapp } = await UpdateWhatsAppService({
|
||
|
whatsappId,
|
||
|
whatsappData: { session: "" }
|
||
|
});
|
||
|
|
||
|
StartWhatsAppSession(whatsapp);
|
||
|
|
||
|
return res.status(200).json({ message: "Starting session." });
|
||
|
};
|
||
|
|
||
|
const remove = async (req: Request, res: Response): Promise<Response> => {
|
||
|
const { whatsappId } = req.params;
|
||
|
const whatsapp = await ShowWhatsAppService(whatsappId);
|
||
|
|
||
|
const wbot = getWbot(whatsapp.id);
|
||
|
|
||
|
wbot.logout();
|
||
|
|
||
|
return res.status(200).json({ message: "Session disconnected." });
|
||
|
};
|
||
|
|
||
|
export default { store, remove, update };
|