d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import type { SandboxBroker } from '@/lib/execution/sandbox/types'
|
|
import {
|
|
fetchWorkspaceFileBuffer,
|
|
getWorkspaceFile,
|
|
} from '@/lib/uploads/contexts/workspace/workspace-file-manager'
|
|
|
|
const logger = createLogger('SandboxWorkspaceFileBroker')
|
|
|
|
interface WorkspaceFileArgs {
|
|
fileId: string
|
|
}
|
|
|
|
interface WorkspaceFileResult {
|
|
dataUri: string
|
|
}
|
|
|
|
/**
|
|
* Host-side broker that resolves a workspace file id into a base64 data URI.
|
|
*
|
|
* Exposed to isolate code through `__brokers.workspaceFile(fileId)` and wrapped
|
|
* by the task bootstrap as `getFileBase64(fileId)`.
|
|
*/
|
|
export const workspaceFileBroker: SandboxBroker<WorkspaceFileArgs, WorkspaceFileResult> = {
|
|
name: 'workspaceFile',
|
|
async handle(ctx, args) {
|
|
if (!args || typeof args.fileId !== 'string' || args.fileId.length === 0) {
|
|
throw new Error('workspaceFile broker requires a non-empty fileId')
|
|
}
|
|
if (!ctx.workspaceId) {
|
|
throw new Error('workspaceFile broker requires a workspaceId')
|
|
}
|
|
|
|
const record = await getWorkspaceFile(ctx.workspaceId, args.fileId)
|
|
if (!record) {
|
|
logger.warn('Workspace file not found for sandbox broker', {
|
|
workspaceId: ctx.workspaceId,
|
|
fileId: args.fileId,
|
|
})
|
|
throw new Error(`File not found: ${args.fileId}`)
|
|
}
|
|
|
|
const buffer = await fetchWorkspaceFileBuffer(record)
|
|
const mime = record.type || 'image/png'
|
|
return { dataUri: `data:${mime};base64,${buffer.toString('base64')}` }
|
|
},
|
|
}
|