Files
dockhand/routes/api/prune/all/+server.ts
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

25 lines
1.0 KiB
TypeScript

import { json } from '@sveltejs/kit';
import { pruneAll } from '$lib/server/docker';
import { authorize } from '$lib/server/authorize';
import type { RequestHandler } from './$types';
export const POST: RequestHandler = async ({ url, cookies }) => {
const auth = await authorize(cookies);
const envId = url.searchParams.get('env');
const envIdNum = envId ? parseInt(envId) : undefined;
// Prune all requires remove permission on all resource types (with environment context)
if (auth.authEnabled && (!await auth.can('containers', 'remove', envIdNum) || !await auth.can('images', 'remove', envIdNum) || !await auth.can('volumes', 'remove', envIdNum) || !await auth.can('networks', 'remove', envIdNum))) {
return json({ error: 'Permission denied' }, { status: 403 });
}
try {
const result = await pruneAll(envIdNum);
return json({ success: true, result });
} catch (error: any) {
console.error('Error pruning all:', error?.message || error, error?.stack);
return json({ error: 'Failed to prune system', details: error?.message }, { status: 500 });
}
};