2021-07-31 15:57:43 +00:00
|
|
|
import { Queue } from "quirrel/blitz";
|
|
|
|
import twilio from "twilio";
|
2021-07-31 14:33:18 +00:00
|
|
|
|
2021-08-01 10:46:10 +00:00
|
|
|
import db from "../../../../db";
|
2021-07-31 15:57:43 +00:00
|
|
|
import insertMessagesQueue from "./insert-messages";
|
2021-07-31 14:33:18 +00:00
|
|
|
|
|
|
|
type Payload = {
|
2021-08-05 17:07:15 +00:00
|
|
|
organizationId: string;
|
|
|
|
phoneNumberId: string;
|
2021-07-31 15:57:43 +00:00
|
|
|
};
|
2021-07-31 14:33:18 +00:00
|
|
|
|
2021-08-05 17:07:15 +00:00
|
|
|
const fetchMessagesQueue = Queue<Payload>("api/queue/fetch-messages", async ({ organizationId, phoneNumberId }) => {
|
|
|
|
const phoneNumber = await db.phoneNumber.findFirst({
|
|
|
|
where: { id: phoneNumberId, organizationId },
|
|
|
|
include: { organization: true },
|
|
|
|
});
|
|
|
|
if (!phoneNumber) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const organization = phoneNumber.organization;
|
|
|
|
if (!organization.twilioAccountSid || !organization.twilioAuthToken) {
|
2021-08-02 10:02:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-07-31 14:33:18 +00:00
|
|
|
|
2021-08-01 14:01:51 +00:00
|
|
|
const [sent, received] = await Promise.all([
|
2021-08-05 17:07:15 +00:00
|
|
|
twilio(organization.twilioAccountSid, organization.twilioAuthToken).messages.list({ from: phoneNumber.number }),
|
|
|
|
twilio(organization.twilioAccountSid, organization.twilioAuthToken).messages.list({ to: phoneNumber.number }),
|
2021-07-31 15:57:43 +00:00
|
|
|
]);
|
2021-08-01 14:01:51 +00:00
|
|
|
const messagesSent = sent.filter((message) => message.direction.startsWith("outbound"));
|
|
|
|
const messagesReceived = received.filter((message) => message.direction === "inbound");
|
2021-07-31 14:33:18 +00:00
|
|
|
const messages = [...messagesSent, ...messagesReceived].sort(
|
2021-08-01 12:04:04 +00:00
|
|
|
(a, b) => a.dateCreated.getTime() - b.dateCreated.getTime(),
|
2021-07-31 15:57:43 +00:00
|
|
|
);
|
2021-07-31 14:33:18 +00:00
|
|
|
|
|
|
|
await insertMessagesQueue.enqueue(
|
|
|
|
{
|
2021-08-05 17:07:15 +00:00
|
|
|
organizationId,
|
|
|
|
phoneNumberId,
|
2021-07-31 14:33:18 +00:00
|
|
|
messages,
|
|
|
|
},
|
|
|
|
{
|
2021-08-05 17:07:15 +00:00
|
|
|
id: `insert-messages-${organizationId}-${phoneNumberId}`,
|
2021-08-01 12:04:04 +00:00
|
|
|
},
|
2021-07-31 15:57:43 +00:00
|
|
|
);
|
|
|
|
});
|
2021-07-31 14:33:18 +00:00
|
|
|
|
2021-07-31 15:57:43 +00:00
|
|
|
export default fetchMessagesQueue;
|