d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
81 lines
3.0 KiB
TypeScript
81 lines
3.0 KiB
TypeScript
import { db } from '@sim/db'
|
|
import { user } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { eq } from 'drizzle-orm'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { billingPortalBodySchema } from '@/lib/api/contracts/subscription'
|
|
import { getSession } from '@/lib/auth'
|
|
import { getOrganizationSubscription } from '@/lib/billing/core/billing'
|
|
import { isOrganizationOwnerOrAdmin } from '@/lib/billing/core/organization'
|
|
import { requireStripeClient } from '@/lib/billing/stripe-client'
|
|
import { getBaseUrl } from '@/lib/core/utils/urls'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
|
|
const logger = createLogger('BillingPortal')
|
|
|
|
export const POST = withRouteHandler(async (request: NextRequest) => {
|
|
const session = await getSession()
|
|
|
|
try {
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const body = await request.json().catch(() => ({}))
|
|
const parsedBody = billingPortalBodySchema.safeParse(body)
|
|
if (!parsedBody.success) {
|
|
return NextResponse.json({ error: 'Invalid request body' }, { status: 400 })
|
|
}
|
|
const context = parsedBody.data.context
|
|
const organizationId = parsedBody.data.organizationId
|
|
const returnUrl = parsedBody.data.returnUrl || `${getBaseUrl()}/workspace?billing=updated`
|
|
|
|
const stripe = requireStripeClient()
|
|
|
|
let stripeCustomerId: string | null = null
|
|
|
|
if (context === 'organization') {
|
|
if (!organizationId) {
|
|
return NextResponse.json({ error: 'organizationId is required' }, { status: 400 })
|
|
}
|
|
|
|
const hasPermission = await isOrganizationOwnerOrAdmin(session.user.id, organizationId)
|
|
if (!hasPermission) {
|
|
return NextResponse.json({ error: 'Permission denied' }, { status: 403 })
|
|
}
|
|
|
|
// Canonical resolver: deterministically selects the most recent entitled
|
|
// org subscription, matching the rest of the billing UI.
|
|
const orgSubscription = await getOrganizationSubscription(organizationId)
|
|
stripeCustomerId = orgSubscription?.stripeCustomerId ?? null
|
|
} else {
|
|
const rows = await db
|
|
.select({ customer: user.stripeCustomerId })
|
|
.from(user)
|
|
.where(eq(user.id, session.user.id))
|
|
.limit(1)
|
|
|
|
stripeCustomerId = rows.length > 0 ? rows[0].customer || null : null
|
|
}
|
|
|
|
if (!stripeCustomerId) {
|
|
logger.error('Stripe customer not found for portal session', {
|
|
context,
|
|
organizationId,
|
|
userId: session.user.id,
|
|
})
|
|
return NextResponse.json({ error: 'Stripe customer not found' }, { status: 404 })
|
|
}
|
|
|
|
const portal = await stripe.billingPortal.sessions.create({
|
|
customer: stripeCustomerId,
|
|
return_url: returnUrl,
|
|
})
|
|
|
|
return NextResponse.json({ url: portal.url })
|
|
} catch (error) {
|
|
logger.error('Failed to create billing portal session', { error })
|
|
return NextResponse.json({ error: 'Failed to create billing portal session' }, { status: 500 })
|
|
}
|
|
})
|