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 14:33:18 +00:00
|
|
|
|
|
|
|
type Payload = {
|
2021-07-31 15:57:43 +00:00
|
|
|
id: string;
|
|
|
|
customerId: string;
|
|
|
|
to: string;
|
|
|
|
content: string;
|
|
|
|
};
|
2021-07-31 14:33:18 +00:00
|
|
|
|
|
|
|
const sendMessageQueue = Queue<Payload>(
|
|
|
|
"api/queue/send-message",
|
|
|
|
async ({ id, customerId, to, content }) => {
|
2021-07-31 15:57:43 +00:00
|
|
|
const customer = await db.customer.findFirst({ where: { id: customerId } });
|
|
|
|
const phoneNumber = await db.phoneNumber.findFirst({ where: { customerId } });
|
2021-07-31 14:33:18 +00:00
|
|
|
|
2021-08-01 07:40:18 +00:00
|
|
|
try {
|
2021-08-01 14:03:49 +00:00
|
|
|
const message = await twilio(customer!.accountSid!, customer!.authToken!).messages.create({
|
2021-08-01 07:40:18 +00:00
|
|
|
body: content,
|
|
|
|
to,
|
|
|
|
from: phoneNumber!.phoneNumber,
|
|
|
|
});
|
|
|
|
await db.message.update({
|
|
|
|
where: { id },
|
|
|
|
data: { twilioSid: message.sid },
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
// TODO: handle twilio error
|
|
|
|
console.log(error.code); // 21211
|
|
|
|
console.log(error.moreInfo); // https://www.twilio.com/docs/errors/21211
|
|
|
|
}
|
2021-07-31 14:33:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
retry: ["1min"],
|
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 sendMessageQueue;
|