This commit is contained in:
Emily
2024-06-04 15:36:57 +02:00
parent 0427827858
commit c151d558f4
6 changed files with 101 additions and 25 deletions

View File

@@ -29,6 +29,7 @@ export default defineEventHandler(async event => {
const checkout = await StripeService.cretePayment(
price,
'https://dashboard.litlyx.com/payment_ok',
project_id,
project.customer_id
);
@@ -37,9 +38,6 @@ export default defineEventHandler(async event => {
return setResponseStatus(event, 400, 'Cannot create payment');
}
const customer = checkout.customer;
await ProjectModel.updateOne({ _id: project_id }, { customer_id: customer });
return checkout.url;
});

View File

@@ -0,0 +1,37 @@
import { getUserProjectFromId } from "~/server/LIVE_DEMO_DATA";
import StripeService from '~/server/services/StripeService';
export type InvoiceData = {
date: number,
cost: number,
id: string,
status: string,
link: string
}
export default defineEventHandler(async event => {
const project_id = getRequestProjectId(event);
if (!project_id) return;
const user = getRequestUser(event);
const project = await getUserProjectFromId(project_id, user);
if (!project) return;
if (!project.customer_id) return [];
const invoices = await StripeService.getInvoices(project.customer_id);
return invoices?.data.map(e => {
const result: InvoiceData = {
link: e.invoice_pdf || '',
id: e.number || '',
date: e.created * 1000,
status: e.status || 'NO_STATUS',
cost: e.amount_due
}
return result;
})
});

View File

@@ -8,30 +8,29 @@ import { ProjectCountModel } from '@schema/ProjectsCounts';
async function onPaymentSuccess(event: Event.InvoicePaidEvent) {
if (event.data.object.status === 'paid') {
const customer = event.data.object.customer;
const project = await ProjectModel.findOne({ customer_id: customer });
const pid = event.data.object.subscription_details?.metadata?.pid;
const project = await ProjectModel.findById(pid);
if (!project) return { error: 'Project not found' }
const subscriptionId = event.data.object.subscription;
if (!subscriptionId) return { error: 'SubscriptionId not found' }
const subscription = await StripeService.getSubscription(subscriptionId as string);
if (!subscription) return { error: 'Subscription not found' }
const price = event.data.object.lines.data[0].plan?.id;
if (!price) return { error: 'Price not found' }
const price = subscription.items.data[0].plan.id;
const premiumTag = getPlanTagFromStripePrice(price);
if (!premiumTag) return { error: 'Premium tag not found' }
const plan = getPlanFromPremiumTag(premiumTag);
if (!plan) return { error: 'Plan not found' }
await ProjectModel.updateOne({ customer_id: customer }, {
await ProjectModel.updateOne({ _id: pid }, {
premium: true,
customer_id: event.data.object.customer,
premium_type: plan.id,
premium_expire_at: subscription.current_period_end
premium_expire_at: event.data.object.lines.data[0].period.end * 1000
});
const limits = PREMIUM_LIMITS[premiumTag];
@@ -43,8 +42,8 @@ async function onPaymentSuccess(event: Event.InvoicePaidEvent) {
ai_messages: 0,
limit: limits.COUNT_LIMIT,
ai_limit: limits.AI_MESSAGE_LIMIT,
billing_start_at: subscription.current_period_start,
billing_expire_at: subscription.current_period_end,
billing_start_at: event.data.object.lines.data[0].period.start * 1000,
billing_expire_at: event.data.object.lines.data[0].period.end * 1000,
});
return { ok: true }
@@ -61,9 +60,13 @@ async function onSubscriptionDeleted(event: Event.CustomerSubscriptionDeletedEve
return { received: true }
}
async function onSubscriptionUpdated(event: Event.CustomerSubscriptionUpdatedEvent) {
return { received: true }
}
export default defineEventHandler(async event => {
const body = await readRawBody(event);
const signature = getHeader(event, 'stripe-signature') || '';
@@ -72,6 +75,7 @@ export default defineEventHandler(async event => {
if (eventData.type === 'invoice.paid') return await onPaymentSuccess(eventData);
if (eventData.type === 'customer.subscription.deleted') return await onSubscriptionDeleted(eventData);
if (eventData.type === 'customer.subscription.created') return await onSubscriptionCreated(eventData);
if (eventData.type === 'customer.subscription.updated') return await onSubscriptionUpdated(eventData);
return { received: true }
});

View File

@@ -22,16 +22,20 @@ class StripeService {
return this.stripe.webhooks.constructEvent(body, sig, this.webhookSecret);
}
async cretePayment(price: string, success_url: string, customer?: string) {
async cretePayment(price: string, success_url: string, pid: string, customer?: string) {
if (!this.stripe) {
console.error('Stripe not initialized')
return;
}
const checkout = await this.stripe.checkout.sessions.create({
payment_method_types: ['card'],
line_items: [
{ price, quantity: 1 }
],
subscription_data: {
metadata: { pid },
},
customer,
success_url,
mode: 'subscription'
@@ -48,6 +52,11 @@ class StripeService {
const subscription = await this.stripe.subscriptions.retrieve(subscriptionId);
return subscription;
}
async getInvoices(customer_id: string) {
const invoices = await this.stripe?.invoices.list({ customer: customer_id });
return invoices;
}
}
const instance = new StripeService();