2022-05-19 22:55:02 +00:00
|
|
|
import { type ActionFunction } from "@remix-run/node";
|
|
|
|
import { json } from "superjson-remix";
|
|
|
|
|
|
|
|
import db from "~/utils/db.server";
|
|
|
|
import { requireLoggedIn } from "~/utils/auth.server";
|
|
|
|
import getTwilioClient, { translateMessageDirection, translateMessageStatus } from "~/utils/twilio.server";
|
|
|
|
|
|
|
|
export type NewMessageActionData = {};
|
|
|
|
|
|
|
|
const action: ActionFunction = async ({ params, request }) => {
|
2022-05-21 19:33:23 +00:00
|
|
|
const { phoneNumber, twilioAccount } = await requireLoggedIn(request);
|
|
|
|
if (!twilioAccount) {
|
|
|
|
throw new Error("unreachable");
|
|
|
|
}
|
2022-05-19 22:55:02 +00:00
|
|
|
const recipient = decodeURIComponent(params.recipient ?? "");
|
|
|
|
const formData = Object.fromEntries(await request.formData());
|
2022-05-21 19:33:23 +00:00
|
|
|
const twilioClient = getTwilioClient(twilioAccount);
|
2022-05-19 22:55:02 +00:00
|
|
|
try {
|
|
|
|
console.log({
|
|
|
|
body: formData.content.toString(),
|
|
|
|
to: recipient,
|
|
|
|
from: phoneNumber!.number,
|
|
|
|
});
|
|
|
|
const message = await twilioClient.messages.create({
|
|
|
|
body: formData.content.toString(),
|
|
|
|
to: recipient,
|
|
|
|
from: phoneNumber!.number,
|
|
|
|
});
|
|
|
|
await db.message.create({
|
|
|
|
data: {
|
|
|
|
phoneNumberId: phoneNumber!.id,
|
|
|
|
id: message.sid,
|
|
|
|
to: message.to,
|
|
|
|
from: message.from,
|
|
|
|
status: translateMessageStatus(message.status),
|
|
|
|
direction: translateMessageDirection(message.direction),
|
|
|
|
sentAt: new Date(message.dateCreated),
|
|
|
|
content: message.body,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} catch (error: any) {
|
|
|
|
// TODO: handle twilio error
|
|
|
|
console.log(error.code); // 21211
|
|
|
|
console.log(error.moreInfo); // https://www.twilio.com/docs/errors/21211
|
|
|
|
console.log(JSON.stringify(error));
|
|
|
|
throw error;
|
|
|
|
/*await db.message.update({
|
|
|
|
where: { id },
|
|
|
|
data: { status: MessageStatus.Error /!*errorMessage: "Reason: failed because of"*!/ },
|
|
|
|
});*/
|
|
|
|
}
|
|
|
|
|
|
|
|
return json<NewMessageActionData>({});
|
|
|
|
};
|
|
|
|
|
|
|
|
export default action;
|