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,77 @@
/**
* @vitest-environment node
*/
import { NextRequest } from 'next/server'
import { beforeEach, describe, expect, it, vi } from 'vitest'
const { mockGetSession, mockGetPerms, mockResolveImage, mockDownloadFile } = vi.hoisted(() => ({
mockGetSession: vi.fn(),
mockGetPerms: vi.fn(),
mockResolveImage: vi.fn(),
mockDownloadFile: vi.fn(),
}))
vi.mock('@/lib/auth', () => ({
auth: { api: { getSession: vi.fn() } },
getSession: mockGetSession,
}))
vi.mock('@/lib/workspaces/permissions/utils', () => ({ getUserEntityPermissions: mockGetPerms }))
vi.mock('@/lib/uploads/server/inline-image', () => ({
resolveWorkspaceInlineImage: mockResolveImage,
}))
vi.mock('@/lib/uploads/core/storage-service', () => ({ downloadFile: mockDownloadFile }))
import { GET } from '@/app/api/workspaces/[id]/files/inline/route'
const PNG = Buffer.from([0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00])
const params = { params: Promise.resolve({ id: 'ws-1' }) }
const req = (q: string) => new NextRequest(`http://localhost/api/workspaces/ws-1/files/inline?${q}`)
describe('GET /api/workspaces/[id]/files/inline', () => {
beforeEach(() => {
vi.clearAllMocks()
mockGetSession.mockResolvedValue({ user: { id: 'u1' } })
mockGetPerms.mockResolvedValue('read')
mockResolveImage.mockResolvedValue({
key: 'workspace/ws-1/x-photo.png',
contentType: 'image/png',
filename: 'photo.png',
})
mockDownloadFile.mockResolvedValue(PNG)
})
it('serves a workspace-scoped image by fileId', async () => {
const res = await GET(req('fileId=wf_abc'), params)
expect(res.status).toBe(200)
expect(mockResolveImage).toHaveBeenCalledWith('ws-1', { fileId: 'wf_abc' })
})
it('serves a workspace-scoped image by key', async () => {
const res = await GET(req(`key=${encodeURIComponent('workspace/ws-1/x-photo.png')}`), params)
expect(res.status).toBe(200)
})
it('404s when the reference does not resolve in the workspace (cross-workspace)', async () => {
mockResolveImage.mockResolvedValue(null)
const res = await GET(req('fileId=wf_other'), params)
expect(res.status).toBe(404)
})
it('404s without workspace membership, before resolving the file', async () => {
mockGetPerms.mockResolvedValue(null)
const res = await GET(req('fileId=wf_abc'), params)
expect(res.status).toBe(404)
expect(mockResolveImage).not.toHaveBeenCalled()
})
it('401s without a session', async () => {
mockGetSession.mockResolvedValue(null)
const res = await GET(req('fileId=wf_abc'), params)
expect(res.status).toBe(401)
})
it('400s when neither key nor fileId is provided', async () => {
const res = await GET(req(''), params)
expect(res.status).toBe(400)
})
})
@@ -0,0 +1,59 @@
import { createLogger } from '@sim/logger'
import type { NextRequest } from 'next/server'
import { NextResponse } from 'next/server'
import { getInlineWorkspaceFileContract } from '@/lib/api/contracts/workspace-files'
import { parseRequest } from '@/lib/api/server'
import { getSession } from '@/lib/auth'
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
import { resolveWorkspaceInlineImage } from '@/lib/uploads/server/inline-image'
import { getUserEntityPermissions } from '@/lib/workspaces/permissions/utils'
import { serveInlineImage } from '@/app/api/files/serve-inline-image'
import { createErrorResponse, FileNotFoundError } from '@/app/api/files/utils'
export const dynamic = 'force-dynamic'
const logger = createLogger('WorkspaceInlineFileAPI')
/**
* GET /api/workspaces/[id]/files/inline?key=<cloudKey>|fileId=<id>
*
* Serves an image embedded in a workspace markdown document, **scoped to the workspace in the path**.
* The markdown editor rewrites its embedded `/api/files/serve/<key>` and `/api/files/view/<id>` srcs to
* this route so a referenced file resolves only within the document's workspace — a cross-workspace
* reference returns 404 and does not render, even for a viewer who belongs to the other workspace. Read
* access to the workspace is required; disposition/content-type handling mirrors the serve route.
*/
export const GET = withRouteHandler(
async (request: NextRequest, context: { params: Promise<{ id: string }> }) => {
try {
const parsed = await parseRequest(getInlineWorkspaceFileContract, request, context)
if (!parsed.success) return parsed.response
const { id: workspaceId } = parsed.data.params
const ref = parsed.data.query
const session = await getSession()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
// Authorize before disclosing anything; deny with 404 so a non-member can't probe existence.
const permission = await getUserEntityPermissions(session.user.id, 'workspace', workspaceId)
if (!permission) {
throw new FileNotFoundError('Not found')
}
const image = await resolveWorkspaceInlineImage(workspaceId, ref)
if (!image) {
throw new FileNotFoundError('Not found')
}
return await serveInlineImage(image, { sniff: false })
} catch (error) {
if (error instanceof FileNotFoundError) {
return createErrorResponse(error)
}
logger.error('Error serving workspace inline image:', error)
return createErrorResponse(error instanceof Error ? error : new Error('Failed to serve file'))
}
}
)