-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add sync customer command and drop subscription customer constraint #9131
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import { InjectRepository } from '@nestjs/typeorm'; | ||
|
||
import chalk from 'chalk'; | ||
import { Command } from 'nest-commander'; | ||
import { Repository } from 'typeorm'; | ||
|
||
import { | ||
ActiveWorkspacesCommandOptions, | ||
ActiveWorkspacesCommandRunner, | ||
} from 'src/database/commands/active-workspaces.command'; | ||
import { BillingCustomer } from 'src/engine/core-modules/billing/entities/billing-customer.entity'; | ||
import { StripeService } from 'src/engine/core-modules/billing/stripe/stripe.service'; | ||
import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; | ||
|
||
interface SyncCustomerDataCommandOptions | ||
extends ActiveWorkspacesCommandOptions {} | ||
|
||
@Command({ | ||
name: 'billing:sync-customer-data', | ||
description: 'Sync customer data from Stripe for all active workspaces', | ||
}) | ||
export class BillingSyncCustomerDataCommand extends ActiveWorkspacesCommandRunner { | ||
constructor( | ||
@InjectRepository(Workspace, 'core') | ||
protected readonly workspaceRepository: Repository<Workspace>, | ||
private readonly stripeService: StripeService, | ||
@InjectRepository(BillingCustomer, 'core') | ||
protected readonly billingCustomerRepository: Repository<BillingCustomer>, | ||
) { | ||
super(workspaceRepository); | ||
} | ||
|
||
async executeActiveWorkspacesCommand( | ||
_passedParam: string[], | ||
options: SyncCustomerDataCommandOptions, | ||
workspaceIds: string[], | ||
): Promise<void> { | ||
this.logger.log('Running command to sync customer data'); | ||
|
||
for (const workspaceId of workspaceIds) { | ||
this.logger.log(`Running command for workspace ${workspaceId}`); | ||
|
||
try { | ||
await this.syncCustomerDataForWorkspace(workspaceId, options); | ||
} catch (error) { | ||
this.logger.log( | ||
chalk.red( | ||
`Running command on workspace ${workspaceId} failed with error: ${error}, ${error.stack}`, | ||
), | ||
); | ||
continue; | ||
} finally { | ||
this.logger.log( | ||
chalk.green(`Finished running command for workspace ${workspaceId}.`), | ||
); | ||
} | ||
} | ||
|
||
this.logger.log(chalk.green(`Command completed!`)); | ||
} | ||
|
||
private async syncCustomerDataForWorkspace( | ||
workspaceId: string, | ||
options: SyncCustomerDataCommandOptions, | ||
): Promise<void> { | ||
const billingCustomer = await this.billingCustomerRepository.findOne({ | ||
where: { | ||
workspaceId, | ||
}, | ||
}); | ||
|
||
if (!options.dryRun && !billingCustomer) { | ||
const stripeCustomerId = | ||
await this.stripeService.getStripeCustomerIdFromWorkspaceId( | ||
workspaceId, | ||
); | ||
|
||
if (stripeCustomerId) { | ||
await this.billingCustomerRepository.upsert( | ||
{ | ||
stripeCustomerId, | ||
workspaceId, | ||
}, | ||
{ | ||
conflictPaths: ['workspaceId'], | ||
}, | ||
); | ||
} | ||
} | ||
|
||
if (options.verbose) { | ||
this.logger.log( | ||
chalk.yellow(`Added ${workspaceId} to billingCustomer table`), | ||
); | ||
} | ||
Comment on lines
+91
to
+95
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: Log message indicates addition but this runs even for failed operations. Move inside the if block after successful upsert. |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,7 @@ export class BillingSubscription { | |
{ | ||
nullable: false, | ||
onDelete: 'CASCADE', | ||
createForeignKeyConstraints: false, | ||
}, | ||
Comment on lines
82
to
86
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: disabling foreign key constraints removes database-level data integrity checks - ensure application code properly validates customer existence before subscription operations |
||
) | ||
@JoinColumn({ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Error is logged but not tracked/reported. Consider adding error metrics or alerting for failed syncs.