mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-08 05:39:06 +00:00
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { json } from '@sveltejs/kit';
|
|
import type { RequestHandler } from './$types';
|
|
import { readVolumeFile } from '$lib/server/docker';
|
|
import { authorize } from '$lib/server/authorize';
|
|
|
|
// Max file size for reading (1MB)
|
|
const MAX_FILE_SIZE = 1024 * 1024;
|
|
|
|
export const GET: RequestHandler = async ({ params, url, cookies }) => {
|
|
const auth = await authorize(cookies);
|
|
|
|
const path = url.searchParams.get('path');
|
|
const envId = url.searchParams.get('env');
|
|
const envIdNum = envId ? parseInt(envId) : undefined;
|
|
|
|
// Permission check with environment context
|
|
if (auth.authEnabled && !await auth.can('volumes', 'inspect', envIdNum)) {
|
|
return json({ error: 'Permission denied' }, { status: 403 });
|
|
}
|
|
|
|
try {
|
|
if (!path) {
|
|
return json({ error: 'Path is required' }, { status: 400 });
|
|
}
|
|
|
|
const content = await readVolumeFile(
|
|
params.name,
|
|
path,
|
|
envIdNum
|
|
);
|
|
|
|
// Check if content is too large
|
|
if (content.length > MAX_FILE_SIZE) {
|
|
return json({ error: 'File is too large to view (max 1MB)' }, { status: 413 });
|
|
}
|
|
|
|
return json({ content, path });
|
|
} catch (error: any) {
|
|
console.error('Error reading volume file:', error);
|
|
|
|
if (error.message?.includes('No such file or directory')) {
|
|
return json({ error: 'File not found' }, { status: 404 });
|
|
}
|
|
if (error.message?.includes('Permission denied')) {
|
|
return json({ error: 'Permission denied to read this file' }, { status: 403 });
|
|
}
|
|
if (error.message?.includes('Is a directory')) {
|
|
return json({ error: 'Cannot read a directory' }, { status: 400 });
|
|
}
|
|
|
|
return json({ error: 'Failed to read file' }, { status: 500 });
|
|
}
|
|
};
|