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
214 lines
5.7 KiB
TypeScript
214 lines
5.7 KiB
TypeScript
import { db } from '@sim/db'
|
|
import { customTools } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { generateShortId } from '@sim/utils/id'
|
|
import { and, desc, eq, isNull, or } from 'drizzle-orm'
|
|
import { generateRequestId } from '@/lib/core/utils/request'
|
|
|
|
const logger = createLogger('CustomToolsOperations')
|
|
|
|
/**
|
|
* Internal function to create/update custom tools
|
|
* Can be called from API routes or internal services
|
|
*/
|
|
export async function upsertCustomTools(params: {
|
|
tools: Array<{
|
|
id?: string
|
|
title: string
|
|
schema: any
|
|
code: string
|
|
}>
|
|
workspaceId: string
|
|
userId: string
|
|
requestId?: string
|
|
}) {
|
|
const { tools, workspaceId, userId, requestId = generateRequestId() } = params
|
|
|
|
return await db.transaction(async (tx) => {
|
|
for (const tool of tools) {
|
|
const nowTime = new Date()
|
|
|
|
if (tool.id) {
|
|
const existingWorkspaceTool = await tx
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(eq(customTools.id, tool.id), eq(customTools.workspaceId, workspaceId)))
|
|
.limit(1)
|
|
|
|
if (existingWorkspaceTool.length > 0) {
|
|
await tx
|
|
.update(customTools)
|
|
.set({
|
|
title: tool.title,
|
|
schema: tool.schema,
|
|
code: tool.code,
|
|
updatedAt: nowTime,
|
|
})
|
|
.where(and(eq(customTools.id, tool.id), eq(customTools.workspaceId, workspaceId)))
|
|
continue
|
|
}
|
|
|
|
const existingLegacyTool = await tx
|
|
.select()
|
|
.from(customTools)
|
|
.where(
|
|
and(
|
|
eq(customTools.id, tool.id),
|
|
isNull(customTools.workspaceId),
|
|
eq(customTools.userId, userId)
|
|
)
|
|
)
|
|
.limit(1)
|
|
|
|
if (existingLegacyTool.length > 0) {
|
|
await tx
|
|
.update(customTools)
|
|
.set({
|
|
title: tool.title,
|
|
schema: tool.schema,
|
|
code: tool.code,
|
|
updatedAt: nowTime,
|
|
})
|
|
.where(eq(customTools.id, tool.id))
|
|
|
|
logger.info(`[${requestId}] Updated legacy tool ${tool.id}`)
|
|
continue
|
|
}
|
|
}
|
|
|
|
const duplicateTitle = await tx
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(eq(customTools.workspaceId, workspaceId), eq(customTools.title, tool.title)))
|
|
.limit(1)
|
|
|
|
if (duplicateTitle.length > 0) {
|
|
throw new Error(`A tool with the title "${tool.title}" already exists in this workspace`)
|
|
}
|
|
|
|
await tx.insert(customTools).values({
|
|
id: generateShortId(),
|
|
workspaceId,
|
|
userId,
|
|
title: tool.title,
|
|
schema: tool.schema,
|
|
code: tool.code,
|
|
createdAt: nowTime,
|
|
updatedAt: nowTime,
|
|
})
|
|
}
|
|
|
|
const resultTools = await tx
|
|
.select()
|
|
.from(customTools)
|
|
.where(eq(customTools.workspaceId, workspaceId))
|
|
.orderBy(desc(customTools.createdAt))
|
|
|
|
return resultTools
|
|
})
|
|
}
|
|
|
|
export async function listCustomTools(params: { userId: string; workspaceId?: string }) {
|
|
const { userId, workspaceId } = params
|
|
return workspaceId
|
|
? db
|
|
.select()
|
|
.from(customTools)
|
|
.where(
|
|
or(
|
|
eq(customTools.workspaceId, workspaceId),
|
|
and(isNull(customTools.workspaceId), eq(customTools.userId, userId))
|
|
)
|
|
)
|
|
.orderBy(desc(customTools.createdAt))
|
|
: db
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(isNull(customTools.workspaceId), eq(customTools.userId, userId)))
|
|
.orderBy(desc(customTools.createdAt))
|
|
}
|
|
|
|
export async function getCustomToolById(params: {
|
|
toolId: string
|
|
userId: string
|
|
workspaceId?: string
|
|
}) {
|
|
const { toolId, userId, workspaceId } = params
|
|
|
|
if (workspaceId) {
|
|
const workspaceTool = await db
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(eq(customTools.id, toolId), eq(customTools.workspaceId, workspaceId)))
|
|
.limit(1)
|
|
if (workspaceTool[0]) return workspaceTool[0]
|
|
}
|
|
|
|
const legacyTool = await db
|
|
.select()
|
|
.from(customTools)
|
|
.where(
|
|
and(
|
|
eq(customTools.id, toolId),
|
|
isNull(customTools.workspaceId),
|
|
eq(customTools.userId, userId)
|
|
)
|
|
)
|
|
.limit(1)
|
|
return legacyTool[0] || null
|
|
}
|
|
|
|
export async function getCustomToolByIdOrTitle(params: {
|
|
identifier: string
|
|
userId: string
|
|
workspaceId?: string
|
|
}) {
|
|
const { identifier, userId, workspaceId } = params
|
|
|
|
const conditions = [or(eq(customTools.id, identifier), eq(customTools.title, identifier))]
|
|
|
|
if (workspaceId) {
|
|
const workspaceTool = await db
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(eq(customTools.workspaceId, workspaceId), ...conditions))
|
|
.limit(1)
|
|
if (workspaceTool[0]) return workspaceTool[0]
|
|
}
|
|
|
|
const legacyTool = await db
|
|
.select()
|
|
.from(customTools)
|
|
.where(and(isNull(customTools.workspaceId), eq(customTools.userId, userId), ...conditions))
|
|
.limit(1)
|
|
return legacyTool[0] || null
|
|
}
|
|
|
|
export async function deleteCustomTool(params: {
|
|
toolId: string
|
|
userId: string
|
|
workspaceId?: string
|
|
}): Promise<boolean> {
|
|
const { toolId, userId, workspaceId } = params
|
|
|
|
if (workspaceId) {
|
|
const workspaceDelete = await db
|
|
.delete(customTools)
|
|
.where(and(eq(customTools.id, toolId), eq(customTools.workspaceId, workspaceId)))
|
|
.returning({ id: customTools.id })
|
|
if (workspaceDelete.length > 0) return true
|
|
}
|
|
|
|
const legacyDelete = await db
|
|
.delete(customTools)
|
|
.where(
|
|
and(
|
|
eq(customTools.id, toolId),
|
|
isNull(customTools.workspaceId),
|
|
eq(customTools.userId, userId)
|
|
)
|
|
)
|
|
.returning({ id: customTools.id })
|
|
return legacyDelete.length > 0
|
|
}
|