/
/
home
/
u523034047
/
domains
/
wasms.shop
/
public_html
/
varified
/
server
/
lib
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.60
PHP 8.3.16
Dir:
/home/u523034047/domains/wasms.shop/public_html/varified/server/lib
Edit:
/home/u523034047/domains/wasms.shop/public_html/varified/server/lib/middleware.js
const wa = require("../whatsapp"); const { formatReceipt } = require("./helper"); const fs = require("fs"); const checkDestination = async (req, res, next) => { const { token, number } = req.body; if (token && number) { const check = await wa.isExist(token, formatReceipt(number)); if (!check) { return res.send({ status: false, message: "The destination Number not registered in WhatsApp or your sender not connected", }); } next(); } else { res.send({ status: false, message: "Check your parameter" }); } }; const checkConnectionBeforeBlast = async (req, res, next) => { const data = JSON.parse(req.body.data); const status = await wa.connectToWhatsApp(data.sender); if (!status) { return res.send({ status: false, message: `Unauthorized`, }); } next(); // } catch (error) { // console.log(error); // return res.send({ // status: false, // message: `Unauthorized`, // }); // } }; module.exports = { checkDestination, checkConnectionBeforeBlast };
Ukuran: 1.1 KB