chore(services): rename services/provisioning -> services/platform-api

O.0 prep from OPERATOR-PLAN.md. Mechanical refactor before adding partner
management and operator-specific endpoints. The service now owns more than
just provisioning orchestration (it'll soon own partners, tenant lifecycle
actions, multi-audience JWT validation), so the name 'platform-api' reflects
its scope better.

What changed:
- Directory: services/provisioning/ -> services/platform-api/
- Package: @dezky/provisioning -> @dezky/platform-api
- Docker: container_name dezky-provisioning -> dezky-platform-api;
  compose service key 'provisioning' -> 'platform-api'; volume
  provisioning_node_modules -> platform_api_node_modules
- Portal: PROVISIONING_INTERNAL_URL env var -> PLATFORM_API_INTERNAL_URL,
  default URL http://provisioning:3001 -> http://platform-api:3001 in all
  three proxy routes (me.get.ts, tenants/index.post.ts, tenants/[slug]/
  reconcile.post.ts), plus NUXT_API_BASE updated
- Health endpoint service identifier and main.ts log lines updated to
  'dezky-platform-api'
- Docs swept: README, CLAUDE.md, SERVICES.md, AUTHENTIK-SETUP.md,
  NEXT-STEPS.md, TROUBLESHOOTING.md, OPERATOR-PLAN.md, traefik/dynamic.yml

What deliberately stays:
- Internal module names ProvisioningService / ProvisioningModule (those
  describe an orchestration sub-concern, not the service's purpose)
- Tenant.provisioningStatus / provisioningErrors field names (state
  per integration, not service name)
- File services/platform-api/src/tenants/provisioning.service.ts
- 'Hetzner provisioning' references in production-prep docs (infrastructure
  provisioning, unrelated)

Verified end-to-end after rename: /api/me returns 200 with profile + 2
tenants + subscription, /api/tenants/dezky/reconcile returns 200 with
Authentik integration still ok.

OPERATOR-PLAN.md O.0 checkboxes ticked.
This commit is contained in:
Ronni Baslund
2026-05-24 00:35:01 +02:00
parent fb3d7aa716
commit 22b2583f0b
49 changed files with 66 additions and 60 deletions
@@ -0,0 +1,18 @@
import { Module } from '@nestjs/common'
import { MongooseModule } from '@nestjs/mongoose'
import { Subscription, SubscriptionSchema } from '../schemas/subscription.schema.js'
import { Tenant, TenantSchema } from '../schemas/tenant.schema.js'
import { User, UserSchema } from '../schemas/user.schema.js'
import { SeedService } from './seed.service.js'
@Module({
imports: [
MongooseModule.forFeature([
{ name: Tenant.name, schema: TenantSchema },
{ name: User.name, schema: UserSchema },
{ name: Subscription.name, schema: SubscriptionSchema },
]),
],
providers: [SeedService],
})
export class SeedModule {}
@@ -0,0 +1,64 @@
import { Injectable, Logger, type OnApplicationBootstrap } from '@nestjs/common'
import { ConfigService } from '@nestjs/config'
import { InjectModel } from '@nestjs/mongoose'
import { Model } from 'mongoose'
import { Subscription, SubscriptionDocument } from '../schemas/subscription.schema.js'
import { Tenant, TenantDocument } from '../schemas/tenant.schema.js'
import { User, UserDocument } from '../schemas/user.schema.js'
// Idempotent seed: a default 'dezky' tenant + the akadmin user, so the portal can
// query non-empty results immediately. Real user records are bootstrapped via
// UsersController.me() on each user's first authenticated request.
@Injectable()
export class SeedService implements OnApplicationBootstrap {
private readonly logger = new Logger(SeedService.name)
constructor(
@InjectModel(Tenant.name) private readonly tenantModel: Model<TenantDocument>,
@InjectModel(User.name) private readonly userModel: Model<UserDocument>,
@InjectModel(Subscription.name) private readonly subModel: Model<SubscriptionDocument>,
private readonly config: ConfigService,
) {}
async onApplicationBootstrap(): Promise<void> {
if (this.config.get('SEED_ENABLED') === 'false') {
this.logger.log('SEED_ENABLED=false — skipping seed')
return
}
const tenant = await this.tenantModel
.findOneAndUpdate(
{ slug: 'dezky' },
{
$setOnInsert: {
slug: 'dezky',
name: 'Dezky',
status: 'active',
plan: 'enterprise',
domains: ['dezky.local'],
billingInfo: { companyName: 'Dezky', country: 'DK' },
},
},
{ new: true, upsert: true },
)
.exec()
this.logger.log(`Tenant ready: ${tenant.slug} (${tenant._id})`)
await this.subModel
.findOneAndUpdate(
{ tenantId: tenant._id },
{
$setOnInsert: {
tenantId: tenant._id,
plan: 'enterprise',
status: 'active',
},
},
{ upsert: true },
)
.exec()
this.logger.log(`Subscription ready for ${tenant.slug}`)
// No user seeded here — UsersController.me() upserts akadmin on first call.
}
}