import { json } from '@sveltejs/kit'; import { createContainerFile, createContainerDirectory } from '$lib/server/docker'; import { authorize } from '$lib/server/authorize'; import type { RequestHandler } from './$types'; export const POST: RequestHandler = async ({ params, url, cookies, request }) => { const auth = await authorize(cookies); const envId = url.searchParams.get('env'); const envIdNum = envId ? parseInt(envId) : undefined; // Permission check with environment context if (auth.authEnabled && !await auth.can('containers', 'exec', envIdNum)) { return json({ error: 'Permission denied' }, { status: 403 }); } try { const body = await request.json(); const { path, type } = body; if (!path || typeof path !== 'string') { return json({ error: 'Path is required' }, { status: 400 }); } if (type !== 'file' && type !== 'directory') { return json({ error: 'Type must be "file" or "directory"' }, { status: 400 }); } if (type === 'file') { await createContainerFile(params.id, path, envIdNum); } else { await createContainerDirectory(params.id, path, envIdNum); } return json({ success: true, path, type }); } catch (error: any) { console.error('Error creating path:', error); const msg = error.message || String(error); if (msg.includes('Permission denied')) { return json({ error: 'Permission denied' }, { status: 403 }); } if (msg.includes('File exists')) { return json({ error: 'Path already exists' }, { status: 409 }); } if (msg.includes('No such file or directory')) { return json({ error: 'Parent directory not found' }, { status: 404 }); } if (msg.includes('container is not running')) { return json({ error: 'Container is not running' }, { status: 400 }); } return json({ error: `Failed to create: ${msg}` }, { status: 500 }); } };