2022-05-17 23:54:06 +00:00
|
|
|
import { Queue } from "~/utils/queue.server";
|
|
|
|
import db from "~/utils/db.server";
|
|
|
|
import logger from "~/utils/logger.server";
|
|
|
|
import getTwilioClient from "~/utils/twilio.server";
|
|
|
|
import insertCallsQueue from "./insert-phone-calls.server";
|
|
|
|
|
|
|
|
type Payload = {
|
|
|
|
phoneNumberId: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Queue<Payload>("fetch phone calls", async ({ data }) => {
|
|
|
|
const { phoneNumberId } = data;
|
|
|
|
const phoneNumber = await db.phoneNumber.findUnique({
|
|
|
|
where: { id: phoneNumberId },
|
2022-05-21 19:33:23 +00:00
|
|
|
include: {
|
|
|
|
organization: {
|
|
|
|
select: { twilioAccount: true },
|
|
|
|
},
|
|
|
|
},
|
2022-05-17 23:54:06 +00:00
|
|
|
});
|
|
|
|
if (!phoneNumber) {
|
|
|
|
logger.warn(`No phone number found with id=${phoneNumberId}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-21 19:33:23 +00:00
|
|
|
const twilioAccount = phoneNumber.organization.twilioAccount;
|
|
|
|
if (!twilioAccount) {
|
|
|
|
logger.warn(`Phone number with id=${phoneNumberId} doesn't have a connected twilio account`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const twilioClient = getTwilioClient(twilioAccount);
|
2022-05-17 23:54:06 +00:00
|
|
|
const [callsSent, callsReceived] = await Promise.all([
|
|
|
|
twilioClient.calls.list({ from: phoneNumber.number }),
|
|
|
|
twilioClient.calls.list({ to: phoneNumber.number }),
|
|
|
|
]);
|
|
|
|
const calls = [...callsSent, ...callsReceived];
|
|
|
|
|
|
|
|
await insertCallsQueue.add(`insert calls of id=${phoneNumberId}`, {
|
|
|
|
phoneNumberId,
|
|
|
|
calls,
|
|
|
|
});
|
|
|
|
});
|