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
|
|
|
customerId: string;
|
|
|
|
};
|
2021-07-31 14:33:18 +00:00
|
|
|
|
|
|
|
const setTwilioWebhooks = Queue<Payload>(
|
|
|
|
"api/queue/set-twilio-webhooks",
|
|
|
|
async ({ customerId }) => {
|
2021-07-31 15:57:43 +00:00
|
|
|
const customer = await db.customer.findFirst({ where: { id: customerId } });
|
2021-07-31 14:33:18 +00:00
|
|
|
const twimlApp = customer!.twimlAppSid
|
|
|
|
? await twilio(customer!.accountSid!, customer!.authToken!)
|
|
|
|
.applications.get(customer!.twimlAppSid)
|
|
|
|
.fetch()
|
|
|
|
: await twilio(customer!.accountSid!, customer!.authToken!).applications.create({
|
|
|
|
friendlyName: "Virtual Phone",
|
|
|
|
smsUrl: "https://phone.mokhtar.dev/api/webhook/incoming-message",
|
|
|
|
smsMethod: "POST",
|
|
|
|
voiceUrl: "https://phone.mokhtar.dev/api/webhook/incoming-call",
|
|
|
|
voiceMethod: "POST",
|
2021-07-31 15:57:43 +00:00
|
|
|
});
|
|
|
|
const twimlAppSid = twimlApp.sid;
|
|
|
|
const phoneNumber = await db.phoneNumber.findFirst({ where: { customerId } });
|
2021-07-31 14:33:18 +00:00
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
db.customer.update({
|
|
|
|
where: { id: customerId },
|
|
|
|
data: { twimlAppSid },
|
|
|
|
}),
|
|
|
|
twilio(customer!.accountSid!, customer!.authToken!)
|
|
|
|
.incomingPhoneNumbers.get(phoneNumber!.phoneNumberSid)
|
|
|
|
.update({
|
|
|
|
smsApplicationSid: twimlAppSid,
|
|
|
|
voiceApplicationSid: twimlAppSid,
|
|
|
|
}),
|
2021-07-31 15:57:43 +00:00
|
|
|
]);
|
2021-07-31 14:33:18 +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 setTwilioWebhooks;
|