import appLogger from "../../lib/logger"; import supabase from "../supabase/server"; import { computeEncryptionKey } from "./_encryption"; import { findPhoneNumber } from "./phone-number"; const logger = appLogger.child({ module: "customer" }); export type Customer = { id: string; email: string; name: string; encryptionKey: string; accountSid?: string; authToken?: string; // TODO: should encrypt it twimlAppSid?: string; paddleCustomerId?: string; paddleSubscriptionId?: string; }; type CreateCustomerParams = Pick; export async function createCustomer({ id, email, name }: CreateCustomerParams): Promise { const encryptionKey = computeEncryptionKey(id).toString("hex"); const { error, data } = await supabase .from("customer") .insert({ id, email, name, encryptionKey, }); if (error) throw error; return data![0]; } export async function findCustomer(id: Customer["id"]): Promise { const { error, data } = await supabase .from("customer") .select("*") .eq("id", id) .single(); if (error) throw error; return data!; } export async function findCustomerByPhoneNumber(phoneNumber: string): Promise { const { customerId } = await findPhoneNumber(phoneNumber); const { error, data } = await supabase .from("customer") .select("*") .eq("id", customerId) .single(); if (error) throw error; return data!; } export async function updateCustomer(id: string, update: Partial) { await supabase.from("customer") .update(update) .eq("id", id) .throwOnError(); }