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
177 lines
6.0 KiB
TypeScript
177 lines
6.0 KiB
TypeScript
import { db } from '@sim/db'
|
|
import { workflowCheckpoints, workflow as workflowTable } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { authorizeWorkflowByWorkspacePermission } from '@sim/platform-authz/workflow'
|
|
import { and, eq } from 'drizzle-orm'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { revertCopilotCheckpointContract } from '@/lib/api/contracts/copilot'
|
|
import type { CleanedWorkflowState } from '@/lib/api/contracts/workflows'
|
|
import { parseRequest } from '@/lib/api/server'
|
|
import { getAccessibleCopilotChatAuth } from '@/lib/copilot/chat/lifecycle'
|
|
import {
|
|
authenticateCopilotRequestSessionOnly,
|
|
createInternalServerErrorResponse,
|
|
createNotFoundResponse,
|
|
createRequestTracker,
|
|
createUnauthorizedResponse,
|
|
} from '@/lib/copilot/request/http'
|
|
import { getInternalApiBaseUrl } from '@/lib/core/utils/urls'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
import { isUuidV4 } from '@/executor/constants'
|
|
|
|
const logger = createLogger('CheckpointRevertAPI')
|
|
|
|
/**
|
|
* POST /api/copilot/checkpoints/revert
|
|
* Revert workflow to a specific checkpoint state
|
|
*/
|
|
export const POST = withRouteHandler(async (request: NextRequest) => {
|
|
const tracker = createRequestTracker()
|
|
|
|
try {
|
|
const { userId, isAuthenticated } = await authenticateCopilotRequestSessionOnly()
|
|
if (!isAuthenticated || !userId) {
|
|
return createUnauthorizedResponse()
|
|
}
|
|
|
|
const parsed = await parseRequest(
|
|
revertCopilotCheckpointContract,
|
|
request,
|
|
{},
|
|
{
|
|
invalidJson: 'throw',
|
|
}
|
|
)
|
|
if (!parsed.success) return parsed.response
|
|
const { checkpointId } = parsed.data.body
|
|
|
|
logger.info(`[${tracker.requestId}] Reverting to checkpoint ${checkpointId}`)
|
|
|
|
const checkpoint = await db
|
|
.select()
|
|
.from(workflowCheckpoints)
|
|
.where(and(eq(workflowCheckpoints.id, checkpointId), eq(workflowCheckpoints.userId, userId)))
|
|
.then((rows) => rows[0])
|
|
|
|
if (!checkpoint) {
|
|
return createNotFoundResponse('Checkpoint not found or access denied')
|
|
}
|
|
|
|
const chat = await getAccessibleCopilotChatAuth(checkpoint.chatId, userId)
|
|
if (!chat) {
|
|
return createNotFoundResponse('Checkpoint not found or access denied')
|
|
}
|
|
|
|
const workflowData = await db
|
|
.select()
|
|
.from(workflowTable)
|
|
.where(eq(workflowTable.id, checkpoint.workflowId))
|
|
.then((rows) => rows[0])
|
|
|
|
if (!workflowData) {
|
|
return createNotFoundResponse('Workflow not found')
|
|
}
|
|
|
|
const authorization = await authorizeWorkflowByWorkspacePermission({
|
|
workflowId: checkpoint.workflowId,
|
|
userId,
|
|
action: 'write',
|
|
})
|
|
if (!authorization.allowed) {
|
|
return createUnauthorizedResponse()
|
|
}
|
|
|
|
const checkpointState: Record<string, unknown> =
|
|
checkpoint.workflowState && typeof checkpoint.workflowState === 'object'
|
|
? (checkpoint.workflowState as Record<string, unknown>)
|
|
: {}
|
|
|
|
const rawBlocks = checkpointState.blocks
|
|
const rawEdges = checkpointState.edges
|
|
const rawLoops = checkpointState.loops
|
|
const rawParallels = checkpointState.parallels
|
|
const rawDeployedAt = checkpointState.deployedAt
|
|
|
|
const parsedDeployedAt =
|
|
rawDeployedAt === null || rawDeployedAt === undefined
|
|
? null
|
|
: new Date(rawDeployedAt as string | number | Date)
|
|
|
|
const cleanedState: CleanedWorkflowState = {
|
|
blocks: (rawBlocks ?? {}) as Record<string, unknown>,
|
|
edges: (rawEdges ?? []) as unknown[],
|
|
loops: (rawLoops ?? {}) as Record<string, unknown>,
|
|
parallels: (rawParallels ?? {}) as Record<string, unknown>,
|
|
isDeployed: Boolean(checkpointState.isDeployed),
|
|
lastSaved: Date.now(),
|
|
...(parsedDeployedAt && !Number.isNaN(parsedDeployedAt.getTime())
|
|
? { deployedAt: parsedDeployedAt }
|
|
: {}),
|
|
}
|
|
|
|
logger.info(`[${tracker.requestId}] Applying cleaned checkpoint state`, {
|
|
blocksCount: Object.keys(cleanedState.blocks).length,
|
|
edgesCount: cleanedState.edges.length,
|
|
hasDeployedAt: !!cleanedState.deployedAt,
|
|
isDeployed: cleanedState.isDeployed,
|
|
})
|
|
|
|
if (!isUuidV4(checkpoint.workflowId)) {
|
|
logger.error(`[${tracker.requestId}] Invalid workflow ID format`)
|
|
return NextResponse.json({ error: 'Invalid workflow ID format' }, { status: 400 })
|
|
}
|
|
|
|
const stateResponse = await fetch(
|
|
`${getInternalApiBaseUrl()}/api/workflows/${checkpoint.workflowId}/state`,
|
|
{
|
|
method: 'PUT',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Cookie: request.headers.get('Cookie') || '',
|
|
},
|
|
body: JSON.stringify(cleanedState),
|
|
}
|
|
)
|
|
|
|
if (!stateResponse.ok) {
|
|
const errorData = await stateResponse.text()
|
|
logger.error(`[${tracker.requestId}] Failed to apply checkpoint state: ${errorData}`)
|
|
return NextResponse.json(
|
|
{ error: 'Failed to revert workflow to checkpoint' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
|
|
const result = await stateResponse.json()
|
|
logger.info(
|
|
`[${tracker.requestId}] Successfully reverted workflow ${checkpoint.workflowId} to checkpoint ${checkpointId}`
|
|
)
|
|
|
|
// Delete the checkpoint after successfully reverting to it
|
|
try {
|
|
await db.delete(workflowCheckpoints).where(eq(workflowCheckpoints.id, checkpointId))
|
|
logger.info(`[${tracker.requestId}] Deleted checkpoint after reverting`, { checkpointId })
|
|
} catch (deleteError) {
|
|
logger.warn(`[${tracker.requestId}] Failed to delete checkpoint after revert`, {
|
|
checkpointId,
|
|
error: deleteError,
|
|
})
|
|
// Don't fail the request if deletion fails - the revert was successful
|
|
}
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
workflowId: checkpoint.workflowId,
|
|
checkpointId,
|
|
revertedAt: new Date().toISOString(),
|
|
checkpoint: {
|
|
id: checkpoint.id,
|
|
workflowState: cleanedState,
|
|
},
|
|
})
|
|
} catch (error) {
|
|
logger.error(`[${tracker.requestId}] Error reverting to checkpoint:`, error)
|
|
return createInternalServerErrorResponse('Failed to revert to checkpoint')
|
|
}
|
|
})
|