* wip * update layoutHOC * wip * remove app router related code no longer used * remove more * await cookies, headers, params, serachparams * update yarn.lock * await cookies, headers, params, serachparams more * update yarn lock again * downgrade next-auth to 4.22.1 * update yarn lock * fix * update yarn lock * fix type checks * update yarn lock * await headers and cookies * restore pages folder * restore yarn.lock * update yarn.lock * await headers and cookies * remove * await params in API routes * updates * restore next.config.js * remove i18n from next.config.js * Fixed tests * Fixed types * Removed duplicate favicon.ico * Fixing more types * ImageResponse moved to next/og * Fixed prisma import issues * dynamic import for @ewsjs/xhr * remove deasync dep * dynamic import for @tryvital/vital-node * fix type checks * add back turbopack command * Type fix * Removed unneeded file * fix turbopack relative path errors * add comments * remove unneeded code * Fixed build errors * await apis * use Promise<Params> type in defaultResponderForAppDir util * refactor scim api route * fix type checks * separate app-routing.config into client-config and server-config * wip * refactor routing forms components * revert unneeded changes for easier review * fix * fix * use CustomTrans * fix type * fix unit tests * fix type error * fix build error * fix build error * fix build error * fix warnings * fix warnings * upgrade @tremor/react and tailwindcss * numCols -> numItems * fix forgot-password e2e test * fix 1 more e2e test * fix login e2e test * fix e2e tests * fix e2e tests * clean up * remove error * use tremor/react 2.11.0 * fix * rename CustomTrans to ServerTrans * address comment * fix test * fix ServerTrans * fix * fix type * fix ServerTrans usages 1 * fix translations * fix type checks * fix type checks * link styling * fix --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
544 lines
12 KiB
TypeScript
544 lines
12 KiB
TypeScript
import { defaultResponderForAppDir } from "app/api/defaultResponderForAppDir";
|
|
import { createHmac } from "crypto";
|
|
import { headers } from "next/headers";
|
|
import type { NextRequest } from "next/server";
|
|
import { NextResponse } from "next/server";
|
|
import { z } from "zod";
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
import { UserRepository } from "@calcom/lib/server/repository/user";
|
|
import { userMetadata } from "@calcom/prisma/zod-utils";
|
|
|
|
import { CardComponent } from "@lib/plain/card-components";
|
|
|
|
const customerCardDisplay = (
|
|
name: string,
|
|
email: string,
|
|
id: string,
|
|
username: string,
|
|
timeZone: string,
|
|
emailVerified: Date | null,
|
|
twoFactorEnabled: boolean | null,
|
|
identityProvider: string | null,
|
|
lastActiveAt: Date | null,
|
|
teamName: string | null,
|
|
teamSlug: string | null,
|
|
isOrganization: boolean | null,
|
|
stripeCustomerId: string | null
|
|
): Card => {
|
|
return {
|
|
key: "customer-card",
|
|
timeToLiveSeconds: null,
|
|
components: [
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentText: {
|
|
text: "Basic Information",
|
|
textColor: "NORMAL",
|
|
textSize: "L",
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Name",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: name || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Email",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: email || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Username",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: username || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "User ID",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: id || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentDivider: {
|
|
dividerSpacingSize: "M",
|
|
},
|
|
},
|
|
// Account Settings Section Title
|
|
{
|
|
componentText: {
|
|
text: "Account Settings",
|
|
textColor: "NORMAL",
|
|
textSize: "L",
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Time Zone",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: timeZone || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Identity Provider",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: identityProvider || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Last Active At",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: lastActiveAt ? dayjs(lastActiveAt).fromNow() : "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentDivider: {
|
|
dividerSpacingSize: "M",
|
|
},
|
|
},
|
|
// Team Information Section Title
|
|
{
|
|
componentText: {
|
|
text: "Team Information",
|
|
textColor: "NORMAL",
|
|
textSize: "L",
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Team Name",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: teamName || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Team Slug",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: teamSlug || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Is Organization",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentBadge: {
|
|
badgeLabel: isOrganization ? "Yes" : "No",
|
|
badgeColor: isOrganization ? "GREEN" : "RED",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentDivider: {
|
|
dividerSpacingSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentText: {
|
|
text: "Security & Billing",
|
|
textColor: "NORMAL",
|
|
textSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Stripe Customer ID",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentText: {
|
|
text: stripeCustomerId || "Unknown",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Email Verified?",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentBadge: {
|
|
badgeLabel: emailVerified === null ? "No" : emailVerified ? "Yes" : "No",
|
|
badgeColor: emailVerified === null ? "RED" : emailVerified ? "GREEN" : "RED",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentRow: {
|
|
rowMainContent: [
|
|
{
|
|
componentText: {
|
|
text: "Two Factor Enabled?",
|
|
textColor: "MUTED",
|
|
},
|
|
},
|
|
],
|
|
rowAsideContent: [
|
|
{
|
|
componentBadge: {
|
|
badgeLabel: twoFactorEnabled === null ? "No" : twoFactorEnabled ? "Yes" : "No",
|
|
badgeColor: twoFactorEnabled === null ? "RED" : twoFactorEnabled ? "GREEN" : "RED",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
};
|
|
|
|
const Card = z.object({
|
|
key: z.string(),
|
|
timeToLiveSeconds: z.number().int().min(0).nullish().default(null),
|
|
components: z.array(CardComponent).nullable(),
|
|
});
|
|
|
|
type Card = z.infer<typeof Card>;
|
|
|
|
const cardExamples: ((
|
|
name: string,
|
|
email: string,
|
|
id: string,
|
|
username: string,
|
|
timeZone: string,
|
|
emailVerified: Date | null,
|
|
twoFactorEnabled: boolean | null,
|
|
identityProvider: string | null,
|
|
lastActiveAt: Date | null,
|
|
teamName: string | null,
|
|
teamSlug: string | null,
|
|
isOrganization: boolean | null,
|
|
stripeCustomerId: string | null
|
|
) => Card)[] = [customerCardDisplay];
|
|
|
|
const inputSchema = z.object({
|
|
customer: z.object({
|
|
name: z.string().optional(),
|
|
email: z.string().email(),
|
|
username: z.string().optional(),
|
|
timeZone: z.string().optional(),
|
|
emailVerified: z.boolean().optional(),
|
|
identityProvider: z.string().optional(),
|
|
twoFactorEnabled: z.boolean().optional(),
|
|
lastActiveAt: z.string().optional(),
|
|
teamName: z.string().optional(),
|
|
teamSlug: z.string().optional(),
|
|
isOrganization: z.boolean().optional(),
|
|
stripeCustomerId: z.string().optional(),
|
|
}),
|
|
cardKeys: z.array(z.string()),
|
|
});
|
|
|
|
async function handler(request: NextRequest) {
|
|
const headersList = await headers();
|
|
const requestBody = await request.json();
|
|
|
|
// HMAC verification
|
|
const incomingSignature = headersList.get("plain-request-signature");
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
const expectedSignature = createHmac("sha-256", process.env.PLAIN_HMAC_SECRET_KEY!)
|
|
.update(JSON.stringify(requestBody))
|
|
.digest("hex");
|
|
if (incomingSignature !== expectedSignature) {
|
|
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
|
}
|
|
|
|
// Validate request body
|
|
const { cardKeys, customer } = inputSchema.parse(requestBody);
|
|
|
|
const user = await UserRepository.findByEmail({ email: customer.email });
|
|
|
|
if (!user) {
|
|
return NextResponse.json({
|
|
cards: [
|
|
{
|
|
key: "customer-card",
|
|
timeToLiveSeconds: null,
|
|
components: [
|
|
{
|
|
componentSpacer: {
|
|
spacerSize: "M",
|
|
},
|
|
},
|
|
{
|
|
componentText: {
|
|
textSize: "L",
|
|
textColor: "MUTED",
|
|
text: "User does not exist!",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
// Fetch team details including userId and team name
|
|
const teamMemberships = await UserRepository.findTeamsByUserId({ userId: user.id });
|
|
const firstTeam = teamMemberships.teams[0] ?? null;
|
|
|
|
// Parse user metadata
|
|
const parsedMetadata = userMetadata.parse(user.metadata);
|
|
|
|
const cards = await Promise.all(
|
|
cardExamples.map(async (cardFn) => {
|
|
return cardFn(
|
|
user.name || "Unknown",
|
|
user.email,
|
|
user.id.toString(),
|
|
user.username || "Unknown",
|
|
user.timeZone,
|
|
user.emailVerified,
|
|
user.twoFactorEnabled,
|
|
user.identityProvider,
|
|
user.lastActiveAt,
|
|
firstTeam?.name || "Unknown",
|
|
firstTeam?.slug || "Unknown",
|
|
firstTeam?.isOrganization || false,
|
|
(user.metadata as { stripeCustomerId?: string })?.stripeCustomerId || "Unknown"
|
|
);
|
|
})
|
|
);
|
|
|
|
const filteredCards = cards.filter((card) => {
|
|
return cardKeys.length === 0 || cardKeys.includes(card.key);
|
|
});
|
|
|
|
return NextResponse.json({
|
|
cards: filteredCards,
|
|
user: {
|
|
...user,
|
|
metadata: parsedMetadata,
|
|
},
|
|
});
|
|
}
|
|
|
|
export const POST = defaultResponderForAppDir(handler);
|