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
141 lines
4.7 KiB
TypeScript
141 lines
4.7 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { isLargeArrayManifest } from '@/lib/execution/payloads/large-array-manifest-metadata'
|
|
import { assertNoLargeValueRefs, isLargeValueRef } from '@/lib/execution/payloads/large-value-ref'
|
|
import { VariableManager } from '@/lib/workflows/variables/variable-manager'
|
|
import { isReference, normalizeName, parseReferencePath, REFERENCE } from '@/executor/constants'
|
|
import {
|
|
type AsyncPathNavigator,
|
|
navigatePath,
|
|
type ResolutionContext,
|
|
type Resolver,
|
|
splitLeadingBracketPath,
|
|
} from '@/executor/variables/resolvers/reference'
|
|
import type { VariableType } from '@/stores/variables/types'
|
|
|
|
const logger = createLogger('WorkflowResolver')
|
|
|
|
export class WorkflowResolver implements Resolver {
|
|
constructor(
|
|
private workflowVariables: Record<string, any>,
|
|
private navigatePathAsync?: AsyncPathNavigator
|
|
) {}
|
|
|
|
canResolve(reference: string): boolean {
|
|
if (!isReference(reference)) {
|
|
return false
|
|
}
|
|
const parts = parseReferencePath(reference)
|
|
if (parts.length === 0) {
|
|
return false
|
|
}
|
|
const [type] = parts
|
|
return type === REFERENCE.PREFIX.VARIABLE
|
|
}
|
|
|
|
resolve(reference: string, context: ResolutionContext): any {
|
|
const parts = parseReferencePath(reference)
|
|
if (parts.length < 2) {
|
|
logger.warn('Invalid variable reference - missing variable name', { reference })
|
|
return undefined
|
|
}
|
|
|
|
const [_, rawVariableName, ...rawPathParts] = parts
|
|
const { property: variableName, pathParts: bracketPathParts } =
|
|
splitLeadingBracketPath(rawVariableName)
|
|
const pathParts = [...bracketPathParts, ...rawPathParts]
|
|
const normalizedRefName = normalizeName(variableName)
|
|
|
|
const workflowVars = context.executionContext.workflowVariables || this.workflowVariables
|
|
|
|
for (const varObj of Object.values(workflowVars)) {
|
|
const v = varObj as any
|
|
if (!v) continue
|
|
|
|
// Match by normalized name or exact ID
|
|
const normalizedVarName = v.name ? normalizeName(v.name) : ''
|
|
if (normalizedVarName === normalizedRefName || v.id === variableName) {
|
|
const normalizedType = (v.type === 'string' ? 'plain' : v.type) || 'plain'
|
|
let value: any
|
|
value = this.resolveVariableValue(v.value, normalizedType, variableName)
|
|
|
|
if (pathParts.length > 0) {
|
|
return navigatePath(value, pathParts, {
|
|
allowLargeValueRefs: context.allowLargeValueRefs,
|
|
executionContext: context.executionContext,
|
|
})
|
|
}
|
|
|
|
if (!context.allowLargeValueRefs) {
|
|
assertNoLargeValueRefs(value)
|
|
}
|
|
return value
|
|
}
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
|
|
async resolveAsync(reference: string, context: ResolutionContext): Promise<any> {
|
|
const parts = parseReferencePath(reference)
|
|
if (parts.length < 2) {
|
|
logger.warn('Invalid variable reference - missing variable name', { reference })
|
|
return undefined
|
|
}
|
|
|
|
const [_, rawVariableName, ...rawPathParts] = parts
|
|
const { property: variableName, pathParts: bracketPathParts } =
|
|
splitLeadingBracketPath(rawVariableName)
|
|
const pathParts = [...bracketPathParts, ...rawPathParts]
|
|
const normalizedRefName = normalizeName(variableName)
|
|
const workflowVars = context.executionContext.workflowVariables || this.workflowVariables
|
|
|
|
for (const varObj of Object.values(workflowVars)) {
|
|
const v = varObj as any
|
|
if (!v) continue
|
|
|
|
const normalizedVarName = v.name ? normalizeName(v.name) : ''
|
|
if (normalizedVarName === normalizedRefName || v.id === variableName) {
|
|
const normalizedType = (v.type === 'string' ? 'plain' : v.type) || 'plain'
|
|
let value: any
|
|
value = this.resolveVariableValue(v.value, normalizedType, variableName)
|
|
|
|
if (pathParts.length > 0) {
|
|
return this.navigatePathAsync
|
|
? this.navigatePathAsync(value, pathParts, context)
|
|
: navigatePath(value, pathParts, {
|
|
allowLargeValueRefs: context.allowLargeValueRefs,
|
|
executionContext: context.executionContext,
|
|
})
|
|
}
|
|
|
|
if (!context.allowLargeValueRefs) {
|
|
assertNoLargeValueRefs(value)
|
|
}
|
|
return value
|
|
}
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
|
|
private resolveVariableValue(
|
|
value: any,
|
|
normalizedType: VariableType,
|
|
variableName: string
|
|
): any {
|
|
if (isLargeValueRef(value) || isLargeArrayManifest(value)) {
|
|
return value
|
|
}
|
|
|
|
try {
|
|
return VariableManager.resolveForExecution(value, normalizedType)
|
|
} catch (error) {
|
|
logger.warn('Failed to resolve workflow variable, returning raw value', {
|
|
variableName,
|
|
error: (error as Error).message,
|
|
})
|
|
return value
|
|
}
|
|
}
|
|
}
|