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

82 lines
2.6 KiB
TypeScript

import { json } from '@sveltejs/kit';
import {
getNotificationSettings,
createNotificationSetting,
type SmtpConfig,
type AppriseConfig,
type NotificationEventType
} from '$lib/server/db';
import { authorize } from '$lib/server/authorize';
import type { RequestHandler } from './$types';
export const GET: RequestHandler = async ({ cookies }) => {
const auth = await authorize(cookies);
if (auth.authEnabled && !await auth.can('notifications', 'view')) {
return json({ error: 'Permission denied' }, { status: 403 });
}
try {
const settings = await getNotificationSettings();
// Don't expose passwords
const safeSettings = settings.map(s => ({
...s,
config: s.type === 'smtp' ? {
...s.config,
password: s.config.password ? '********' : undefined
} : s.config
}));
return json(safeSettings);
} catch (error) {
console.error('Error fetching notification settings:', error);
return json({ error: 'Failed to fetch notification settings' }, { status: 500 });
}
};
export const POST: RequestHandler = async ({ request, cookies }) => {
const auth = await authorize(cookies);
if (auth.authEnabled && !await auth.can('notifications', 'create')) {
return json({ error: 'Permission denied' }, { status: 403 });
}
try {
const body = await request.json();
const { type, name, enabled, config, event_types, eventTypes } = body;
// Support both snake_case (legacy) and camelCase (new) for event types
const resolvedEventTypes = eventTypes || event_types;
if (!type || !name || !config) {
return json({ error: 'Type, name, and config are required' }, { status: 400 });
}
if (type !== 'smtp' && type !== 'apprise') {
return json({ error: 'Type must be smtp or apprise' }, { status: 400 });
}
// Validate config based on type
if (type === 'smtp') {
const smtpConfig = config as SmtpConfig;
if (!smtpConfig.host || !smtpConfig.port || !smtpConfig.from_email || !smtpConfig.to_emails?.length) {
return json({ error: 'SMTP config requires host, port, from_email, and to_emails' }, { status: 400 });
}
} else if (type === 'apprise') {
const appriseConfig = config as AppriseConfig;
if (!appriseConfig.urls?.length) {
return json({ error: 'Apprise config requires at least one URL' }, { status: 400 });
}
}
const setting = await createNotificationSetting({
type,
name,
enabled: enabled !== false,
config,
eventTypes: resolvedEventTypes as NotificationEventType[]
});
return json(setting);
} catch (error: any) {
console.error('Error creating notification setting:', error);
return json({ error: error.message || 'Failed to create notification setting' }, { status: 500 });
}
};