* feat: Cal.ai Self Serve #2 * chore: fix import and remove logs * fix: update checkout session * fix: type errors and test * fix: imports * fix: type err * fix: type error * fix: tests * chore: save progress * fix: workflow flow * fix: workflow update bug * tests: add unit tests for retell ai webhoo * fix: status code * fix: test and delete bug * fix: add dynamic variables * fix: type err * chore: update unit test * fix: type error * chore: update default prompt * fix: type errors * fix: workflow permissions * fix: workflow page * fix: translations * feat: add call duration * chore: add booking uid * fix: button positioning * chore: update tests * chore: improvements * chore: some more improvements * refactor: improvements * refactor: code feedback * refactor: improvements * feat: enable credits for orgs (#23077) * Show credits UI for orgs * fix stripe callback url when buying credits * give orgs 20% credits * add test for calulating credits --------- Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> * fix: types * fix: types * chore: error * fix: type error * fix: type error * chore: mock env * feat: add idempotency key to prevent double charging * chore: add userId and teamId * fix: skip inbound calls * chore: update tests * feat: add feature flag for voice agent * feat: finish test call and other improvements * chore: add alert * chore: update .env.example * chore: improvements * fix: update tests * refactor: remove un necessary * feat: add setup badge * chore: improvements * fix: use referene id * chore: improvements * fix: type error * fix: type * refactor: change pricing logic * refactor: update tests * fix: conflicts * fix: billing link for orgs * fix: types * refactor: move feature flag up * fix: alert and test call credit check * fix: update unit tests * fix: feedback * refactor: improvements * refactor: move handlers to separate files * fix: types * fix: missing import * fix: type * refactor: change general tools functions handling * refactor: use repository * refactor: improvements * fix: types * fix: type errorr * fix: auth check * feat: add creditFor * fix: update defualt prompt * fix: throw error on frontend * fix: update unit tests * fix: use deleteAllWorkflowReminders * refactor: add connect phone number * refactor: improvements * chore: translation * chore: update message * chore: translation * design improvements buy number dialog * add translation for error message * use translation key in error message * refactor: improve connect phone number tab * feat: support un saved workflow to tests * chore: remove un used * fix: remove un used * fix: remove un used * refactor: similify billing --------- Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com> Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
535 lines
14 KiB
TypeScript
535 lines
14 KiB
TypeScript
import { Prisma } from "@prisma/client";
|
|
|
|
import prisma from "@calcom/prisma";
|
|
import { PhoneNumberSubscriptionStatus } from "@calcom/prisma/enums";
|
|
|
|
interface _PhoneNumberRawResult {
|
|
id: number;
|
|
phoneNumber: string;
|
|
provider: string | null;
|
|
userId: number | null;
|
|
teamId: number | null;
|
|
subscriptionStatus: string | null;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
inboundAgentId: string | null;
|
|
outboundAgentId: string | null;
|
|
stripeCustomerId: string | null;
|
|
stripeSubscriptionId: string | null;
|
|
}
|
|
|
|
export interface AgentRawResult {
|
|
id: string;
|
|
name: string;
|
|
providerAgentId: string;
|
|
}
|
|
|
|
export class PrismaPhoneNumberRepository {
|
|
private static async getUserAccessibleTeamIds(userId: number): Promise<number[]> {
|
|
const memberships = await prisma.membership.findMany({
|
|
where: {
|
|
userId,
|
|
accepted: true,
|
|
},
|
|
select: {
|
|
teamId: true,
|
|
},
|
|
});
|
|
|
|
return memberships.map((membership) => membership.teamId);
|
|
}
|
|
|
|
static async findByPhoneNumberAndUserId({ phoneNumber, userId }: { phoneNumber: string; userId: number }) {
|
|
return await prisma.calAiPhoneNumber.findFirstOrThrow({
|
|
where: {
|
|
phoneNumber,
|
|
userId,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
stripeSubscriptionId: true,
|
|
stripeCustomerId: true,
|
|
provider: true,
|
|
inboundAgentId: true,
|
|
outboundAgentId: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findPhoneNumbersFromUserId({ userId }: { userId: number }) {
|
|
const phoneNumbers = await prisma.$queryRaw<_PhoneNumberRawResult[]>`
|
|
SELECT
|
|
pn.id,
|
|
pn."phoneNumber",
|
|
pn.provider,
|
|
pn."userId",
|
|
pn."teamId",
|
|
pn."subscriptionStatus",
|
|
pn."createdAt",
|
|
pn."updatedAt",
|
|
pn."inboundAgentId",
|
|
pn."outboundAgentId",
|
|
pn."stripeCustomerId",
|
|
pn."stripeSubscriptionId"
|
|
FROM "CalAiPhoneNumber" pn
|
|
WHERE pn."userId" = ${userId}
|
|
AND (pn."subscriptionStatus" = ${PhoneNumberSubscriptionStatus.ACTIVE} OR pn."subscriptionStatus" IS NULL)
|
|
`;
|
|
|
|
const phoneNumberIds = phoneNumbers.map((pn) => pn.id);
|
|
const agents =
|
|
phoneNumberIds.length > 0
|
|
? await prisma.$queryRaw<(AgentRawResult & { phoneNumberId: number; agentType: string })[]>`
|
|
SELECT
|
|
a.id,
|
|
a.name,
|
|
a."providerAgentId",
|
|
pn.id as "phoneNumberId",
|
|
CASE
|
|
WHEN pn."inboundAgentId" = a.id THEN 'inbound'
|
|
WHEN pn."outboundAgentId" = a.id THEN 'outbound'
|
|
END as "agentType"
|
|
FROM "Agent" a
|
|
INNER JOIN "CalAiPhoneNumber" pn ON (pn."inboundAgentId" = a.id OR pn."outboundAgentId" = a.id)
|
|
WHERE pn.id IN (${Prisma.join(phoneNumberIds)})
|
|
`
|
|
: [];
|
|
|
|
const agentsByPhoneNumber = agents.reduce((acc, agent) => {
|
|
const phoneNumberId = agent.phoneNumberId;
|
|
if (!acc[phoneNumberId]) {
|
|
acc[phoneNumberId] = { inbound: null, outbound: null };
|
|
}
|
|
|
|
const agentData = {
|
|
id: agent.id,
|
|
name: agent.name,
|
|
providerAgentId: agent.providerAgentId,
|
|
};
|
|
|
|
if (agent.agentType === "inbound") {
|
|
acc[phoneNumberId].inbound = agentData;
|
|
} else if (agent.agentType === "outbound") {
|
|
acc[phoneNumberId].outbound = agentData;
|
|
}
|
|
|
|
return acc;
|
|
}, {} as Record<number, { inbound: AgentRawResult | null; outbound: AgentRawResult | null }>);
|
|
|
|
return phoneNumbers.map((pn) => ({
|
|
id: pn.id,
|
|
phoneNumber: pn.phoneNumber,
|
|
provider: pn.provider,
|
|
userId: pn.userId,
|
|
teamId: pn.teamId,
|
|
subscriptionStatus: pn.subscriptionStatus,
|
|
createdAt: pn.createdAt,
|
|
updatedAt: pn.updatedAt,
|
|
stripeCustomerId: pn.stripeCustomerId,
|
|
stripeSubscriptionId: pn.stripeSubscriptionId,
|
|
inboundAgent: agentsByPhoneNumber[pn.id]?.inbound || null,
|
|
outboundAgent: agentsByPhoneNumber[pn.id]?.outbound || null,
|
|
}));
|
|
}
|
|
|
|
static async createPhoneNumber({
|
|
phoneNumber,
|
|
provider,
|
|
userId,
|
|
teamId,
|
|
stripeCustomerId,
|
|
stripeSubscriptionId,
|
|
subscriptionStatus,
|
|
providerPhoneNumberId,
|
|
}: {
|
|
phoneNumber: string;
|
|
provider: string;
|
|
userId: number;
|
|
teamId?: number;
|
|
stripeCustomerId?: string;
|
|
stripeSubscriptionId?: string;
|
|
subscriptionStatus?: PhoneNumberSubscriptionStatus;
|
|
providerPhoneNumberId?: string;
|
|
}) {
|
|
return await prisma.calAiPhoneNumber.create({
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
provider: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
stripeSubscriptionId: true,
|
|
stripeCustomerId: true,
|
|
inboundAgentId: true,
|
|
outboundAgentId: true,
|
|
providerPhoneNumberId: true,
|
|
},
|
|
data: {
|
|
provider,
|
|
userId,
|
|
teamId,
|
|
phoneNumber,
|
|
stripeCustomerId,
|
|
stripeSubscriptionId,
|
|
subscriptionStatus,
|
|
providerPhoneNumberId,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async deletePhoneNumber({ phoneNumber }: { phoneNumber: string }) {
|
|
return await prisma.calAiPhoneNumber.delete({
|
|
where: {
|
|
phoneNumber,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findByStripeSubscriptionId({ stripeSubscriptionId }: { stripeSubscriptionId: string }) {
|
|
return await prisma.calAiPhoneNumber.findFirst({
|
|
where: {
|
|
stripeSubscriptionId,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
provider: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
stripeCustomerId: true,
|
|
stripeSubscriptionId: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findByIdAndUserId({ id, userId }: { id: number; userId: number }) {
|
|
return await prisma.calAiPhoneNumber.findFirst({
|
|
where: {
|
|
id,
|
|
userId,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
stripeSubscriptionId: true,
|
|
stripeCustomerId: true,
|
|
provider: true,
|
|
inboundAgentId: true,
|
|
outboundAgentId: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findByIdWithTeamAccess({
|
|
id,
|
|
teamId,
|
|
userId,
|
|
}: {
|
|
id: number;
|
|
teamId: number;
|
|
userId: number;
|
|
}) {
|
|
const accessibleTeamIds = await this.getUserAccessibleTeamIds(userId);
|
|
|
|
if (!accessibleTeamIds.includes(teamId)) {
|
|
return null;
|
|
}
|
|
|
|
return await prisma.calAiPhoneNumber.findFirst({
|
|
where: {
|
|
id,
|
|
teamId,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
stripeSubscriptionId: true,
|
|
stripeCustomerId: true,
|
|
provider: true,
|
|
inboundAgentId: true,
|
|
outboundAgentId: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findByPhoneNumberAndTeamId({
|
|
phoneNumber,
|
|
teamId,
|
|
userId,
|
|
}: {
|
|
phoneNumber: string;
|
|
teamId: number;
|
|
userId: number;
|
|
}) {
|
|
const accessibleTeamIds = await this.getUserAccessibleTeamIds(userId);
|
|
|
|
if (!accessibleTeamIds.includes(teamId)) {
|
|
return null;
|
|
}
|
|
|
|
return await prisma.calAiPhoneNumber.findFirst({
|
|
where: {
|
|
phoneNumber,
|
|
teamId,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
userId: true,
|
|
teamId: true,
|
|
subscriptionStatus: true,
|
|
stripeSubscriptionId: true,
|
|
stripeCustomerId: true,
|
|
provider: true,
|
|
inboundAgentId: true,
|
|
outboundAgentId: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
static async findManyWithUserAccess({
|
|
userId,
|
|
teamId,
|
|
scope = "all",
|
|
}: {
|
|
userId: number;
|
|
teamId?: number;
|
|
scope?: "personal" | "team" | "all";
|
|
}) {
|
|
let whereCondition: Prisma.Sql;
|
|
|
|
if (scope === "personal") {
|
|
whereCondition = Prisma.sql`pn."userId" = ${userId}`;
|
|
} else if (scope === "team") {
|
|
const accessibleTeamIds = await this.getUserAccessibleTeamIds(userId);
|
|
|
|
if (accessibleTeamIds.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
if (teamId) {
|
|
if (!accessibleTeamIds.includes(teamId)) {
|
|
return [];
|
|
}
|
|
whereCondition = Prisma.sql`pn."teamId" = ${teamId}`;
|
|
} else {
|
|
whereCondition = Prisma.sql`pn."teamId" IN (${Prisma.join(accessibleTeamIds)})`;
|
|
}
|
|
} else {
|
|
const accessibleTeamIds = await this.getUserAccessibleTeamIds(userId);
|
|
|
|
if (teamId) {
|
|
if (accessibleTeamIds.includes(teamId)) {
|
|
whereCondition = Prisma.sql`(pn."userId" = ${userId} OR pn."teamId" = ${teamId})`;
|
|
} else {
|
|
whereCondition = Prisma.sql`pn."userId" = ${userId}`;
|
|
}
|
|
} else if (accessibleTeamIds.length > 0) {
|
|
whereCondition = Prisma.sql`(pn."userId" = ${userId} OR pn."teamId" IN (${Prisma.join(
|
|
accessibleTeamIds
|
|
)}))`;
|
|
} else {
|
|
whereCondition = Prisma.sql`pn."userId" = ${userId}`;
|
|
}
|
|
}
|
|
|
|
const phoneNumbers = await prisma.$queryRaw<_PhoneNumberRawResult[]>`
|
|
SELECT
|
|
pn.id,
|
|
pn."phoneNumber",
|
|
pn.provider,
|
|
pn."userId",
|
|
pn."teamId",
|
|
pn."subscriptionStatus",
|
|
pn."createdAt",
|
|
pn."updatedAt",
|
|
pn."inboundAgentId",
|
|
pn."outboundAgentId",
|
|
pn."stripeCustomerId",
|
|
pn."stripeSubscriptionId"
|
|
FROM "CalAiPhoneNumber" pn
|
|
WHERE ${whereCondition}
|
|
ORDER BY pn."createdAt" DESC
|
|
`;
|
|
|
|
const phoneNumberIds = phoneNumbers.map((pn) => pn.id);
|
|
const agents =
|
|
phoneNumberIds.length > 0
|
|
? await prisma.$queryRaw<(AgentRawResult & { phoneNumberId: number; agentType: string })[]>`
|
|
SELECT
|
|
a.id,
|
|
a.name,
|
|
a."providerAgentId",
|
|
pn.id as "phoneNumberId",
|
|
CASE
|
|
WHEN pn."inboundAgentId" = a.id THEN 'inbound'
|
|
WHEN pn."outboundAgentId" = a.id THEN 'outbound'
|
|
END as "agentType"
|
|
FROM "Agent" a
|
|
INNER JOIN "CalAiPhoneNumber" pn ON (pn."inboundAgentId" = a.id OR pn."outboundAgentId" = a.id)
|
|
WHERE pn.id IN (${Prisma.join(phoneNumberIds)})
|
|
`
|
|
: [];
|
|
|
|
const agentsByPhoneNumber = agents.reduce((acc, agent) => {
|
|
const phoneNumberId = agent.phoneNumberId;
|
|
if (!acc[phoneNumberId]) {
|
|
acc[phoneNumberId] = { inbound: null, outbound: null };
|
|
}
|
|
|
|
const agentData = {
|
|
id: agent.id,
|
|
name: agent.name,
|
|
providerAgentId: agent.providerAgentId,
|
|
};
|
|
|
|
if (agent.agentType === "inbound") {
|
|
acc[phoneNumberId].inbound = agentData;
|
|
} else if (agent.agentType === "outbound") {
|
|
acc[phoneNumberId].outbound = agentData;
|
|
}
|
|
|
|
return acc;
|
|
}, {} as Record<number, { inbound: AgentRawResult | null; outbound: AgentRawResult | null }>);
|
|
|
|
return phoneNumbers.map((pn) => ({
|
|
id: pn.id,
|
|
phoneNumber: pn.phoneNumber,
|
|
provider: pn.provider,
|
|
userId: pn.userId,
|
|
teamId: pn.teamId,
|
|
subscriptionStatus: pn.subscriptionStatus,
|
|
createdAt: pn.createdAt,
|
|
updatedAt: pn.updatedAt,
|
|
stripeCustomerId: pn.stripeCustomerId,
|
|
stripeSubscriptionId: pn.stripeSubscriptionId,
|
|
inboundAgent: agentsByPhoneNumber[pn.id]?.inbound || null,
|
|
outboundAgent: agentsByPhoneNumber[pn.id]?.outbound || null,
|
|
}));
|
|
}
|
|
|
|
static async updateSubscriptionStatus({
|
|
id,
|
|
subscriptionStatus,
|
|
disconnectOutboundAgent = false,
|
|
}: {
|
|
id: number;
|
|
subscriptionStatus: PhoneNumberSubscriptionStatus;
|
|
disconnectOutboundAgent?: boolean;
|
|
}) {
|
|
const updateData: Prisma.CalAiPhoneNumberUpdateInput = {
|
|
subscriptionStatus,
|
|
};
|
|
|
|
if (disconnectOutboundAgent) {
|
|
updateData.outboundAgent = {
|
|
disconnect: true,
|
|
};
|
|
}
|
|
|
|
return await prisma.calAiPhoneNumber.update({
|
|
where: {
|
|
id,
|
|
},
|
|
data: updateData,
|
|
});
|
|
}
|
|
|
|
static async updateAgents({
|
|
id,
|
|
inboundProviderAgentId,
|
|
outboundProviderAgentId,
|
|
}: {
|
|
id: number;
|
|
inboundProviderAgentId?: string | null;
|
|
outboundProviderAgentId?: string | null;
|
|
}) {
|
|
const updateData: Prisma.CalAiPhoneNumberUpdateInput = {};
|
|
|
|
if (inboundProviderAgentId !== undefined) {
|
|
if (inboundProviderAgentId) {
|
|
const agent = await prisma.agent.findFirst({
|
|
where: {
|
|
providerAgentId: inboundProviderAgentId,
|
|
},
|
|
});
|
|
|
|
if (agent) {
|
|
updateData.inboundAgent = {
|
|
connect: { id: agent.id },
|
|
};
|
|
} else {
|
|
updateData.inboundAgent = { disconnect: true };
|
|
}
|
|
} else {
|
|
updateData.inboundAgent = { disconnect: true };
|
|
}
|
|
}
|
|
|
|
if (outboundProviderAgentId !== undefined) {
|
|
if (outboundProviderAgentId) {
|
|
const agent = await prisma.agent.findFirst({
|
|
where: {
|
|
providerAgentId: outboundProviderAgentId,
|
|
},
|
|
});
|
|
|
|
if (agent) {
|
|
updateData.outboundAgent = {
|
|
connect: { id: agent.id },
|
|
};
|
|
} else {
|
|
updateData.outboundAgent = { disconnect: true };
|
|
}
|
|
} else {
|
|
updateData.outboundAgent = { disconnect: true };
|
|
}
|
|
}
|
|
|
|
return await prisma.calAiPhoneNumber.update({
|
|
where: {
|
|
id,
|
|
},
|
|
data: updateData,
|
|
});
|
|
}
|
|
|
|
static async findByPhoneNumber({ phoneNumber }: { phoneNumber: string }) {
|
|
return await prisma.calAiPhoneNumber.findFirst({
|
|
where: {
|
|
phoneNumber,
|
|
},
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
userId: true,
|
|
teamId: true,
|
|
user: { select: { id: true, email: true, name: true } },
|
|
team: { select: { id: true, name: true } },
|
|
},
|
|
});
|
|
}
|
|
}
|