Implement updateSubscription feature and refactor billing services

This commit introduces the updateSubscription method to the BillingStrategyProviderService, ensuring that subscriptions can be updated within the billing core. Additionally, a refactor has been applied to the BillingGatewayFactoryService and stripe-billing-strategy.service to improve error handling and the robustness of subscription updates. Logging in the webhook route has been adjusted for clarity and the data model has been enhanced.
This commit is contained in:
giancarlo
2024-04-04 20:15:12 +08:00
parent 4a122ee5df
commit 220a23e185
26 changed files with 1499 additions and 993 deletions

View File

@@ -9,6 +9,7 @@ import { Database } from '@kit/supabase/database';
import { RemoveMemberSchema } from '../../schema/remove-member.schema';
import { TransferOwnershipConfirmationSchema } from '../../schema/transfer-ownership-confirmation.schema';
import { UpdateMemberRoleSchema } from '../../schema/update-member-role.schema';
import { AccountPerSeatBillingService } from './account-per-seat-billing.service';
export class AccountMembersService {
private readonly namespace = 'account-members';
@@ -16,6 +17,13 @@ export class AccountMembersService {
constructor(private readonly client: SupabaseClient<Database>) {}
async removeMemberFromAccount(params: z.infer<typeof RemoveMemberSchema>) {
const ctx = {
namespace: this.namespace,
...params,
};
Logger.info(ctx, `Removing member from account...`);
const { data, error } = await this.client
.from('accounts_memberships')
.delete()
@@ -25,13 +33,37 @@ export class AccountMembersService {
});
if (error) {
Logger.error(
{
...ctx,
error,
},
`Failed to remove member from account`,
);
throw error;
}
Logger.info(
ctx,
`Successfully removed member from account. Verifying seat count...`,
);
const service = new AccountPerSeatBillingService(this.client);
await service.decreaseSeats(params.accountId);
return data;
}
async updateMemberRole(params: z.infer<typeof UpdateMemberRoleSchema>) {
const ctx = {
namespace: this.namespace,
...params,
};
Logger.info(ctx, `Updating member role...`);
const { data, error } = await this.client
.from('accounts_memberships')
.update({
@@ -43,9 +75,19 @@ export class AccountMembersService {
});
if (error) {
Logger.error(
{
...ctx,
error,
},
`Failed to update member role`,
);
throw error;
}
Logger.info(ctx, `Successfully updated member role`);
return data;
}
@@ -57,7 +99,7 @@ export class AccountMembersService {
...params,
};
Logger.info(ctx, `Transferring ownership of account`);
Logger.info(ctx, `Transferring ownership of account...`);
const { data, error } = await this.client.rpc(
'transfer_team_account_ownership',