mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-07 05:40:11 +00:00
Initial commit
This commit is contained in:
53
routes/api/config-sets/+server.ts
Normal file
53
routes/api/config-sets/+server.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
import { getConfigSets, createConfigSet } from '$lib/server/db';
|
||||
import { authorize } from '$lib/server/authorize';
|
||||
|
||||
export const GET: RequestHandler = async ({ cookies }) => {
|
||||
const auth = await authorize(cookies);
|
||||
if (auth.authEnabled && !await auth.can('configsets', 'view')) {
|
||||
return json({ error: 'Permission denied' }, { status: 403 });
|
||||
}
|
||||
|
||||
try {
|
||||
const configSets = await getConfigSets();
|
||||
return json(configSets);
|
||||
} catch (error) {
|
||||
console.error('Failed to fetch config sets:', error);
|
||||
return json({ error: 'Failed to fetch config sets' }, { status: 500 });
|
||||
}
|
||||
};
|
||||
|
||||
export const POST: RequestHandler = async ({ request, cookies }) => {
|
||||
const auth = await authorize(cookies);
|
||||
if (auth.authEnabled && !await auth.can('configsets', 'create')) {
|
||||
return json({ error: 'Permission denied' }, { status: 403 });
|
||||
}
|
||||
|
||||
try {
|
||||
const body = await request.json();
|
||||
|
||||
if (!body.name?.trim()) {
|
||||
return json({ error: 'Name is required' }, { status: 400 });
|
||||
}
|
||||
|
||||
const configSet = await createConfigSet({
|
||||
name: body.name.trim(),
|
||||
description: body.description?.trim() || undefined,
|
||||
envVars: body.envVars || [],
|
||||
labels: body.labels || [],
|
||||
ports: body.ports || [],
|
||||
volumes: body.volumes || [],
|
||||
networkMode: body.networkMode || 'bridge',
|
||||
restartPolicy: body.restartPolicy || 'no'
|
||||
});
|
||||
|
||||
return json(configSet, { status: 201 });
|
||||
} catch (error: any) {
|
||||
console.error('Failed to create config set:', error);
|
||||
if (error.message?.includes('UNIQUE constraint')) {
|
||||
return json({ error: 'A config set with this name already exists' }, { status: 400 });
|
||||
}
|
||||
return json({ error: 'Failed to create config set' }, { status: 500 });
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user