Files
dockhand/routes/api/schedules/system/[id]/toggle/+server.ts
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

43 lines
1.4 KiB
TypeScript

import { json, type RequestHandler } from '@sveltejs/kit';
import {
setScheduleCleanupEnabled,
setEventCleanupEnabled,
getScheduleCleanupEnabled,
getEventCleanupEnabled
} from '$lib/server/db';
import { authorize } from '$lib/server/authorize';
const SYSTEM_SCHEDULE_CLEANUP_ID = 1;
const SYSTEM_EVENT_CLEANUP_ID = 2;
export const POST: RequestHandler = async ({ params, cookies }) => {
const auth = await authorize(cookies);
if (auth.authEnabled && !await auth.can('settings', 'edit')) {
return json({ error: 'Permission denied' }, { status: 403 });
}
try {
const { id } = params;
const systemId = parseInt(id, 10);
if (isNaN(systemId)) {
return json({ error: 'Invalid system schedule ID' }, { status: 400 });
}
if (systemId === SYSTEM_SCHEDULE_CLEANUP_ID) {
const currentEnabled = await getScheduleCleanupEnabled();
await setScheduleCleanupEnabled(!currentEnabled);
return json({ success: true, enabled: !currentEnabled });
} else if (systemId === SYSTEM_EVENT_CLEANUP_ID) {
const currentEnabled = await getEventCleanupEnabled();
await setEventCleanupEnabled(!currentEnabled);
return json({ success: true, enabled: !currentEnabled });
} else {
return json({ error: 'Unknown system schedule' }, { status: 400 });
}
} catch (error: any) {
console.error('Failed to toggle system schedule:', error);
return json({ error: 'Failed to toggle system schedule' }, { status: 500 });
}
};