-
Notifications
You must be signed in to change notification settings - Fork 8.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: migrate api for team upgrade to App Router #19100
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import { cookies, headers } from "next/headers"; | ||
import type { NextRequest } from "next/server"; | ||
import { NextResponse } from "next/server"; | ||
import type Stripe from "stripe"; | ||
import { z } from "zod"; | ||
|
||
import { getRequestedSlugError } from "@calcom/app-store/stripepayment/lib/team-billing"; | ||
import { getServerSession } from "@calcom/features/auth/lib/getServerSession"; | ||
import stripe from "@calcom/features/ee/payments/server/stripe"; | ||
import { WEBAPP_URL } from "@calcom/lib/constants"; | ||
import { HttpError } from "@calcom/lib/http-error"; | ||
import prisma from "@calcom/prisma"; | ||
import { teamMetadataSchema } from "@calcom/prisma/zod-utils"; | ||
|
||
import { buildLegacyRequest } from "@lib/buildLegacyCtx"; | ||
|
||
const querySchema = z.object({ | ||
team: z.string().transform((val) => parseInt(val)), | ||
session_id: z.string().min(1), | ||
}); | ||
|
||
export async function GET(req: NextRequest, { params }: { params: { team: string } }) { | ||
try { | ||
const searchParams = req.nextUrl.searchParams; | ||
const { team: id, session_id } = querySchema.parse({ | ||
team: params.team, | ||
session_id: searchParams.get("session_id"), | ||
}); | ||
|
||
const checkoutSession = await stripe.checkout.sessions.retrieve(session_id, { | ||
expand: ["subscription"], | ||
}); | ||
if (!checkoutSession) { | ||
throw new HttpError({ statusCode: 404, message: "Checkout session not found" }); | ||
} | ||
|
||
const subscription = checkoutSession.subscription as Stripe.Subscription; | ||
if (checkoutSession.payment_status !== "paid") { | ||
throw new HttpError({ statusCode: 402, message: "Payment required" }); | ||
} | ||
|
||
let team = await prisma.team.findFirst({ | ||
where: { metadata: { path: ["paymentId"], equals: checkoutSession.id } }, | ||
}); | ||
|
||
let metadata; | ||
|
||
if (!team) { | ||
const prevTeam = await prisma.team.findFirstOrThrow({ where: { id } }); | ||
|
||
metadata = teamMetadataSchema.safeParse(prevTeam.metadata); | ||
if (!metadata.success) { | ||
throw new HttpError({ statusCode: 400, message: "Invalid team metadata" }); | ||
} | ||
|
||
const { requestedSlug, ...newMetadata } = metadata.data || {}; | ||
team = await prisma.team.update({ | ||
where: { id }, | ||
data: { | ||
metadata: { | ||
...newMetadata, | ||
paymentId: checkoutSession.id, | ||
subscriptionId: subscription.id || null, | ||
subscriptionItemId: subscription.items.data[0].id || null, | ||
}, | ||
}, | ||
}); | ||
|
||
const slug = prevTeam.slug || requestedSlug; | ||
if (slug) { | ||
try { | ||
team = await prisma.team.update({ where: { id }, data: { slug } }); | ||
} catch (error) { | ||
const { message, statusCode } = getRequestedSlugError(error, slug); | ||
return NextResponse.json({ message }, { status: statusCode }); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. replacing |
||
} | ||
} | ||
} | ||
|
||
if (!metadata) { | ||
metadata = teamMetadataSchema.safeParse(team.metadata); | ||
if (!metadata.success) { | ||
throw new HttpError({ statusCode: 400, message: "Invalid team metadata" }); | ||
} | ||
} | ||
|
||
const session = await getServerSession({ req: buildLegacyRequest(headers(), cookies()) }); | ||
|
||
if (!session) { | ||
return NextResponse.json({ message: "Team upgraded successfully" }); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. replacing |
||
} | ||
|
||
const redirectUrl = team?.isOrganization | ||
? `${WEBAPP_URL}/settings/organizations/profile?upgraded=true` | ||
: `${WEBAPP_URL}/settings/teams/${team.id}/profile?upgraded=true`; | ||
|
||
return NextResponse.redirect(redirectUrl); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. replacing |
||
} catch (error) { | ||
if (error instanceof HttpError) { | ||
throw error; | ||
} | ||
return NextResponse.json({ error: "Internal Server Error" }, { status: 500 }); | ||
} | ||
} |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replacing
const { team: id, session_id } = querySchema.parse(req.query);
in the pages router api file