- Neue CalDAV-Route mit PROPFIND und GET-Endpoints - ICS-Format-Generator für Buchungsdaten - Token-basierte Authentifizierung für CalDAV-Zugriff - Admin-Interface mit CalDAV-Link-Generator - Schritt-für-Schritt-Anleitung für Kalender-Apps - 24h-Token-Ablaufzeit für Sicherheit - Unterstützung für Outlook, Google Calendar, Apple Calendar, Thunderbird Fixes: Admin kann jetzt Terminkalender in externen Apps abonnieren
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import { call, os } from "@orpc/server";
|
|
import { z } from "zod";
|
|
import { randomUUID } from "crypto";
|
|
import { createKV } from "../lib/create-kv.js";
|
|
const TreatmentSchema = z.object({
|
|
id: z.string(),
|
|
name: z.string(),
|
|
description: z.string(),
|
|
duration: z.number(), // duration in minutes
|
|
price: z.number(), // price in cents
|
|
category: z.string(),
|
|
});
|
|
const kv = createKV("treatments");
|
|
const create = os
|
|
.input(TreatmentSchema.omit({ id: true }))
|
|
.handler(async ({ input }) => {
|
|
const id = randomUUID();
|
|
const treatment = { id, ...input };
|
|
await kv.setItem(id, treatment);
|
|
return treatment;
|
|
});
|
|
const update = os
|
|
.input(TreatmentSchema)
|
|
.handler(async ({ input }) => {
|
|
await kv.setItem(input.id, input);
|
|
return input;
|
|
});
|
|
const remove = os.input(z.string()).handler(async ({ input }) => {
|
|
await kv.removeItem(input);
|
|
});
|
|
const list = os.handler(async () => {
|
|
return kv.getAllItems();
|
|
});
|
|
const get = os.input(z.string()).handler(async ({ input }) => {
|
|
return kv.getItem(input);
|
|
});
|
|
const live = {
|
|
list: os.handler(async function* ({ signal }) {
|
|
yield call(list, {}, { signal });
|
|
for await (const _ of kv.subscribe()) {
|
|
yield call(list, {}, { signal });
|
|
}
|
|
}),
|
|
};
|
|
export const router = {
|
|
create,
|
|
update,
|
|
remove,
|
|
list,
|
|
get,
|
|
live,
|
|
};
|