Files
sim/scripts/check-integration-catalog.ts
T
Theodore Li 35fd4ef42f improvement(self-host): simplify capability setup configuration (#6230)
* feat(self-host): add capability-aware setup

* fix(self-host): preserve capability compatibility

* fix(copilot): honor preview availability server-side

* improvement(self-host): centralize capability resolution

* fix(self-host): preserve integration availability paths

* fix(testing): align capability-aware config mocks

* improvement(self-host): simplify capability setup configuration

* fix(setup): preserve unowned storage overrides

* fix(self-host): reconcile storage and allowlists

* fix(integrations): preserve connect deep links
2026-08-04 15:47:36 -04:00

139 lines
4.5 KiB
TypeScript

#!/usr/bin/env bun
import { stripVersionSuffix } from '@sim/utils/string'
/**
* Verifies the registry-free integration catalog matches the executable block
* registry fields that deployment availability depends on.
*/
import { BLOCK_REGISTRY } from '../apps/sim/blocks/registry-maps'
import { AuthMode, type BlockConfig } from '../apps/sim/blocks/types'
import integrationsJson from '../apps/sim/lib/integrations/integrations.json'
type CatalogAuthType = 'oauth' | 'api-key' | 'none'
interface CatalogEntry {
type: string
slug: string
name: string
category: string
integrationType: string
authType: CatalogAuthType
oauthServiceId?: string
}
function resolveAuthType(block: BlockConfig): CatalogAuthType {
if (block.authMode === AuthMode.OAuth) return 'oauth'
if (block.authMode === AuthMode.ApiKey || block.authMode === AuthMode.BotToken) return 'api-key'
if (block.subBlocks.some((subBlock) => subBlock.type === 'oauth-input')) return 'oauth'
if (
block.subBlocks.some((subBlock) => ['apiKey', 'api_key', 'accessToken'].includes(subBlock.id))
) {
return 'api-key'
}
return 'none'
}
function resolveOAuthServiceId(block: BlockConfig): string | undefined {
const serviceIds = new Set(
block.subBlocks
.filter((subBlock) => subBlock.type === 'oauth-input')
.map((subBlock) => subBlock.serviceId)
.filter((serviceId): serviceId is string => Boolean(serviceId))
)
if (serviceIds.size > 1) {
throw new Error(
`Integration block "${block.type}" declares more than one OAuth service ID: ${[...serviceIds].join(', ')}`
)
}
return serviceIds.values().next().value
}
function expectedEntry(block: BlockConfig): CatalogEntry {
if (!block.integrationType) {
throw new Error(`Integration block "${block.type}" is missing integrationType`)
}
const authType = resolveAuthType(block)
const oauthServiceId = authType === 'oauth' ? resolveOAuthServiceId(block) : undefined
if (authType === 'oauth' && !oauthServiceId) {
throw new Error(`OAuth integration block "${block.type}" is missing an OAuth service ID`)
}
return {
type: block.type,
slug: block.name
.toLowerCase()
.replace(/[^a-z0-9]+/g, '-')
.replace(/^-|-$/g, ''),
name: block.name,
category: block.category,
integrationType: block.integrationType,
authType,
...(oauthServiceId ? { oauthServiceId } : {}),
}
}
function verifyIntegrationCatalog(): void {
const expected = Object.values(BLOCK_REGISTRY).filter(
(block) => block.category === 'tools' && !block.hideFromToolbar && !block.preview
)
const expectedBaseTypes = new Map<string, string>()
for (const block of expected) {
const baseType = stripVersionSuffix(block.type)
const existing = expectedBaseTypes.get(baseType)
if (existing) {
throw new Error(
`Visible integration blocks "${existing}" and "${block.type}" share base type "${baseType}"`
)
}
expectedBaseTypes.set(baseType, block.type)
}
const actual = integrationsJson.integrations as readonly CatalogEntry[]
const expectedByType = new Map(expected.map((block) => [block.type, expectedEntry(block)]))
const actualByType = new Map<string, CatalogEntry>()
const actualSlugs = new Set<string>()
for (const entry of actual) {
if (actualByType.has(entry.type)) {
throw new Error(`Generated integration catalog contains duplicate type "${entry.type}"`)
}
if (actualSlugs.has(entry.slug)) {
throw new Error(`Generated integration catalog contains duplicate slug "${entry.slug}"`)
}
actualByType.set(entry.type, entry)
actualSlugs.add(entry.slug)
}
const issues: string[] = []
for (const [type, entry] of expectedByType) {
const generated = actualByType.get(type)
if (!generated) {
issues.push(`missing generated entry for "${type}"`)
continue
}
for (const field of [
'name',
'slug',
'category',
'integrationType',
'authType',
'oauthServiceId',
] as const) {
if (generated[field] !== entry[field]) {
issues.push(`"${type}" has stale ${field}`)
}
}
}
for (const type of actualByType.keys()) {
if (!expectedByType.has(type)) issues.push(`unexpected generated entry for "${type}"`)
}
if (issues.length > 0) {
throw new Error(
`Generated integration catalog is stale:\n- ${issues.join('\n- ')}\nRun \`bun run scripts/generate-docs.ts\` and commit the generated catalog.`
)
}
process.stdout.write(
`Integration deployment metadata is in sync (${actual.length} integrations).\n`
)
}
verifyIntegrationCatalog()