BREAKING CHANGE: Stripe environment variables simplified. Check out the new configs to adapt your existing system. Closes #906 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ### Summary by CodeRabbit **New Features:** - Introduced a usage-based billing system, providing more flexibility and options for users. - Integrated with Stripe for a smoother and more secure payment process. - Enhanced the user interface with improvements to the billing, workspace, and pricing pages for a more intuitive experience. **Improvements:** - Simplified the billing logic, removing additional chats and yearly billing for a more streamlined user experience. - Updated email notifications to keep users informed about their usage and limits. - Improved pricing and currency formatting for better clarity and understanding. **Testing:** - Updated tests and specifications to ensure the reliability of new features and improvements. **Note:** These changes aim to provide a more flexible and user-friendly billing system, with clearer pricing and improved notifications. Users should find the new system more intuitive and easier to navigate. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
103 lines
2.5 KiB
TypeScript
103 lines
2.5 KiB
TypeScript
import {
|
|
CollaborationType,
|
|
DashboardFolder,
|
|
Prisma,
|
|
PrismaClient,
|
|
Workspace,
|
|
} from '@typebot.io/prisma'
|
|
import Stripe from 'stripe'
|
|
import { proWorkspaceId } from '@typebot.io/lib/playwright/databaseSetup'
|
|
import { env } from '@typebot.io/env'
|
|
|
|
const prisma = new PrismaClient()
|
|
|
|
const stripe = new Stripe(env.STRIPE_SECRET_KEY ?? '', {
|
|
apiVersion: '2022-11-15',
|
|
})
|
|
|
|
export const addSubscriptionToWorkspace = async (
|
|
workspaceId: string,
|
|
items: Stripe.SubscriptionCreateParams.Item[],
|
|
metadata: Pick<Workspace, 'plan'>
|
|
) => {
|
|
const { id: stripeId } = await stripe.customers.create({
|
|
email: 'test-user@gmail.com',
|
|
name: 'Test User',
|
|
})
|
|
const { id: paymentId } = await stripe.paymentMethods.create({
|
|
card: {
|
|
number: '4242424242424242',
|
|
exp_month: 12,
|
|
exp_year: 2024,
|
|
cvc: '123',
|
|
},
|
|
type: 'card',
|
|
})
|
|
await stripe.paymentMethods.attach(paymentId, { customer: stripeId })
|
|
await stripe.subscriptions.create({
|
|
customer: stripeId,
|
|
items,
|
|
default_payment_method: paymentId,
|
|
currency: 'usd',
|
|
})
|
|
await stripe.customers.update(stripeId, {
|
|
invoice_settings: { default_payment_method: paymentId },
|
|
})
|
|
await prisma.workspace.update({
|
|
where: { id: workspaceId },
|
|
data: {
|
|
stripeId,
|
|
...metadata,
|
|
},
|
|
})
|
|
return stripeId
|
|
}
|
|
|
|
export const cancelSubscription = async (stripeId: string) => {
|
|
const currentSubscriptionId = (
|
|
await stripe.subscriptions.list({
|
|
customer: stripeId,
|
|
limit: 1,
|
|
status: 'active',
|
|
})
|
|
).data.shift()?.id
|
|
if (currentSubscriptionId)
|
|
await stripe.subscriptions.update(currentSubscriptionId, {
|
|
cancel_at_period_end: true,
|
|
})
|
|
}
|
|
|
|
export const createCollaboration = (
|
|
userId: string,
|
|
typebotId: string,
|
|
type: CollaborationType
|
|
) =>
|
|
prisma.collaboratorsOnTypebots.create({ data: { userId, typebotId, type } })
|
|
|
|
export const getSignedInUser = (email: string) =>
|
|
prisma.user.findFirst({ where: { email } })
|
|
|
|
export const createFolders = (partialFolders: Partial<DashboardFolder>[]) =>
|
|
prisma.dashboardFolder.createMany({
|
|
data: partialFolders.map((folder) => ({
|
|
workspaceId: proWorkspaceId,
|
|
name: 'Folder #1',
|
|
...folder,
|
|
})),
|
|
})
|
|
|
|
export const createFolder = (workspaceId: string, name: string) =>
|
|
prisma.dashboardFolder.create({
|
|
data: {
|
|
workspaceId,
|
|
name,
|
|
},
|
|
})
|
|
|
|
export const createClaimableCustomPlan = async (
|
|
data: Prisma.ClaimableCustomPlanUncheckedCreateInput
|
|
) =>
|
|
prisma.claimableCustomPlan.create({
|
|
data,
|
|
})
|