got {messages,phone calls} {fetching,display} working
This commit is contained in:
@ -1,16 +1,92 @@
|
||||
import twilio from "twilio";
|
||||
import type { MessageInstance } from "twilio/lib/rest/api/v2010/account/message";
|
||||
import type { CallInstance } from "twilio/lib/rest/api/v2010/account/call";
|
||||
import { type Organization, CallStatus, Direction, MessageStatus } from "@prisma/client";
|
||||
|
||||
import type { Organization } from "@prisma/client";
|
||||
import serverConfig from "~/config/config.server";
|
||||
|
||||
type MinimalOrganization = Pick<Organization, "twilioSubAccountSid" | "twilioAccountSid">;
|
||||
|
||||
export default function getTwilioClient(organization: MinimalOrganization): twilio.Twilio {
|
||||
if (!organization || !organization.twilioSubAccountSid || !organization.twilioAccountSid) {
|
||||
export default function getTwilioClient({ twilioAccountSid, twilioSubAccountSid }: MinimalOrganization): twilio.Twilio {
|
||||
if (!twilioSubAccountSid || !twilioAccountSid) {
|
||||
throw new Error("unreachable");
|
||||
}
|
||||
|
||||
return twilio(organization.twilioSubAccountSid, serverConfig.twilio.authToken, {
|
||||
accountSid: organization.twilioAccountSid,
|
||||
return twilio(twilioSubAccountSid, serverConfig.twilio.authToken, {
|
||||
accountSid: twilioAccountSid,
|
||||
});
|
||||
}
|
||||
|
||||
export function translateMessageStatus(status: MessageInstance["status"]): MessageStatus {
|
||||
switch (status) {
|
||||
case "accepted":
|
||||
return MessageStatus.Accepted;
|
||||
case "canceled":
|
||||
return MessageStatus.Canceled;
|
||||
case "delivered":
|
||||
return MessageStatus.Delivered;
|
||||
case "failed":
|
||||
return MessageStatus.Failed;
|
||||
case "partially_delivered":
|
||||
return MessageStatus.PartiallyDelivered;
|
||||
case "queued":
|
||||
return MessageStatus.Queued;
|
||||
case "read":
|
||||
return MessageStatus.Read;
|
||||
case "received":
|
||||
return MessageStatus.Received;
|
||||
case "receiving":
|
||||
return MessageStatus.Receiving;
|
||||
case "scheduled":
|
||||
return MessageStatus.Scheduled;
|
||||
case "sending":
|
||||
return MessageStatus.Sending;
|
||||
case "sent":
|
||||
return MessageStatus.Sent;
|
||||
case "undelivered":
|
||||
return MessageStatus.Undelivered;
|
||||
}
|
||||
}
|
||||
|
||||
export function translateMessageDirection(direction: MessageInstance["direction"]): Direction {
|
||||
switch (direction) {
|
||||
case "inbound":
|
||||
return Direction.Inbound;
|
||||
case "outbound-api":
|
||||
case "outbound-call":
|
||||
case "outbound-reply":
|
||||
default:
|
||||
return Direction.Outbound;
|
||||
}
|
||||
}
|
||||
|
||||
export function translateCallStatus(status: CallInstance["status"]): CallStatus {
|
||||
switch (status) {
|
||||
case "busy":
|
||||
return CallStatus.Busy;
|
||||
case "canceled":
|
||||
return CallStatus.Canceled;
|
||||
case "completed":
|
||||
return CallStatus.Completed;
|
||||
case "failed":
|
||||
return CallStatus.Failed;
|
||||
case "in-progress":
|
||||
return CallStatus.InProgress;
|
||||
case "no-answer":
|
||||
return CallStatus.NoAnswer;
|
||||
case "queued":
|
||||
return CallStatus.Queued;
|
||||
case "ringing":
|
||||
return CallStatus.Ringing;
|
||||
}
|
||||
}
|
||||
|
||||
export function translateCallDirection(direction: CallInstance["direction"]): Direction {
|
||||
switch (direction) {
|
||||
case "inbound":
|
||||
return Direction.Inbound;
|
||||
case "outbound":
|
||||
default:
|
||||
return Direction.Outbound;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user