chore: import upstream snapshot with attribution
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

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
@@ -0,0 +1,141 @@
/**
* @vitest-environment node
*/
import { beforeEach, describe, expect, it, vi } from 'vitest'
const { mockAuthorizeWorkflowByWorkspacePermission } = vi.hoisted(() => ({
mockAuthorizeWorkflowByWorkspacePermission: vi.fn(),
}))
vi.mock('@sim/platform-authz/workflow', () => ({
authorizeWorkflowByWorkspacePermission: mockAuthorizeWorkflowByWorkspacePermission,
}))
import { createPermissionError, verifyWorkflowAccess } from '@/lib/copilot/auth/permissions'
describe('Copilot Auth Permissions', () => {
beforeEach(() => {
vi.clearAllMocks()
})
describe('verifyWorkflowAccess', () => {
it('should return no access for non-existent workflow', async () => {
mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
allowed: false,
status: 404,
workflow: null,
workspacePermission: null,
})
const result = await verifyWorkflowAccess('user-123', 'non-existent-workflow')
expect(result).toEqual({ hasAccess: false, userPermission: null })
})
it('should delegate to the shared workflow authorizer with a read action', async () => {
mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
allowed: true,
status: 200,
workflow: { workspaceId: 'workspace-456' },
workspacePermission: 'write',
})
await verifyWorkflowAccess('user-123', 'workflow-789')
expect(mockAuthorizeWorkflowByWorkspacePermission).toHaveBeenCalledWith({
workflowId: 'workflow-789',
userId: 'user-123',
action: 'read',
})
})
it.each(['read', 'write', 'admin'] as const)(
'should grant access with %s permission through the workspace',
async (permission) => {
mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
allowed: true,
status: 200,
workflow: { workspaceId: 'workspace-456' },
workspacePermission: permission,
})
const result = await verifyWorkflowAccess('user-123', 'workflow-789')
expect(result).toEqual({
hasAccess: true,
userPermission: permission,
workspaceId: 'workspace-456',
})
}
)
it('should report the workspaceId even when permission is denied for an existing workflow', async () => {
mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
allowed: false,
status: 403,
workflow: { workspaceId: 'workspace-456' },
workspacePermission: null,
})
const result = await verifyWorkflowAccess('user-123', 'workflow-789')
expect(result).toEqual({
hasAccess: false,
userPermission: null,
workspaceId: 'workspace-456',
})
})
it('should return no access for a workflow without a workspace', async () => {
mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
allowed: false,
status: 403,
workflow: { workspaceId: null },
workspacePermission: null,
})
const result = await verifyWorkflowAccess('user-123', 'workflow-789')
expect(result).toEqual({ hasAccess: false, userPermission: null })
})
it('should handle errors gracefully', async () => {
mockAuthorizeWorkflowByWorkspacePermission.mockRejectedValueOnce(
new Error('Database connection failed')
)
const result = await verifyWorkflowAccess('user-123', 'workflow-789')
expect(result).toEqual({ hasAccess: false, userPermission: null })
})
})
describe('createPermissionError', () => {
it('should create a permission error message for edit operation', () => {
const result = createPermissionError('edit')
expect(result).toBe('Access denied: You do not have permission to edit this workflow')
})
it('should create a permission error message for view operation', () => {
const result = createPermissionError('view')
expect(result).toBe('Access denied: You do not have permission to view this workflow')
})
it('should create a permission error message for delete operation', () => {
const result = createPermissionError('delete')
expect(result).toBe('Access denied: You do not have permission to delete this workflow')
})
it('should create a permission error message for deploy operation', () => {
const result = createPermissionError('deploy')
expect(result).toBe('Access denied: You do not have permission to deploy this workflow')
})
it('should create a permission error message for custom operation', () => {
const result = createPermissionError('modify settings of')
expect(result).toBe(
'Access denied: You do not have permission to modify settings of this workflow'
)
})
})
})
+44
View File
@@ -0,0 +1,44 @@
import { createLogger } from '@sim/logger'
import { authorizeWorkflowByWorkspacePermission } from '@sim/platform-authz/workflow'
import type { PermissionType } from '@/lib/workspaces/permissions/utils'
const logger = createLogger('CopilotPermissions')
/**
* Verifies if a user has access to a workflow for copilot operations
*
* @param userId - The authenticated user ID
* @param workflowId - The workflow ID to check access for
* @returns Promise<{ hasAccess: boolean; userPermission: PermissionType | null; workspaceId?: string }>
*/
export async function verifyWorkflowAccess(
userId: string,
workflowId: string
): Promise<{
hasAccess: boolean
userPermission: PermissionType | null
workspaceId?: string
}> {
try {
const result = await authorizeWorkflowByWorkspacePermission({
workflowId,
userId,
action: 'read',
})
return {
hasAccess: result.allowed,
userPermission: result.workspacePermission,
workspaceId: result.workflow?.workspaceId ?? undefined,
}
} catch (error) {
logger.error('Error verifying workflow access', { error, workflowId, userId })
return { hasAccess: false, userPermission: null }
}
}
/**
* Helper function to create consistent permission error messages
*/
export function createPermissionError(operation: string): string {
return `Access denied: You do not have permission to ${operation} this workflow`
}