* Filter out metered line items from billing schema This update refines the process of creating a billing schema by filtering out metered line items. The change is necessary as metered line items can be shared across different plans, potentially causing conflicts or duplicates in the schema. * Update packages to newer versions This update upgrades several packages across multiple project files to their latest version. These packages include "supabase-js", "react-query", "react-hook-form", and "pnpm". The commit ensures the project is up-to-date with recent package versions, potentially benefiting from bug fixes, new features, and performance improvements. * Add subscription retrieval in billing services Added a function to retrieve subscription info in both Stripe and LemonSqueezy billing services. To accomplish this, new methods were added to related services and types. This allows querying specific subscription data based on its id, and throws an error if it fails. Furthermore, PayloadBuilder classes were created to systematically build the subscription payload. * Remove account ID retrieval from Lemon Squeezy billing service The code that was querying the database to fetch the accountId has been removed from lemon-squeezy-billing-strategy.service.ts. It was unnecessary as the Lemon Squeezy API does not provide account ID and therefore it is always left empty. Also, adjustments have been made in billing-strategy-provider.service.ts to reflect that the target account ID can be optional. * Extract 'next' parameter from callback URL The update allows for the extraction of the 'next' parameter from the callback URL. If such a parameter is available, it is subsequently added to the search parameters. The enhancement improves URL parameter handling in the authentication callback service. * Refactor URL redirection in auth-callback service The update simplifies the redirection logic in the authentication callback service. This is achieved by setting the url pathname directly to the redirect path, instead of first setting it to the callback parameter. Moreover, the code handling the 'next' path has also been streamlined, setting the url pathname to the next path when available.
101 lines
3.0 KiB
TypeScript
101 lines
3.0 KiB
TypeScript
import Stripe from 'stripe';
|
|
|
|
import { BillingConfig, getLineItemTypeById } from '@kit/billing';
|
|
import { UpsertSubscriptionParams } from '@kit/billing/types';
|
|
|
|
/**
|
|
* @name createStripeSubscriptionPayloadBuilderService
|
|
* @description Create a new instance of the `StripeSubscriptionPayloadBuilderService` class
|
|
*/
|
|
export function createStripeSubscriptionPayloadBuilderService() {
|
|
return new StripeSubscriptionPayloadBuilderService();
|
|
}
|
|
|
|
/**
|
|
* @name StripeSubscriptionPayloadBuilderService
|
|
* @description This class is used to build the subscription payload for Stripe
|
|
*/
|
|
class StripeSubscriptionPayloadBuilderService {
|
|
private config?: BillingConfig;
|
|
|
|
/**
|
|
* @name withBillingConfig
|
|
* @description Set the billing config for the subscription payload
|
|
* @param config
|
|
*/
|
|
withBillingConfig(config: BillingConfig) {
|
|
this.config = config;
|
|
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* @name build
|
|
* @description Build the subscription payload for Stripe
|
|
* @param params
|
|
*/
|
|
build<
|
|
LineItem extends {
|
|
id: string;
|
|
quantity?: number;
|
|
price?: Stripe.Price;
|
|
},
|
|
>(params: {
|
|
id: string;
|
|
accountId: string;
|
|
customerId: string;
|
|
lineItems: LineItem[];
|
|
status: Stripe.Subscription.Status;
|
|
currency: string;
|
|
cancelAtPeriodEnd: boolean;
|
|
periodStartsAt: number;
|
|
periodEndsAt: number;
|
|
trialStartsAt: number | null;
|
|
trialEndsAt: number | null;
|
|
}): UpsertSubscriptionParams {
|
|
const active = params.status === 'active' || params.status === 'trialing';
|
|
|
|
const lineItems = params.lineItems.map((item) => {
|
|
const quantity = item.quantity ?? 1;
|
|
const variantId = item.price?.id as string;
|
|
|
|
return {
|
|
id: item.id,
|
|
quantity,
|
|
subscription_id: params.id,
|
|
subscription_item_id: item.id,
|
|
product_id: item.price?.product as string,
|
|
variant_id: variantId,
|
|
price_amount: item.price?.unit_amount,
|
|
interval: item.price?.recurring?.interval as string,
|
|
interval_count: item.price?.recurring?.interval_count as number,
|
|
type: this.config
|
|
? getLineItemTypeById(this.config, variantId)
|
|
: undefined,
|
|
};
|
|
});
|
|
|
|
// otherwise we are updating a subscription
|
|
// and we only need to return the update payload
|
|
return {
|
|
target_subscription_id: params.id,
|
|
target_account_id: params.accountId,
|
|
target_customer_id: params.customerId,
|
|
billing_provider: 'stripe',
|
|
status: params.status,
|
|
line_items: lineItems,
|
|
active,
|
|
currency: params.currency,
|
|
cancel_at_period_end: params.cancelAtPeriodEnd ?? false,
|
|
period_starts_at: getISOString(params.periodStartsAt) as string,
|
|
period_ends_at: getISOString(params.periodEndsAt) as string,
|
|
trial_starts_at: getISOString(params.trialStartsAt),
|
|
trial_ends_at: getISOString(params.trialEndsAt),
|
|
};
|
|
}
|
|
}
|
|
|
|
function getISOString(date: number | null) {
|
|
return date ? new Date(date * 1000).toISOString() : undefined;
|
|
}
|