d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import { getErrorMessage } from '@sim/utils/errors'
|
|
import * as yaml from 'js-yaml'
|
|
import type { FileParseResult } from '@/lib/file-parsers/types'
|
|
|
|
/**
|
|
* Parse YAML files
|
|
*/
|
|
export async function parseYAML(filePath: string): Promise<FileParseResult> {
|
|
const fs = await import('fs/promises')
|
|
const content = await fs.readFile(filePath, 'utf-8')
|
|
|
|
try {
|
|
// Parse YAML to validate and extract structure
|
|
const yamlData = yaml.load(content)
|
|
|
|
// Convert to JSON for consistent processing
|
|
const jsonContent = JSON.stringify(yamlData, null, 2)
|
|
|
|
// Extract metadata about the YAML structure
|
|
const metadata = {
|
|
type: 'yaml',
|
|
isArray: Array.isArray(yamlData),
|
|
keys: Array.isArray(yamlData) ? [] : Object.keys(yamlData || {}),
|
|
itemCount: Array.isArray(yamlData) ? yamlData.length : undefined,
|
|
depth: getYamlDepth(yamlData),
|
|
}
|
|
|
|
return {
|
|
content: jsonContent,
|
|
metadata,
|
|
}
|
|
} catch (error) {
|
|
throw new Error(`Invalid YAML: ${getErrorMessage(error, 'Unknown error')}`)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Parse YAML from buffer
|
|
*/
|
|
export async function parseYAMLBuffer(buffer: Buffer): Promise<FileParseResult> {
|
|
const content = buffer.toString('utf-8')
|
|
|
|
try {
|
|
const yamlData = yaml.load(content)
|
|
const jsonContent = JSON.stringify(yamlData, null, 2)
|
|
|
|
const metadata = {
|
|
type: 'yaml',
|
|
isArray: Array.isArray(yamlData),
|
|
keys: Array.isArray(yamlData) ? [] : Object.keys(yamlData || {}),
|
|
itemCount: Array.isArray(yamlData) ? yamlData.length : undefined,
|
|
depth: getYamlDepth(yamlData),
|
|
}
|
|
|
|
return {
|
|
content: jsonContent,
|
|
metadata,
|
|
}
|
|
} catch (error) {
|
|
throw new Error(`Invalid YAML: ${getErrorMessage(error, 'Unknown error')}`)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Calculate the depth of a YAML/JSON object
|
|
*/
|
|
function getYamlDepth(obj: any): number {
|
|
if (obj === null || typeof obj !== 'object') return 0
|
|
|
|
if (Array.isArray(obj)) {
|
|
return obj.length > 0 ? 1 + Math.max(...obj.map(getYamlDepth)) : 1
|
|
}
|
|
|
|
const depths = Object.values(obj).map(getYamlDepth)
|
|
return depths.length > 0 ? 1 + Math.max(...depths) : 1
|
|
}
|