* stripe seats sync (cloud)

This commit is contained in:
Philipinho 2025-03-17 10:57:44 +00:00
parent 92e1bbd09a
commit 46a30a38dc
6 changed files with 25 additions and 7 deletions

View File

@ -48,7 +48,7 @@
"@nestjs/platform-socket.io": "^11.0.10", "@nestjs/platform-socket.io": "^11.0.10",
"@nestjs/terminus": "^11.0.0", "@nestjs/terminus": "^11.0.0",
"@nestjs/websockets": "^11.0.10", "@nestjs/websockets": "^11.0.10",
"@node-saml/passport-saml": "^5.0.0", "@node-saml/passport-saml": "^5.0.1",
"@react-email/components": "0.0.28", "@react-email/components": "0.0.28",
"@react-email/render": "1.0.2", "@react-email/render": "1.0.2",
"@socket.io/redis-adapter": "^8.3.0", "@socket.io/redis-adapter": "^8.3.0",

View File

@ -24,6 +24,10 @@ import { nanoIdGen } from '../../../common/helpers';
import { PaginationOptions } from '@docmost/db/pagination/pagination-options'; import { PaginationOptions } from '@docmost/db/pagination/pagination-options';
import { executeWithPagination } from '@docmost/db/pagination/pagination'; import { executeWithPagination } from '@docmost/db/pagination/pagination';
import { DomainService } from 'src/integrations/environment/domain.service'; import { DomainService } from 'src/integrations/environment/domain.service';
import { InjectQueue } from '@nestjs/bullmq';
import { QueueJob, QueueName } from '../../../integrations/queue/constants';
import { Queue } from 'bullmq';
import { EnvironmentService } from '../../../integrations/environment/environment.service';
@Injectable() @Injectable()
export class WorkspaceInvitationService { export class WorkspaceInvitationService {
@ -35,6 +39,8 @@ export class WorkspaceInvitationService {
private domainService: DomainService, private domainService: DomainService,
private tokenService: TokenService, private tokenService: TokenService,
@InjectKysely() private readonly db: KyselyDB, @InjectKysely() private readonly db: KyselyDB,
@InjectQueue(QueueName.BILLING_QUEUE) private billingQueue: Queue,
private readonly environmentService: EnvironmentService,
) {} ) {}
async getInvitations(workspaceId: string, pagination: PaginationOptions) { async getInvitations(workspaceId: string, pagination: PaginationOptions) {
@ -266,6 +272,10 @@ export class WorkspaceInvitationService {
}); });
} }
if (this.environmentService.isCloud()) {
await this.billingQueue.add(QueueJob.STRIPE_SEATS_SYNC, { workspaceId });
}
return this.tokenService.generateAccessToken(newUser); return this.tokenService.generateAccessToken(newUser);
} }

@ -1 +1 @@
Subproject commit 21c5f1295a05366c388e9de1f75ed8c68b689c9c Subproject commit 337854ce96e8c81876794cb964676af7ec2b558d

View File

@ -2,6 +2,7 @@ export enum QueueName {
EMAIL_QUEUE = '{email-queue}', EMAIL_QUEUE = '{email-queue}',
ATTACHMENT_QUEUE = '{attachment-queue}', ATTACHMENT_QUEUE = '{attachment-queue}',
GENERAL_QUEUE = '{general-queue}', GENERAL_QUEUE = '{general-queue}',
BILLING_QUEUE = '{billing-queue}',
} }
export enum QueueJob { export enum QueueJob {
@ -11,6 +12,6 @@ export enum QueueJob {
PAGE_CONTENT_UPDATE = 'page-content-update', PAGE_CONTENT_UPDATE = 'page-content-update',
PAGE_BACKLINKS = 'page-backlinks', PAGE_BACKLINKS = 'page-backlinks',
STRIPE_SEATS_SYNC = 'sync-stripe-seats',
} }

View File

@ -6,3 +6,7 @@ export interface IPageBacklinkJob {
workspaceId: string; workspaceId: string;
mentions: MentionNode[]; mentions: MentionNode[];
} }
export interface IStripeSeatsSyncJob {
workspaceId: string;
}

View File

@ -24,13 +24,13 @@ import { BacklinksProcessor } from './processors/backlinks.processor';
attempts: 3, attempts: 3,
backoff: { backoff: {
type: 'exponential', type: 'exponential',
delay: 20000, delay: 20 * 1000,
}, },
removeOnComplete: { removeOnComplete: {
count: 500, count: 200,
}, },
removeOnFail: { removeOnFail: {
count: 500, count: 100,
}, },
}, },
}; };
@ -46,6 +46,9 @@ import { BacklinksProcessor } from './processors/backlinks.processor';
BullModule.registerQueue({ BullModule.registerQueue({
name: QueueName.GENERAL_QUEUE, name: QueueName.GENERAL_QUEUE,
}), }),
BullModule.registerQueue({
name: QueueName.BILLING_QUEUE,
}),
], ],
exports: [BullModule], exports: [BullModule],
providers: [BacklinksProcessor], providers: [BacklinksProcessor],