f381dc3d9d
* feat(gatekeeper): create workspaces with trial plan by default * feat(gatekeeper): default to starter trial plan * fix(eventBus): fix tests
116 lines
4.3 KiB
TypeScript
116 lines
4.3 KiB
TypeScript
import cron from 'node-cron'
|
|
import { logger, moduleLogger } from '@/logging/logging'
|
|
import { SpeckleModule } from '@/modules/shared/helpers/typeHelper'
|
|
import { getFeatureFlags } from '@/modules/shared/helpers/envHelper'
|
|
import { validateModuleLicense } from '@/modules/gatekeeper/services/validateLicense'
|
|
import { getBillingRouter } from '@/modules/gatekeeper/rest/billing'
|
|
import { registerOrUpdateScopeFactory } from '@/modules/shared/repositories/scopes'
|
|
import { db } from '@/db/knex'
|
|
import { gatekeeperScopes } from '@/modules/gatekeeper/scopes'
|
|
import { initializeEventListenersFactory } from '@/modules/gatekeeper/events/eventListener'
|
|
import { getStripeClient, getWorkspacePlanProductId } from '@/modules/gatekeeper/stripe'
|
|
import { scheduleExecutionFactory } from '@/modules/core/services/taskScheduler'
|
|
import {
|
|
acquireTaskLockFactory,
|
|
releaseTaskLockFactory
|
|
} from '@/modules/core/repositories/scheduledTasks'
|
|
import {
|
|
downscaleWorkspaceSubscriptionFactory,
|
|
manageSubscriptionDownscaleFactory
|
|
} from '@/modules/gatekeeper/services/subscriptions'
|
|
import {
|
|
getWorkspacePlanFactory,
|
|
getWorkspaceSubscriptionsPastBillingCycleEndFactory,
|
|
upsertWorkspaceSubscriptionFactory
|
|
} from '@/modules/gatekeeper/repositories/billing'
|
|
import { countWorkspaceRoleWithOptionalProjectRoleFactory } from '@/modules/workspaces/repositories/workspaces'
|
|
import { reconcileWorkspaceSubscriptionFactory } from '@/modules/gatekeeper/clients/stripe'
|
|
|
|
const { FF_GATEKEEPER_MODULE_ENABLED, FF_BILLING_INTEGRATION_ENABLED } =
|
|
getFeatureFlags()
|
|
|
|
const initScopes = async () => {
|
|
const registerFunc = registerOrUpdateScopeFactory({ db })
|
|
await Promise.all(gatekeeperScopes.map((scope) => registerFunc({ scope })))
|
|
}
|
|
|
|
const scheduleWorkspaceSubscriptionDownscale = () => {
|
|
const scheduleExecution = scheduleExecutionFactory({
|
|
acquireTaskLock: acquireTaskLockFactory({ db }),
|
|
releaseTaskLock: releaseTaskLockFactory({ db })
|
|
})
|
|
|
|
const stripe = getStripeClient()
|
|
|
|
const manageSubscriptionDownscale = manageSubscriptionDownscaleFactory({
|
|
logger,
|
|
downscaleWorkspaceSubscription: downscaleWorkspaceSubscriptionFactory({
|
|
countWorkspaceRole: countWorkspaceRoleWithOptionalProjectRoleFactory({ db }),
|
|
getWorkspacePlan: getWorkspacePlanFactory({ db }),
|
|
reconcileSubscriptionData: reconcileWorkspaceSubscriptionFactory({ stripe }),
|
|
getWorkspacePlanProductId
|
|
}),
|
|
getWorkspaceSubscriptions: getWorkspaceSubscriptionsPastBillingCycleEndFactory({
|
|
db
|
|
}),
|
|
updateWorkspaceSubscription: upsertWorkspaceSubscriptionFactory({ db })
|
|
})
|
|
|
|
const cronExpression = '*/5 * * * *'
|
|
return scheduleExecution(
|
|
cronExpression,
|
|
'WorkspaceSubscriptionDownscale',
|
|
async () => {
|
|
await manageSubscriptionDownscale()
|
|
}
|
|
)
|
|
}
|
|
|
|
let scheduledTask: cron.ScheduledTask | undefined = undefined
|
|
let quitListeners: (() => void) | undefined = undefined
|
|
|
|
const gatekeeperModule: SpeckleModule = {
|
|
async init(app, isInitial) {
|
|
await initScopes()
|
|
if (!FF_GATEKEEPER_MODULE_ENABLED) return
|
|
|
|
const isLicenseValid = await validateModuleLicense({
|
|
requiredModules: ['gatekeeper']
|
|
})
|
|
if (!isLicenseValid)
|
|
throw new Error(
|
|
'The gatekeeper module needs a valid license to run, contact Speckle to get one.'
|
|
)
|
|
|
|
moduleLogger.info('🗝️ Init gatekeeper module')
|
|
|
|
if (isInitial) {
|
|
// TODO: need to subscribe to the workspaceCreated event and store the workspacePlan as a trial if billing enabled, else store as unlimited
|
|
if (FF_BILLING_INTEGRATION_ENABLED) {
|
|
app.use(getBillingRouter())
|
|
|
|
scheduledTask = scheduleWorkspaceSubscriptionDownscale()
|
|
|
|
quitListeners = initializeEventListenersFactory({
|
|
db,
|
|
stripe: getStripeClient()
|
|
})()
|
|
|
|
const isLicenseValid = await validateModuleLicense({
|
|
requiredModules: ['billing']
|
|
})
|
|
if (!isLicenseValid)
|
|
throw new Error(
|
|
'The the billing module needs a valid license to run, contact Speckle to get one.'
|
|
)
|
|
// TODO: create a cron job, that removes unused seats from the subscription at the beginning of each workspace plan's billing cycle
|
|
}
|
|
}
|
|
},
|
|
async shutdown() {
|
|
if (quitListeners) quitListeners()
|
|
if (scheduledTask) scheduledTask.stop()
|
|
}
|
|
}
|
|
export = gatekeeperModule
|