- Public/private: toggle is_public via PUT /calendars/{id}; generate/clear
public_token and return ical_url when public
- Public feed: GET /cal/{token}/feed.ics (no auth) for subscription in
Google/Apple/Outlook calendars
- Full iCal export: use golang-ical; VALARM, ATTENDEE, all-day (VALUE=DATE),
RRULE, DTSTAMP, CREATED, LAST-MODIFIED
- Full iCal import: parse TZID, VALUE=DATE, VALARM, ATTENDEE, RRULE
- Import from URL: POST /calendars/import-url with calendar_id + url
- Migration: unique index on public_token, calendar_subscriptions table
- Config: BASE_URL for ical_url; Calendar model + API: ical_url field
- Docs: OpenAPI, llms.txt, README, SKILL.md, about/overview
Made-with: Cursor
44 lines
1.6 KiB
SQL
44 lines
1.6 KiB
SQL
-- name: CreateCalendar :one
|
|
INSERT INTO calendars (id, owner_id, name, color, is_public)
|
|
VALUES ($1, $2, $3, $4, $5)
|
|
RETURNING id, owner_id, name, color, is_public, public_token, created_at, updated_at;
|
|
|
|
-- name: GetCalendarByID :one
|
|
SELECT id, owner_id, name, color, is_public, public_token, created_at, updated_at
|
|
FROM calendars
|
|
WHERE id = $1 AND deleted_at IS NULL;
|
|
|
|
-- name: ListCalendarsByUser :many
|
|
SELECT c.id, c.owner_id, c.name, c.color, c.is_public, c.created_at, c.updated_at, cm.role
|
|
FROM calendars c
|
|
JOIN calendar_members cm ON cm.calendar_id = c.id
|
|
WHERE cm.user_id = $1 AND c.deleted_at IS NULL
|
|
ORDER BY c.created_at ASC;
|
|
|
|
-- name: UpdateCalendar :one
|
|
UPDATE calendars
|
|
SET name = COALESCE(sqlc.narg('name')::TEXT, name),
|
|
color = COALESCE(sqlc.narg('color')::TEXT, color),
|
|
is_public = COALESCE(sqlc.narg('is_public')::BOOLEAN, is_public),
|
|
updated_at = now()
|
|
WHERE id = @id AND deleted_at IS NULL
|
|
RETURNING id, owner_id, name, color, is_public, public_token, created_at, updated_at;
|
|
|
|
-- name: SoftDeleteCalendar :exec
|
|
UPDATE calendars SET deleted_at = now(), updated_at = now()
|
|
WHERE id = $1 AND deleted_at IS NULL;
|
|
|
|
-- name: SoftDeleteCalendarsByOwner :exec
|
|
UPDATE calendars SET deleted_at = now(), updated_at = now()
|
|
WHERE owner_id = $1 AND deleted_at IS NULL;
|
|
|
|
-- name: GetCalendarByPublicToken :one
|
|
SELECT id, owner_id, name, color, is_public, public_token, created_at, updated_at
|
|
FROM calendars
|
|
WHERE public_token = $1 AND is_public = true AND deleted_at IS NULL;
|
|
|
|
-- name: SetCalendarPublicToken :exec
|
|
UPDATE calendars
|
|
SET public_token = $2, updated_at = now()
|
|
WHERE id = $1 AND deleted_at IS NULL;
|