set twilio api key and secret
This commit is contained in:
parent
9f213ad71e
commit
0f25c53b50
@ -1,6 +1,7 @@
|
|||||||
import { getConfig } from "blitz";
|
import { getConfig } from "blitz";
|
||||||
import { Queue } from "quirrel/blitz";
|
import { Queue } from "quirrel/blitz";
|
||||||
import twilio from "twilio";
|
import twilio from "twilio";
|
||||||
|
import type { ApplicationInstance } from "twilio/lib/rest/api/v2010/account/application";
|
||||||
|
|
||||||
import db from "../../../../db";
|
import db from "../../../../db";
|
||||||
|
|
||||||
@ -25,31 +26,65 @@ const setTwilioWebhooks = Queue<Payload>("api/queue/set-twilio-webhooks", async
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const twimlApp = organization.twimlAppSid
|
const mainTwilioClient = twilio(organization.twilioAccountSid, organization.twilioAuthToken);
|
||||||
? await twilio(organization.twilioAccountSid, organization.twilioAuthToken)
|
const [twimlApp, apiKey] = await Promise.all([
|
||||||
.applications.get(organization.twimlAppSid)
|
getTwimlApplication(mainTwilioClient, organization.twimlAppSid),
|
||||||
.fetch()
|
mainTwilioClient.newKeys.create({ friendlyName: "Shellphone API key" }),
|
||||||
: await twilio(organization.twilioAccountSid, organization.twilioAuthToken).applications.create({
|
]);
|
||||||
friendlyName: "Shellphone",
|
|
||||||
smsUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-message`,
|
|
||||||
smsMethod: "POST",
|
|
||||||
voiceUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-call`,
|
|
||||||
voiceMethod: "POST",
|
|
||||||
});
|
|
||||||
const twimlAppSid = twimlApp.sid;
|
const twimlAppSid = twimlApp.sid;
|
||||||
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
db.organization.update({
|
db.organization.update({
|
||||||
where: { id: organizationId },
|
where: { id: organizationId },
|
||||||
data: { twimlAppSid },
|
data: {
|
||||||
|
twimlAppSid,
|
||||||
|
twilioApiKey: apiKey.sid,
|
||||||
|
twilioApiSecret: apiKey.secret,
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
twilio(organization.twilioAccountSid, organization.twilioAuthToken)
|
mainTwilioClient.incomingPhoneNumbers.get(phoneNumber.id).update({
|
||||||
.incomingPhoneNumbers.get(phoneNumber.id)
|
|
||||||
.update({
|
|
||||||
smsApplicationSid: twimlAppSid,
|
smsApplicationSid: twimlAppSid,
|
||||||
voiceApplicationSid: twimlAppSid,
|
voiceApplicationSid: twimlAppSid,
|
||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
async function getTwimlApplication(
|
||||||
|
twilioClient: twilio.Twilio,
|
||||||
|
organizationTwimlAppSid: string | null,
|
||||||
|
): Promise<ApplicationInstance> {
|
||||||
|
try {
|
||||||
|
if (organizationTwimlAppSid) {
|
||||||
|
return updateTwimlApplication(twilioClient, organizationTwimlAppSid);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// twiml app with sid `organizationTwimlAppSid` probably doesn't exist anymore
|
||||||
|
}
|
||||||
|
|
||||||
|
const twimlApps = await twilioClient.applications.list();
|
||||||
|
const twimlApp = twimlApps.find((app) => app.friendlyName === "Shellphone");
|
||||||
|
if (twimlApp) {
|
||||||
|
return updateTwimlApplication(twilioClient, twimlApp.sid);
|
||||||
|
}
|
||||||
|
|
||||||
|
return twilioClient.applications.create({
|
||||||
|
friendlyName: "Shellphone",
|
||||||
|
smsUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-message`,
|
||||||
|
smsMethod: "POST",
|
||||||
|
voiceUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-call`,
|
||||||
|
voiceMethod: "POST",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function updateTwimlApplication(twilioClient: twilio.Twilio, twimlAppSid: string) {
|
||||||
|
await twilioClient.applications.get(twimlAppSid).update({
|
||||||
|
smsUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-message`,
|
||||||
|
smsMethod: "POST",
|
||||||
|
voiceUrl: `https://${serverRuntimeConfig.app.baseUrl}/api/webhook/incoming-call`,
|
||||||
|
voiceMethod: "POST",
|
||||||
|
});
|
||||||
|
|
||||||
|
return twilioClient.applications.get(twimlAppSid).fetch();
|
||||||
|
}
|
||||||
|
|
||||||
export default setTwilioWebhooks;
|
export default setTwilioWebhooks;
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "Organization" ADD COLUMN "twilioApiKey" TEXT,
|
||||||
|
ADD COLUMN "twilioApiSecret" TEXT;
|
@ -22,6 +22,8 @@ model Organization {
|
|||||||
|
|
||||||
twilioAccountSid String?
|
twilioAccountSid String?
|
||||||
twilioAuthToken String? // TODO: encrypt it with encryptionKey
|
twilioAuthToken String? // TODO: encrypt it with encryptionKey
|
||||||
|
twilioApiKey String?
|
||||||
|
twilioApiSecret String? // TODO: encrypt it with encryptionKey
|
||||||
twimlAppSid String?
|
twimlAppSid String?
|
||||||
|
|
||||||
memberships Membership[]
|
memberships Membership[]
|
||||||
|
Loading…
Reference in New Issue
Block a user