feat: Implement Redis solution for querying WhatsApp number in webhook controller

feat-scaling-ticket-remote-creation
adriano 2024-03-06 18:14:12 -03:00
parent 943d121ab1
commit 2fc732eec1
6 changed files with 127 additions and 52 deletions

View File

@ -27,6 +27,7 @@ import { splitDateTime } from "../helpers/SplitDateTime";
import ListUserByWhatsappQueuesService from "../services/UserServices/ListUserByWhatsappQueuesService";
import { json } from "sequelize";
import { getSettingValue } from "../helpers/WhaticketSettings";
import { setBotInfo } from "../helpers/SetBotInfo"
type IndexQuery = {
searchParam: string;
@ -111,7 +112,6 @@ export const all = async (req: Request, res: Response): Promise<Response> => {
);
if (getSettingValue("queueTransferByWhatsappScope")?.value == "enabled") {
if (!userId) return res.json({ users: [], queues: [] });
const obj = await ListUserByWhatsappQueuesService(
@ -167,6 +167,11 @@ export const store = async (req: Request, res: Response): Promise<Response> => {
queueIds
});
if (user) {
const { id, name } = user;
await set(`user:${id}`, { id, name });
}
const io = getIO();
io.emit("user", {
action: "create",
@ -270,34 +275,11 @@ export const update = async (
let user: any = await UpdateUserService({ userData, userId });
if (user?.name?.trim() == "botqueue") {
let botInfo;
await setBotInfo(user)
if (
user?.queues?.length > 0 &&
user.queues[0]?.name?.trim() == "botqueue"
) {
botInfo = JSON.stringify({
userId: user.id,
queueId: user.queues[0].id,
botIsOnQueue: true
});
botInfo = JSON.parse(botInfo);
await set("botInfo", botInfo);
} else if (
user?.queues?.length == 0 ||
user.queues[0]?.name?.trim() != "botqueue"
) {
botInfo = JSON.stringify({
userId: user.id,
queueId: 0,
botIsOnQueue: false
});
botInfo = JSON.parse(botInfo);
await set("botInfo", botInfo);
}
if (user) {
const { id, name } = user;
await set(`user:${id}`, { id, name });
}
const io = getIO();
@ -342,3 +324,5 @@ export const remove = async (
return res.status(200).json({ message: "User deleted" });
};

View File

@ -42,6 +42,7 @@ import { getSettingValue } from "../helpers/WhaticketSettings";
import ListWhatsAppsNumber from "../services/WhatsappService/ListWhatsAppsNumber";
import SettingTicket from "../models/SettingTicket";
import { Op } from "sequelize";
import { get, set } from "../helpers/RedisClient";
interface WhatsappData {
name: string;
@ -229,6 +230,22 @@ export const weebhook = async (
req.body.entry[0].changes[0].value.metadata.display_phone_number;
let type = message.type;
const contact_from_exist = await get("whatsapp:*", `${contact_from}`);
if (!contact_from_exist) {
console.log(
"WHATSAPP OFFICIAL",
" | CONCTACT_FROM: ",
contact_from,
" | CONTACT_TO: ",
contact_to
);
console.log(
"NUMBER IGNORED. WHATSAPP NUMBER FROM ANOTHER OMNIHIT APPLICATION!"
);
return res.status(403).json({ error: "Unauthorized" });
}
let wbot = {};
let msg = {};
let contacts = req.body.entry[0].changes[0].value.contacts[0];
@ -382,6 +399,8 @@ export const store = async (req: Request, res: Response): Promise<Response> => {
number: getNumberFromName(name),
client_url: `${process.env.BACKEND_URL_RAW}:${process.env.PORT}`
});
} else {
await set(`whatsapp:${whatsapp.id}`, `${number}`);
}
const io = getIO();
@ -441,6 +460,7 @@ export const update = async (
} else if (!isOfficial) {
whatsappData.phoneNumberId = "";
whatsappData.wabaId = "";
whatsappData.number = "";
}
const { whatsapp, oldDefaultWhatsapp } = await UpdateWhatsAppService({
@ -455,6 +475,8 @@ export const update = async (
number: getNumberFromName(whatsapp.name),
client_url: `${process.env.BACKEND_URL_RAW}:${process.env.PORT}`
});
} else {
await set(`whatsapp:${whatsapp.id}`, `${number}`);
}
const io = getIO();

View File

@ -9,25 +9,42 @@ type WhatsappData = {
};
export async function set(key: string, value: string | object) {
await redis.set(key, JSON.stringify(value));
}
export async function get(key: string) {
const value: any = await redis.get(key);
return JSON.parse(value);
}
export async function clearAllKeys() {
// Retrieve all keys matching the pattern '*'
const keys = await redis.keys("user:*");
// If there are keys, delete them
if (keys.length > 0) {
console.log('keys: ', keys)
await redis.del(...keys);
if (typeof value == "object") await redis.set(key, JSON.stringify(value));
else {
await redis.set(key, value);
}
}
export async function get(key: string, value?: string) {
if (key.includes("*")) {
const keys = await redis.keys(key);
// If there are keys, delete them
if (keys.length > 0) {
for (const key of keys) {
const val = await redis.get(key);
if (value == val) return value;
}
}
return null;
} else {
const value: any = await redis.get(key);
return JSON.parse(value);
}
}
export async function clearAllKeys(...keys: string[]) {
for (const key of keys) {
// Retrieve all keys matching the pattern '*'
const del_keys = await redis.keys(key);
// If there are keys, delete them
if (del_keys.length > 0) {
console.log("del_keys: ", del_keys);
await redis.del(...del_keys);
}
}
}
export async function findByContain(
key: string,

View File

@ -0,0 +1,33 @@
import { get, set } from "../helpers/RedisClient";
export async function setBotInfo(user: any) {
if (user?.name?.trim() == "botqueue") {
let botInfo;
if (
user?.queues?.length > 0 &&
user.queues[0]?.name?.trim() == "botqueue"
) {
botInfo = JSON.stringify({
userId: user.id,
queueId: user.queues[0].id,
botIsOnQueue: true
});
botInfo = JSON.parse(botInfo);
await set("botInfo", botInfo);
} else if (
user?.queues?.length == 0 ||
user.queues[0]?.name?.trim() != "botqueue"
) {
botInfo = JSON.stringify({
userId: user.id,
queueId: 0,
botIsOnQueue: false
});
botInfo = JSON.parse(botInfo);
await set("botInfo", botInfo);
}
}
}

View File

@ -23,7 +23,10 @@ import fs from "fs";
import dir from "path";
import { getSettingValue } from "./helpers/WhaticketSettings";
import loadSettings from "./helpers/LoadSettings";
import { clearAllKeys, set } from "./helpers/RedisClient";
import { clearAllKeys, get, set } from "./helpers/RedisClient";
import ShowUserService from "./services/UserServices/ShowUserService";
import { json } from "sequelize";
import { setBotInfo } from "./helpers/SetBotInfo";
const server = app.listen(process.env.PORT, () => {
logger.info(`Server started on port: ${process.env.PORT}`);
@ -44,19 +47,25 @@ gracefulShutdown(server);
(async () => {
console.log("os.tmpdir(): ", os.tmpdir());
await clearAllKeys();
await clearAllKeys("user:*", "whatsapp:*");
const users = await User.findAll();
for (const user of users) {
const { id, name } = user;
if (name == "botqueue") {
const userService = await ShowUserService(id);
await setBotInfo(userService);
}
await set(`user:${id}`, { id, name });
}
loadSettings();
let whatsapps: any = await Whatsapp.findAll({
attributes: ["id", "url", "phoneNumberId"]
attributes: ["id", "url", "phoneNumberId", "number"]
});
if (whatsapps && whatsapps.length > 0) {
@ -64,7 +73,14 @@ gracefulShutdown(server);
try {
const { phoneNumberId } = whatsapps[i];
if (phoneNumberId) continue;
if (phoneNumberId) {
await set(
`whatsapp:${whatsapps[i].dataValues.id}`,
`${whatsapps[i].dataValues.number}`
);
continue;
}
console.log(
`API URL: ${whatsapps[i].dataValues.url}/api/connection/status`

View File

@ -22,6 +22,7 @@ interface WhatsappData {
greetingMessage?: string;
farewellMessage?: string;
queueIds?: number[];
number?:string;
}
interface Request {
@ -52,6 +53,7 @@ const UpdateWhatsAppService = async ({
phoneNumberId,
wabaId,
isOfficial,
number,
url,
urlApi,
session,
@ -116,6 +118,7 @@ const UpdateWhatsAppService = async ({
isOfficial,
phoneNumberId,
wabaId,
number,
classification
});