Phase 3 (security): - P3.1: Feature gate server-side enforcement (403 on disabled features) - P3.2: Unified auth error interceptor (401→logout) - P3.3: Store-level state isolation via StoreSnapshot contract (added message-list-tabs + task stores to snapshot/restore cycle) - P3.4: Push event bus extraction — email-store no longer imports calendar/contact/filter/file stores directly - P1.3: Auth localStorage AES-GCM encryption via custom Zustand adapter Phase 4 (polish): - P4.1: Offline write queue — pending operations in localStorage, auto-retry on reconnect, offline-queue-indicator banner - P4.2: Identity spoofing — fromOverrideEmail domain validation - P4.3: WebSocket push for Electron via main-process IPC bridge (ws package with Authorization headers)
1349 lines
57 KiB
TypeScript
1349 lines
57 KiB
TypeScript
import { create } from 'zustand';
|
|
import { persist } from 'zustand/middleware';
|
|
import type { IJMAPClient } from '@/lib/jmap/client-interface';
|
|
import type { Calendar, CalendarEvent, CalendarParticipant, CalendarRights } from '@/lib/jmap/types';
|
|
import { debug } from '@/lib/debug';
|
|
import { normalizeAllDayDuration } from '@/lib/calendar-utils';
|
|
import { parseDuration } from '@/components/calendar/event-card';
|
|
import { sanitizeOutgoingCalendarEventData } from '@/lib/calendar-event-normalization';
|
|
import { expandRecurringEvents } from '@/lib/recurrence-expansion';
|
|
import { parseISO } from 'date-fns';
|
|
import { generateUUID } from '@/lib/utils';
|
|
import { apiFetch } from '@/lib/browser-navigation';
|
|
import { BIRTHDAY_CALENDAR_ID } from '@/lib/birthday-calendar';
|
|
import { getClientByLocalAccountId } from './client-registry';
|
|
import { enqueueOperation, isNetworkError } from '@/lib/offline-write-queue';
|
|
import { useAccountStore } from '@/stores/account-store';
|
|
|
|
/**
|
|
* When the Pro shell aggregates calendars/events from every connected
|
|
* account, the entity carries a `localAccountId` pointing back to the
|
|
* owning JMAP client. Mutations need to use *that* client - the active
|
|
* client (passed in by the page) could be on a different server entirely.
|
|
* Falls back to the active client when `localAccountId` is unset or no
|
|
* matching client is registered.
|
|
*
|
|
* Lookup goes through `client-registry` (not a direct auth-store import)
|
|
* to avoid a top-level cycle: auth-store already imports this module to
|
|
* bootstrap feature stores after login.
|
|
*/
|
|
function resolveAccountClient<T extends IJMAPClient>(active: T, localAccountId?: string): T {
|
|
if (!localAccountId) return active;
|
|
const lookup = getClientByLocalAccountId(localAccountId) as T | undefined;
|
|
return lookup ?? active;
|
|
}
|
|
|
|
/**
|
|
* Strip the local-account namespace prefix from an id (if present). Used
|
|
* before passing ids back to a JMAP client, since the prefix only exists
|
|
* to keep multi-account ids unique inside the client-side store.
|
|
*/
|
|
function stripLocalAccountPrefix(id: string, localAccountId?: string): string {
|
|
if (!localAccountId) return id;
|
|
const prefix = `${localAccountId}${CROSS_ACCOUNT_ID_DELIMITER}`;
|
|
return id.startsWith(prefix) ? id.slice(prefix.length) : id;
|
|
}
|
|
|
|
// In-flight refresh dedup. Concurrent callers (auto-interval +
|
|
// manual refresh, two account-switch reloads, etc.) share the same
|
|
// promise instead of double-fetching and racing the diff/import phase.
|
|
const refreshInFlight = new Map<string, Promise<void>>();
|
|
|
|
export type CalendarViewMode = 'month' | 'week' | 'day' | 'agenda' | 'tasks';
|
|
|
|
const CALENDAR_VIEW_MODES: CalendarViewMode[] = ['month', 'week', 'day', 'agenda', 'tasks'];
|
|
|
|
export function isCalendarViewMode(value: unknown): value is CalendarViewMode {
|
|
return typeof value === 'string' && CALENDAR_VIEW_MODES.includes(value as CalendarViewMode);
|
|
}
|
|
|
|
/**
|
|
* Prefix used to namespace calendar/event IDs that belong to a non-active
|
|
* JMAP account when the Pro shell aggregates across accounts. The active
|
|
* account's IDs are left untouched so existing single-account code paths
|
|
* (links, deep-links, JMAP mutations) keep working unchanged.
|
|
*/
|
|
const CROSS_ACCOUNT_ID_DELIMITER = '::';
|
|
|
|
function buildCrossAccountIdPrefix(localAccountId: string): string {
|
|
return `${localAccountId}${CROSS_ACCOUNT_ID_DELIMITER}`;
|
|
}
|
|
|
|
function prefixCalendarsWithLocalAccount(
|
|
calendars: Calendar[],
|
|
localAccountId: string,
|
|
isActiveAccount: boolean,
|
|
): Calendar[] {
|
|
if (isActiveAccount) {
|
|
return calendars.map((cal) => ({ ...cal, localAccountId }));
|
|
}
|
|
const prefix = buildCrossAccountIdPrefix(localAccountId);
|
|
// Preserve each calendar's original `isShared` flag - it distinguishes
|
|
// the user's own calendars on the other account from calendars shared
|
|
// *into* that account by yet another user. The sidebar uses this split
|
|
// to render "My Calendars" vs "Shared" sub-sections per account.
|
|
return calendars.map((cal) => ({
|
|
...cal,
|
|
id: `${prefix}${cal.id}`,
|
|
localAccountId,
|
|
}));
|
|
}
|
|
|
|
function prefixEventsWithLocalAccount(
|
|
events: CalendarEvent[],
|
|
localAccountId: string,
|
|
isActiveAccount: boolean,
|
|
): CalendarEvent[] {
|
|
if (isActiveAccount) {
|
|
return events.map((event) => ({ ...event, localAccountId }));
|
|
}
|
|
const prefix = buildCrossAccountIdPrefix(localAccountId);
|
|
return events.map((event) => ({
|
|
...event,
|
|
id: `${prefix}${event.id}`,
|
|
localAccountId,
|
|
calendarIds: event.calendarIds
|
|
? Object.fromEntries(
|
|
Object.entries(event.calendarIds).map(([calId, v]) => [`${prefix}${calId}`, v]),
|
|
)
|
|
: event.calendarIds,
|
|
}));
|
|
}
|
|
|
|
function mapCalendarIdsToStoreIds(
|
|
calendarIds: Record<string, boolean> | undefined,
|
|
calendars: Calendar[],
|
|
targetAccountId?: string
|
|
): Record<string, boolean> | undefined {
|
|
if (!calendarIds) {
|
|
return undefined;
|
|
}
|
|
|
|
return Object.fromEntries(
|
|
Object.entries(calendarIds).map(([calendarId, included]) => {
|
|
const matchedCalendar = calendars.find((calendar) =>
|
|
(calendar.originalId || calendar.id) === calendarId
|
|
&& (!targetAccountId || calendar.accountId === targetAccountId)
|
|
);
|
|
|
|
return [matchedCalendar?.id || calendarId, included];
|
|
})
|
|
);
|
|
}
|
|
|
|
function mapServerEventToStoreEvent(
|
|
event: CalendarEvent,
|
|
calendars: Calendar[],
|
|
targetAccountId?: string
|
|
): CalendarEvent {
|
|
const mappedCalendarIds = mapCalendarIdsToStoreIds(event.calendarIds, calendars, targetAccountId) || event.calendarIds;
|
|
const matchedCalendar = Object.keys(event.calendarIds || {})
|
|
.map((calendarId) => calendars.find((calendar) =>
|
|
(calendar.originalId || calendar.id) === calendarId
|
|
&& (!targetAccountId || calendar.accountId === targetAccountId)
|
|
))
|
|
.find((calendar): calendar is Calendar => Boolean(calendar));
|
|
const resolvedAccountId = matchedCalendar?.accountId || targetAccountId;
|
|
const isShared = matchedCalendar?.isShared || false;
|
|
|
|
return {
|
|
...event,
|
|
id: isShared && resolvedAccountId ? `${resolvedAccountId}:${event.id}` : event.id,
|
|
originalId: event.id,
|
|
originalCalendarIds: event.calendarIds,
|
|
calendarIds: mappedCalendarIds,
|
|
accountId: resolvedAccountId,
|
|
accountName: matchedCalendar?.accountName,
|
|
isShared,
|
|
};
|
|
}
|
|
|
|
function getStoreEventDebugSnapshot(event: Partial<CalendarEvent> | null | undefined): Record<string, unknown> | null {
|
|
if (!event) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
id: event.id,
|
|
originalId: event.originalId,
|
|
uid: event.uid,
|
|
title: event.title,
|
|
start: event.start,
|
|
duration: event.duration,
|
|
timeZone: event.timeZone,
|
|
showWithoutTime: event.showWithoutTime,
|
|
utcStart: event.utcStart,
|
|
utcEnd: event.utcEnd,
|
|
calendarIds: event.calendarIds,
|
|
originalCalendarIds: event.originalCalendarIds,
|
|
accountId: event.accountId,
|
|
accountName: event.accountName,
|
|
isShared: event.isShared,
|
|
created: event.created,
|
|
updated: event.updated,
|
|
};
|
|
}
|
|
|
|
export interface ICalSubscription {
|
|
id: string;
|
|
url: string;
|
|
calendarId: string;
|
|
// The JMAP account this subscription belongs to. Optional for back-
|
|
// compat with subs persisted before multi-account scoping landed -
|
|
// legacy entries with no accountId are shown only in whichever account
|
|
// the user has active (treated as floating). New subs always set it.
|
|
accountId?: string;
|
|
name: string;
|
|
color: string;
|
|
refreshInterval: number; // minutes
|
|
lastRefreshed: string | null;
|
|
}
|
|
|
|
/**
|
|
* One connected JMAP account. When the Pro shell aggregates calendars from
|
|
* every logged-in account, the page hands the calendar store a list of
|
|
* these so we can fetch + tag each account's data with its local app-store
|
|
* accountId (used to route mutations back to the right client).
|
|
*/
|
|
export interface CalendarAccountClient {
|
|
localAccountId: string;
|
|
client: IJMAPClient;
|
|
}
|
|
|
|
interface CalendarStore {
|
|
calendars: Calendar[];
|
|
events: CalendarEvent[];
|
|
selectedDate: Date;
|
|
viewMode: CalendarViewMode;
|
|
selectedCalendarIds: string[];
|
|
selectedEventId: string | null;
|
|
isLoading: boolean;
|
|
isLoadingEvents: boolean;
|
|
supportsCalendar: boolean;
|
|
error: string | null;
|
|
dateRange: { start: string; end: string } | null;
|
|
|
|
setSupported: (supported: boolean) => void;
|
|
fetchCalendars: (client: IJMAPClient) => Promise<void>;
|
|
fetchEvents: (client: IJMAPClient, start: string, end: string) => Promise<void>;
|
|
fetchAllAccountsCalendars: (accounts: CalendarAccountClient[], activeLocalAccountId: string) => Promise<void>;
|
|
fetchAllAccountsEvents: (accounts: CalendarAccountClient[], activeLocalAccountId: string, start: string, end: string) => Promise<void>;
|
|
createEvent: (client: IJMAPClient, event: Partial<CalendarEvent>, sendSchedulingMessages?: boolean) => Promise<CalendarEvent | null>;
|
|
updateEvent: (client: IJMAPClient, id: string, updates: Partial<CalendarEvent>, sendSchedulingMessages?: boolean) => Promise<void>;
|
|
deleteEvent: (client: IJMAPClient, id: string, sendSchedulingMessages?: boolean) => Promise<void>;
|
|
rsvpEvent: (client: IJMAPClient, eventId: string, participantId: string, status: string, replyTo?: Record<string, string> | null) => Promise<void>;
|
|
importEvents: (client: IJMAPClient, events: Partial<CalendarEvent>[], calendarId: string) => Promise<number>;
|
|
updateCalendar: (client: IJMAPClient, calendarId: string, updates: Partial<Calendar>) => Promise<void>;
|
|
setDefaultCalendar: (client: IJMAPClient, calendarId: string) => Promise<void>;
|
|
shareCalendar: (client: IJMAPClient, calendarId: string, principalId: string, rights: CalendarRights | null) => Promise<void>;
|
|
createCalendar: (client: IJMAPClient, calendar: Partial<Calendar>) => Promise<Calendar | null>;
|
|
removeCalendar: (client: IJMAPClient, calendarId: string) => Promise<void>;
|
|
clearCalendarEvents: (client: IJMAPClient, calendarId: string) => Promise<number>;
|
|
setSelectedDate: (date: Date) => void;
|
|
setViewMode: (mode: CalendarViewMode) => void;
|
|
toggleCalendarVisibility: (calendarId: string) => void;
|
|
setSelectedEventId: (id: string | null) => void;
|
|
clearState: () => void;
|
|
|
|
// iCal subscriptions
|
|
icalSubscriptions: ICalSubscription[];
|
|
addICalSubscription: (client: IJMAPClient, url: string, name: string, color: string, refreshInterval?: number) => Promise<ICalSubscription | null>;
|
|
updateICalSubscription: (client: IJMAPClient, subscriptionId: string, updates: { url?: string; name?: string; color?: string; refreshInterval?: number }) => Promise<void>;
|
|
removeICalSubscription: (client: IJMAPClient, subscriptionId: string) => Promise<void>;
|
|
refreshICalSubscription: (client: IJMAPClient, subscriptionId: string) => Promise<void>;
|
|
refreshAllSubscriptions: (client: IJMAPClient) => Promise<void>;
|
|
isSubscriptionCalendar: (calendarId: string) => boolean;
|
|
|
|
newEventPrefill: { title?: string; description?: string; participants?: { name?: string; email: string }[]; date?: string } | null;
|
|
setNewEventPrefill: (prefill: { title?: string; description?: string; participants?: { name?: string; email: string }[]; date?: string } | null) => void;
|
|
}
|
|
|
|
const initialState = {
|
|
calendars: [],
|
|
events: [],
|
|
selectedDate: new Date(),
|
|
selectedCalendarIds: [] as string[],
|
|
selectedEventId: null as string | null,
|
|
isLoading: false,
|
|
isLoadingEvents: false,
|
|
supportsCalendar: false,
|
|
error: null as string | null,
|
|
dateRange: null as { start: string; end: string } | null,
|
|
icalSubscriptions: [] as ICalSubscription[],
|
|
newEventPrefill: null as { title?: string; description?: string; participants?: { name?: string; email: string }[]; date?: string } | null,
|
|
};
|
|
|
|
function getSafeCalendarViewMode(value: unknown): CalendarViewMode {
|
|
return isCalendarViewMode(value) ? value : 'month';
|
|
}
|
|
|
|
export const useCalendarStore = create<CalendarStore>()(
|
|
persist(
|
|
(set, get) => ({
|
|
...initialState,
|
|
viewMode: 'month' as CalendarViewMode,
|
|
|
|
setSupported: (supported) => set({ supportsCalendar: supported }),
|
|
|
|
fetchCalendars: async (client) => {
|
|
set({ isLoading: true, error: null });
|
|
try {
|
|
const calendars = await client.getAllCalendars();
|
|
const { selectedCalendarIds } = get();
|
|
const validIds = calendars.map(c => c.id);
|
|
const stillValid = selectedCalendarIds.filter(id => validIds.includes(id) || id === BIRTHDAY_CALENDAR_ID);
|
|
set({
|
|
calendars,
|
|
isLoading: false,
|
|
selectedCalendarIds: stillValid.length > 0 ? stillValid : validIds,
|
|
});
|
|
} catch (error) {
|
|
debug.error('Failed to fetch calendars:', error);
|
|
set({ error: 'Failed to load calendars', isLoading: false });
|
|
}
|
|
},
|
|
|
|
fetchEvents: async (client, start, end) => {
|
|
set({ isLoadingEvents: true, error: null });
|
|
try {
|
|
const rawEvents = await client.queryAllCalendarEvents({
|
|
after: start,
|
|
before: end,
|
|
});
|
|
// Filter out malformed events missing required 'start' field, or
|
|
// whose start string fails to parse (would otherwise crash format()
|
|
// calls in the rendering path - #316).
|
|
const validEvents = rawEvents.filter(e =>
|
|
typeof e.start === 'string' && e.start && !isNaN(parseISO(e.start).getTime())
|
|
);
|
|
const droppedEvents = rawEvents.length - validEvents.length;
|
|
// Expand recurring events client-side (Stalwart doesn't support
|
|
// mutations on synthetic IDs from server-side expandRecurrences)
|
|
const events = expandRecurringEvents(validEvents, start, end);
|
|
debug.log('calendar', 'Calendar fetchEvents completed', {
|
|
start,
|
|
end,
|
|
rawCount: rawEvents.length,
|
|
validCount: validEvents.length,
|
|
expandedCount: events.length,
|
|
droppedEvents,
|
|
});
|
|
if (droppedEvents > 0) {
|
|
debug.warn('calendar', 'Calendar fetchEvents dropped malformed events without a start field', { droppedEvents });
|
|
}
|
|
set({ events, isLoadingEvents: false, dateRange: { start, end } });
|
|
} catch (error) {
|
|
debug.error('Failed to fetch events:', error);
|
|
set({ error: 'Failed to load events', isLoadingEvents: false });
|
|
}
|
|
},
|
|
|
|
fetchAllAccountsCalendars: async (accounts, activeLocalAccountId) => {
|
|
set({ isLoading: true, error: null });
|
|
try {
|
|
const results = await Promise.all(
|
|
accounts.map(async ({ client, localAccountId }) => {
|
|
try {
|
|
const list = await client.getAllCalendars();
|
|
return prefixCalendarsWithLocalAccount(
|
|
list,
|
|
localAccountId,
|
|
localAccountId === activeLocalAccountId,
|
|
);
|
|
} catch (error) {
|
|
debug.error(`Failed to fetch calendars for account ${localAccountId}:`, error);
|
|
return [] as Calendar[];
|
|
}
|
|
}),
|
|
);
|
|
const calendars = results.flat();
|
|
const { selectedCalendarIds } = get();
|
|
const validIds = calendars.map(c => c.id);
|
|
const stillValid = selectedCalendarIds.filter(id => validIds.includes(id) || id === BIRTHDAY_CALENDAR_ID);
|
|
set({
|
|
calendars,
|
|
isLoading: false,
|
|
selectedCalendarIds: stillValid.length > 0 ? stillValid : validIds,
|
|
});
|
|
} catch (error) {
|
|
debug.error('Failed to fetch all-account calendars:', error);
|
|
set({ error: 'Failed to load calendars', isLoading: false });
|
|
}
|
|
},
|
|
|
|
fetchAllAccountsEvents: async (accounts, activeLocalAccountId, start, end) => {
|
|
set({ isLoadingEvents: true, error: null });
|
|
try {
|
|
const results = await Promise.all(
|
|
accounts.map(async ({ client, localAccountId }) => {
|
|
try {
|
|
const raw = await client.queryAllCalendarEvents({ after: start, before: end });
|
|
const valid = raw.filter(e =>
|
|
typeof e.start === 'string' && e.start && !isNaN(parseISO(e.start).getTime())
|
|
);
|
|
const expanded = expandRecurringEvents(valid, start, end);
|
|
return prefixEventsWithLocalAccount(
|
|
expanded,
|
|
localAccountId,
|
|
localAccountId === activeLocalAccountId,
|
|
);
|
|
} catch (error) {
|
|
debug.error(`Failed to fetch events for account ${localAccountId}:`, error);
|
|
return [] as CalendarEvent[];
|
|
}
|
|
}),
|
|
);
|
|
const allEvents = results.flat();
|
|
// Deduplicate cross-account events by uid + recurrenceId
|
|
const seen = new Set<string>();
|
|
const deduped = allEvents.filter(e => {
|
|
const key = `${e.uid || e.id}::${e.recurrenceId || ''}`;
|
|
if (seen.has(key)) return false;
|
|
seen.add(key);
|
|
return true;
|
|
});
|
|
set({ events: deduped, isLoadingEvents: false, dateRange: { start, end } });
|
|
} catch (error) {
|
|
debug.error('Failed to fetch all-account events:', error);
|
|
set({ error: 'Failed to load events', isLoadingEvents: false });
|
|
}
|
|
},
|
|
|
|
createEvent: async (client, event, sendSchedulingMessages) => {
|
|
set({ error: null });
|
|
let targetAccountId: string | undefined = event.accountId;
|
|
const cleanEvent = sanitizeOutgoingCalendarEventData({ ...event });
|
|
try {
|
|
// Resolve shared calendar context from calendarIds. Also pin the
|
|
// local account from the calendar so we route through that
|
|
// server's client when in multi-account Pro mode.
|
|
let localAccountId = event.localAccountId;
|
|
if (event.calendarIds) {
|
|
const remapped: Record<string, boolean> = {};
|
|
for (const calId of Object.keys(event.calendarIds)) {
|
|
const cal = get().calendars.find(c => c.id === calId);
|
|
if (cal?.localAccountId) localAccountId = cal.localAccountId;
|
|
if (cal?.isShared && cal.originalId) {
|
|
targetAccountId = cal.accountId;
|
|
remapped[cal.originalId] = true;
|
|
} else if (cal?.originalId) {
|
|
remapped[cal.originalId] = true;
|
|
} else {
|
|
remapped[calId] = true;
|
|
}
|
|
}
|
|
cleanEvent.calendarIds = remapped;
|
|
}
|
|
client = resolveAccountClient(client, localAccountId);
|
|
if (event.originalCalendarIds) {
|
|
cleanEvent.calendarIds = event.originalCalendarIds;
|
|
}
|
|
debug.log('calendar', 'Calendar createEvent request', {
|
|
event: getStoreEventDebugSnapshot(cleanEvent),
|
|
sendSchedulingMessages,
|
|
targetAccountId,
|
|
requestedCalendarIds: event.calendarIds,
|
|
serverCalendarIds: cleanEvent.calendarIds,
|
|
currentDateRange: get().dateRange,
|
|
selectedCalendarIds: get().selectedCalendarIds,
|
|
});
|
|
const created = await client.createCalendarEvent(cleanEvent, sendSchedulingMessages, targetAccountId);
|
|
const mappedCreated = mapServerEventToStoreEvent(created, get().calendars, targetAccountId);
|
|
const selectedCalendarIds = get().selectedCalendarIds;
|
|
const createdCalendarIds = Object.keys(mappedCreated.calendarIds || {});
|
|
const isVisible = createdCalendarIds.some((calendarId) => selectedCalendarIds.includes(calendarId));
|
|
const currentDateRange = get().dateRange;
|
|
const inCurrentDateRange = currentDateRange
|
|
? mappedCreated.start >= currentDateRange.start && mappedCreated.start <= currentDateRange.end
|
|
: null;
|
|
|
|
debug.log('calendar', 'Calendar createEvent response', {
|
|
created: getStoreEventDebugSnapshot(created),
|
|
mappedCreated: getStoreEventDebugSnapshot(mappedCreated),
|
|
isVisible,
|
|
currentDateRange,
|
|
inCurrentDateRange,
|
|
});
|
|
|
|
if (!isVisible) {
|
|
debug.warn('calendar', 'Created event is hidden by current calendar filters', {
|
|
selectedCalendarIds,
|
|
createdCalendarIds,
|
|
});
|
|
}
|
|
|
|
if (inCurrentDateRange === false) {
|
|
debug.warn('calendar', 'Created event is outside the currently loaded date range', {
|
|
currentDateRange,
|
|
createdStart: mappedCreated.start,
|
|
});
|
|
}
|
|
|
|
if (mappedCreated.showWithoutTime && mappedCreated.timeZone !== null) {
|
|
debug.warn('calendar', 'Created all-day event came back with a non-null timeZone', {
|
|
timeZone: mappedCreated.timeZone,
|
|
event: getStoreEventDebugSnapshot(mappedCreated),
|
|
});
|
|
}
|
|
|
|
set((state) => ({ events: [...state.events, mappedCreated] }));
|
|
// Invitation emails are sent by the server: `sendSchedulingMessages`
|
|
// on CalendarEvent/set makes Stalwart queue the iTIP REQUEST itself.
|
|
// Sending a client-side iMIP copy here produced duplicate emails.
|
|
return mappedCreated;
|
|
} catch (error) {
|
|
debug.error('Failed to create event:', error);
|
|
if (isNetworkError(error)) {
|
|
const accountId = targetAccountId || useAccountStore.getState().activeAccountId;
|
|
if (accountId) {
|
|
enqueueOperation({ type: 'createEvent', accountId, payload: cleanEvent });
|
|
}
|
|
}
|
|
set({ error: 'Failed to create event' });
|
|
return null;
|
|
}
|
|
},
|
|
|
|
updateEvent: async (client, id, updates, sendSchedulingMessages) => {
|
|
set({ error: null });
|
|
const storeEvent = get().events.find(e => e.id === id);
|
|
const realId = storeEvent?.originalId || stripLocalAccountPrefix(id, storeEvent?.localAccountId);
|
|
const targetAccountId = storeEvent?.accountId;
|
|
const cleanUpdates = sanitizeOutgoingCalendarEventData({ ...updates });
|
|
try {
|
|
// Resolve shared event IDs and client-side expanded occurrence IDs
|
|
client = resolveAccountClient(client, storeEvent?.localAccountId);
|
|
debug.log('calendar', 'Calendar updateEvent', {
|
|
storeId: id,
|
|
realId,
|
|
uid: storeEvent?.uid,
|
|
recurrenceId: storeEvent?.recurrenceId,
|
|
targetAccountId,
|
|
updateKeys: Object.keys(updates),
|
|
});
|
|
// Remap namespaced calendarIds back to original IDs
|
|
if (cleanUpdates.calendarIds) {
|
|
const remapped: Record<string, boolean> = {};
|
|
for (const [calId, v] of Object.entries(cleanUpdates.calendarIds)) {
|
|
const cal = get().calendars.find(c => c.id === calId);
|
|
remapped[cal?.originalId || calId] = v;
|
|
}
|
|
cleanUpdates.calendarIds = remapped;
|
|
}
|
|
await client.updateCalendarEvent(realId, cleanUpdates, sendSchedulingMessages, targetAccountId);
|
|
set((state) => ({
|
|
events: state.events.map(e => {
|
|
if (e.id !== id) return e;
|
|
const merged = { ...e, ...cleanUpdates };
|
|
// When start changes, shift utcStart/utcEnd by the same delta so the
|
|
// event renders at the new position immediately (optimistic update).
|
|
if (cleanUpdates.start && e.start && e.utcStart) {
|
|
const oldStart = new Date(e.start).getTime();
|
|
const newStart = new Date(cleanUpdates.start).getTime();
|
|
const delta = newStart - oldStart;
|
|
if (delta !== 0) {
|
|
merged.utcStart = new Date(new Date(e.utcStart).getTime() + delta).toISOString();
|
|
if (e.utcEnd) {
|
|
merged.utcEnd = new Date(new Date(e.utcEnd).getTime() + delta).toISOString();
|
|
}
|
|
}
|
|
}
|
|
// When duration changes (e.g. resize), recompute utcEnd so the event
|
|
// renders with the new length immediately without waiting for refresh.
|
|
if (cleanUpdates.duration !== undefined && merged.utcStart) {
|
|
const durationMinutes = parseDuration(cleanUpdates.duration);
|
|
merged.utcEnd = new Date(
|
|
new Date(merged.utcStart).getTime() + durationMinutes * 60000,
|
|
).toISOString();
|
|
}
|
|
return merged;
|
|
}),
|
|
}));
|
|
// Update emails (iTIP REQUEST/REPLY) are sent by the server via the
|
|
// `sendSchedulingMessages` argument already passed above - a manual
|
|
// iMIP send here produced duplicate emails.
|
|
} catch (error) {
|
|
debug.error('Failed to update event:', error);
|
|
if (isNetworkError(error)) {
|
|
const accountId = targetAccountId || useAccountStore.getState().activeAccountId;
|
|
if (accountId) {
|
|
enqueueOperation({ type: 'updateEvent', accountId, payload: { id: realId, updates: cleanUpdates } });
|
|
}
|
|
}
|
|
set({ error: 'Failed to update event' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
rsvpEvent: async (client, eventId, participantId, status, replyTo) => {
|
|
set({ error: null });
|
|
// JMAP participant IDs are opaque strings - they can contain @, ., :,
|
|
// / etc. The id is RFC 6901-escaped below before being embedded in the
|
|
// patch pointer, so any character is safe; only reject empty values.
|
|
if (!participantId) {
|
|
set({ error: 'Invalid participant ID' });
|
|
throw new Error('Invalid participant ID');
|
|
}
|
|
try {
|
|
// Resolve shared event IDs and client-side expanded occurrence IDs
|
|
const storeEvent = get().events.find(e => e.id === eventId);
|
|
const realId = storeEvent?.originalId || stripLocalAccountPrefix(eventId, storeEvent?.localAccountId);
|
|
const targetAccountId = storeEvent?.accountId;
|
|
client = resolveAccountClient(client, storeEvent?.localAccountId);
|
|
// Escape per RFC 6901 (JSON Pointer): ~ → ~0, / → ~1
|
|
const escapedId = participantId.replace(/~/g, '~0').replace(/\//g, '~1');
|
|
const patchKey = `participants/${escapedId}/participationStatus`;
|
|
const patch: Record<string, unknown> = { [patchKey]: status };
|
|
// Stalwart routes the iTIP REPLY to the stored ORGANIZER
|
|
// (organizerCalendarAddress); the RFC 8984 replyTo property is retired
|
|
// in jscalendarbis and ignored. Repair events that are missing the
|
|
// organizer (e.g. imported ones), but never touch an existing one -
|
|
// attendees may not modify the ORGANIZER.
|
|
if (replyTo?.imip && storeEvent && !storeEvent.organizerCalendarAddress) {
|
|
patch.organizerCalendarAddress = replyTo.imip;
|
|
}
|
|
await client.updateCalendarEvent(
|
|
realId,
|
|
patch as unknown as Partial<CalendarEvent>,
|
|
true,
|
|
targetAccountId
|
|
);
|
|
set((state) => ({
|
|
events: state.events.map(e => {
|
|
if (e.id !== eventId || !e.participants?.[participantId]) return e;
|
|
return {
|
|
...e,
|
|
participants: {
|
|
...e.participants,
|
|
[participantId]: { ...e.participants[participantId], participationStatus: status as CalendarParticipant['participationStatus'] },
|
|
},
|
|
};
|
|
}),
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to RSVP:', error);
|
|
set({ error: 'Failed to update RSVP' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
importEvents: async (client, events, calendarId) => {
|
|
// Resolve shared calendar IDs
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realCalendarId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
|
|
// Deduplicate UIDs: Stalwart enforces UID uniqueness across all calendars.
|
|
// - Events already in the target calendar → skip (true duplicates)
|
|
// - Events in other calendars → link to target calendar via calendarIds update
|
|
// - New events → create as normal
|
|
let eventsToProcess = events;
|
|
let linked = 0;
|
|
try {
|
|
const allServerEvents = await client.getCalendarEvents(undefined, targetAccountId);
|
|
const uidToEvent = new Map<string, { id: string; calendarIds: Record<string, boolean> }>();
|
|
for (const e of allServerEvents) {
|
|
if (e.uid) {
|
|
uidToEvent.set(e.uid, {
|
|
id: (e as CalendarEvent).originalId || e.id,
|
|
calendarIds: (e as CalendarEvent).originalCalendarIds || e.calendarIds || {},
|
|
});
|
|
}
|
|
}
|
|
|
|
const newEvents: Partial<CalendarEvent>[] = [];
|
|
const eventsToLink: { eventId: string; calendarIds: Record<string, boolean> }[] = [];
|
|
|
|
for (const e of eventsToProcess) {
|
|
if (!e.uid || !uidToEvent.has(e.uid)) {
|
|
// UID doesn't exist on server - create it
|
|
newEvents.push(e);
|
|
} else {
|
|
const existing = uidToEvent.get(e.uid)!;
|
|
if (existing.calendarIds[realCalendarId]) {
|
|
// Already in target calendar - skip
|
|
continue;
|
|
}
|
|
// Exists in another calendar - link to target calendar
|
|
eventsToLink.push({
|
|
eventId: existing.id,
|
|
calendarIds: { ...existing.calendarIds, [realCalendarId]: true },
|
|
});
|
|
}
|
|
}
|
|
|
|
// Batch-link existing events to the target calendar
|
|
for (const { eventId, calendarIds } of eventsToLink) {
|
|
try {
|
|
await client.updateCalendarEvent(eventId, { calendarIds } as Partial<CalendarEvent>, undefined, targetAccountId);
|
|
linked++;
|
|
} catch (err) {
|
|
debug.warn('calendar', `Import: failed to link event ${eventId} to target calendar:`, err);
|
|
}
|
|
}
|
|
|
|
if (linked > 0) {
|
|
debug.log('calendar', `Import: linked ${linked} existing events to target calendar`);
|
|
}
|
|
const skipped = eventsToProcess.length - newEvents.length - eventsToLink.length;
|
|
if (skipped > 0) {
|
|
debug.log('calendar', `Import: skipped ${skipped} events already in target calendar`);
|
|
}
|
|
eventsToProcess = newEvents;
|
|
} catch (error) {
|
|
debug.warn('calendar', 'Could not fetch existing events for deduplication, proceeding without:', error);
|
|
}
|
|
|
|
// Prepare all events for batch creation
|
|
const prepared: Partial<CalendarEvent>[] = [];
|
|
for (const event of eventsToProcess) {
|
|
const src = sanitizeOutgoingCalendarEventData(event as Partial<CalendarEvent>);
|
|
let cleanParticipants: Record<string, CalendarParticipant> | null = null;
|
|
if (src.participants) {
|
|
cleanParticipants = {};
|
|
for (const [key, p] of Object.entries(src.participants)) {
|
|
const participant: Record<string, unknown> = {
|
|
'@type': 'Participant',
|
|
name: p.name,
|
|
email: p.email,
|
|
// calendarAddress carries the scheduling address in jscalendarbis
|
|
// (Stalwart); sendTo is retired there, so it only serves as a
|
|
// fallback source for events parsed from legacy RFC 8984 data.
|
|
calendarAddress: p.calendarAddress || p.sendTo?.imip,
|
|
description: p.description,
|
|
kind: p.kind,
|
|
roles: p.roles,
|
|
participationStatus: p.participationStatus,
|
|
participationComment: p.participationComment,
|
|
expectReply: p.expectReply,
|
|
scheduleAgent: p.scheduleAgent,
|
|
scheduleForceSend: p.scheduleForceSend,
|
|
scheduleId: p.scheduleId,
|
|
delegatedTo: p.delegatedTo,
|
|
delegatedFrom: p.delegatedFrom,
|
|
memberOf: p.memberOf,
|
|
locationId: p.locationId,
|
|
language: p.language,
|
|
links: p.links,
|
|
};
|
|
Object.keys(participant).forEach(k => {
|
|
if (participant[k] === undefined || participant[k] === null) delete participant[k];
|
|
});
|
|
cleanParticipants[key] = participant as unknown as CalendarParticipant;
|
|
}
|
|
}
|
|
|
|
const data: Partial<CalendarEvent> = {
|
|
calendarIds: { [realCalendarId]: true },
|
|
uid: src.uid,
|
|
title: src.title,
|
|
description: src.description,
|
|
descriptionContentType: src.descriptionContentType,
|
|
start: src.start,
|
|
duration: src.showWithoutTime ? normalizeAllDayDuration(src.duration) : src.duration,
|
|
timeZone: src.showWithoutTime ? null : src.timeZone,
|
|
showWithoutTime: src.showWithoutTime,
|
|
status: src.status,
|
|
freeBusyStatus: src.freeBusyStatus,
|
|
privacy: src.privacy,
|
|
color: src.color,
|
|
keywords: src.keywords,
|
|
categories: src.categories,
|
|
locale: src.locale,
|
|
// Stalwart derives the iCalendar ORGANIZER solely from
|
|
// organizerCalendarAddress (replyTo is retired in jscalendarbis);
|
|
// dropping it here would strip the ORGANIZER from imported invites
|
|
// and break RSVP replies afterwards.
|
|
organizerCalendarAddress: src.organizerCalendarAddress || src.replyTo?.imip,
|
|
locations: src.locations,
|
|
virtualLocations: src.virtualLocations,
|
|
links: src.links,
|
|
recurrenceRules: src.recurrenceRules,
|
|
recurrenceOverrides: src.recurrenceOverrides,
|
|
excludedRecurrenceRules: src.excludedRecurrenceRules,
|
|
alerts: src.alerts,
|
|
participants: cleanParticipants,
|
|
};
|
|
Object.keys(data).forEach(k => {
|
|
const v = (data as Record<string, unknown>)[k];
|
|
if (v === undefined || v === null) delete (data as Record<string, unknown>)[k];
|
|
});
|
|
prepared.push(data);
|
|
}
|
|
|
|
if (prepared.length === 0) return linked;
|
|
|
|
// Batch create in chunks of 50 to avoid oversized requests
|
|
const BATCH_SIZE = 50;
|
|
let imported = 0;
|
|
for (let i = 0; i < prepared.length; i += BATCH_SIZE) {
|
|
const batch = prepared.slice(i, i + BATCH_SIZE);
|
|
try {
|
|
const { created, failed } = await client.batchCreateCalendarEvents(batch, targetAccountId);
|
|
imported += created.length;
|
|
if (failed.length > 0) {
|
|
debug.warn('calendar', `Import batch ${i / BATCH_SIZE + 1}: ${failed.length} events failed`);
|
|
}
|
|
} catch (error) {
|
|
debug.error(`Import batch ${i / BATCH_SIZE + 1} failed:`, error);
|
|
}
|
|
}
|
|
|
|
// Re-fetch all events properly so the store state is consistent
|
|
// (with recurrence expansion, multi-account mapping, etc.)
|
|
const { dateRange } = get();
|
|
if (dateRange) {
|
|
await get().fetchEvents(client, dateRange.start, dateRange.end);
|
|
}
|
|
|
|
return imported + linked;
|
|
},
|
|
|
|
deleteEvent: async (client, id, sendSchedulingMessages) => {
|
|
set({ error: null });
|
|
const storeEvent = get().events.find(e => e.id === id);
|
|
const realId = storeEvent?.originalId || stripLocalAccountPrefix(id, storeEvent?.localAccountId);
|
|
const targetAccountId = storeEvent?.accountId;
|
|
try {
|
|
// Resolve shared event IDs and client-side expanded occurrence IDs
|
|
client = resolveAccountClient(client, storeEvent?.localAccountId);
|
|
// Cancellation emails (iTIP CANCEL) are sent by the server via the
|
|
// `sendSchedulingMessages` argument on the destroy below - a manual
|
|
// iMIP send here produced duplicate emails.
|
|
debug.log('calendar', 'Calendar deleteEvent', {
|
|
storeId: id,
|
|
realId,
|
|
uid: storeEvent?.uid,
|
|
recurrenceId: storeEvent?.recurrenceId,
|
|
targetAccountId,
|
|
});
|
|
await client.deleteCalendarEvent(realId, sendSchedulingMessages, targetAccountId);
|
|
set((state) => ({
|
|
events: state.events.filter(e => e.id !== id),
|
|
selectedEventId: state.selectedEventId === id ? null : state.selectedEventId,
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to delete event:', error);
|
|
if (isNetworkError(error)) {
|
|
const accountId = targetAccountId || useAccountStore.getState().activeAccountId;
|
|
if (accountId) {
|
|
enqueueOperation({ type: 'deleteEvent', accountId, payload: realId });
|
|
}
|
|
}
|
|
set({ error: 'Failed to delete event' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
setSelectedDate: (date) => set({ selectedDate: date }),
|
|
setViewMode: (mode) => set({ viewMode: getSafeCalendarViewMode(mode) }),
|
|
|
|
updateCalendar: async (client, calendarId, updates) => {
|
|
set({ error: null });
|
|
try {
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
await client.updateCalendar(realId, updates, targetAccountId);
|
|
set((state) => ({
|
|
calendars: state.calendars.map(c =>
|
|
c.id === calendarId ? { ...c, ...updates } : c
|
|
),
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to update calendar:', error);
|
|
set({ error: 'Failed to update calendar' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
setDefaultCalendar: async (client, calendarId) => {
|
|
set({ error: null });
|
|
try {
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
await client.setDefaultCalendar(realId, targetAccountId);
|
|
set((state) => ({
|
|
calendars: state.calendars.map(c => {
|
|
if (c.id === calendarId) return { ...c, isDefault: true };
|
|
// Only one default per account - clear the flag on siblings of
|
|
// the same local account / shared-account scope.
|
|
if (
|
|
c.isDefault
|
|
&& (c.localAccountId ?? null) === (cal?.localAccountId ?? null)
|
|
&& (c.accountId ?? null) === (cal?.accountId ?? null)
|
|
) {
|
|
return { ...c, isDefault: false };
|
|
}
|
|
return c;
|
|
}),
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to set default calendar:', error);
|
|
set({ error: 'Failed to set default calendar' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
shareCalendar: async (client, calendarId, principalId, rights) => {
|
|
set({ error: null });
|
|
try {
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
await client.setCalendarShare(realId, principalId, rights, targetAccountId);
|
|
set((state) => ({
|
|
calendars: state.calendars.map(c => {
|
|
if (c.id !== calendarId) return c;
|
|
const next = { ...(c.shareWith ?? {}) };
|
|
if (rights === null) delete next[principalId];
|
|
else next[principalId] = rights;
|
|
return { ...c, shareWith: next };
|
|
}),
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to share calendar:', error);
|
|
set({ error: 'Failed to share calendar' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
createCalendar: async (client, calendar) => {
|
|
set({ error: null });
|
|
try {
|
|
const created = await client.createCalendar(calendar);
|
|
set((state) => ({
|
|
calendars: [...state.calendars, created],
|
|
selectedCalendarIds: [...state.selectedCalendarIds, created.id],
|
|
}));
|
|
return created;
|
|
} catch (error) {
|
|
debug.error('Failed to create calendar:', error);
|
|
set({ error: 'Failed to create calendar' });
|
|
return null;
|
|
}
|
|
},
|
|
|
|
removeCalendar: async (client, calendarId) => {
|
|
set({ error: null });
|
|
try {
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
await client.deleteCalendar(realId, targetAccountId);
|
|
set((state) => ({
|
|
calendars: state.calendars.filter(c => c.id !== calendarId),
|
|
selectedCalendarIds: state.selectedCalendarIds.filter(id => id !== calendarId),
|
|
events: state.events.filter(e => !e.calendarIds?.[calendarId]),
|
|
}));
|
|
} catch (error) {
|
|
debug.error('Failed to delete calendar:', error);
|
|
set({ error: 'Failed to delete calendar' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
clearCalendarEvents: async (client, calendarId) => {
|
|
set({ error: null });
|
|
try {
|
|
const cal = get().calendars.find(c => c.id === calendarId);
|
|
const realCalId = cal?.originalId || stripLocalAccountPrefix(calendarId, cal?.localAccountId);
|
|
const targetAccountId = cal?.accountId;
|
|
client = resolveAccountClient(client, cal?.localAccountId);
|
|
let totalRemoved = 0;
|
|
// Loop to handle pagination (getCalendarEvents has a 1000 limit)
|
|
let hasMore = true;
|
|
while (hasMore) {
|
|
// Query all events and filter client-side by calendarId
|
|
// to avoid relying on server-side inCalendars filter support
|
|
const allEvents = await client.getCalendarEvents(undefined, targetAccountId);
|
|
const calendarEvents = allEvents.filter(e => e.calendarIds?.[realCalId]);
|
|
if (calendarEvents.length === 0) break;
|
|
|
|
// Separate events that live ONLY in this calendar (delete) from
|
|
// events also linked to other calendars (unlink only - don't
|
|
// cascade-delete the user's copy elsewhere).
|
|
const idsToDelete: string[] = [];
|
|
const eventsToUnlink: Array<{ id: string; calendarIds: Record<string, boolean> }> = [];
|
|
for (const e of calendarEvents) {
|
|
const otherCalIds = { ...(e.calendarIds || {}) };
|
|
delete otherCalIds[realCalId];
|
|
if (Object.keys(otherCalIds).length === 0) {
|
|
idsToDelete.push(e.id);
|
|
} else {
|
|
eventsToUnlink.push({ id: e.id, calendarIds: otherCalIds });
|
|
}
|
|
}
|
|
|
|
let removedThisPass = 0;
|
|
if (idsToDelete.length > 0) {
|
|
const { destroyed } = await client.batchDeleteCalendarEvents(idsToDelete, targetAccountId);
|
|
removedThisPass += destroyed.length;
|
|
}
|
|
for (const { id, calendarIds } of eventsToUnlink) {
|
|
try {
|
|
await client.updateCalendarEvent(id, { calendarIds } as Partial<CalendarEvent>, undefined, targetAccountId);
|
|
removedThisPass++;
|
|
} catch (err) {
|
|
debug.warn('calendar', 'Failed to unlink event from cleared calendar:', err);
|
|
}
|
|
}
|
|
totalRemoved += removedThisPass;
|
|
|
|
// If we couldn't remove anything, stop to avoid infinite loop
|
|
if (removedThisPass === 0) {
|
|
debug.warn('calendar', 'Could not clear any events, stopping. Remaining:', calendarEvents.length);
|
|
break;
|
|
}
|
|
|
|
// If we got fewer than the limit, we've fetched everything
|
|
if (allEvents.length < 1000) hasMore = false;
|
|
}
|
|
|
|
set((state) => ({
|
|
events: state.events.filter(e => !e.calendarIds?.[calendarId]),
|
|
}));
|
|
return totalRemoved;
|
|
} catch (error) {
|
|
debug.error('Failed to clear calendar events:', error);
|
|
set({ error: 'Failed to clear calendar events' });
|
|
throw error;
|
|
}
|
|
},
|
|
|
|
toggleCalendarVisibility: (calendarId) => set((state) => {
|
|
const ids = state.selectedCalendarIds;
|
|
return {
|
|
selectedCalendarIds: ids.includes(calendarId)
|
|
? ids.filter(id => id !== calendarId)
|
|
: [...ids, calendarId],
|
|
};
|
|
}),
|
|
|
|
setSelectedEventId: (id) => set({ selectedEventId: id }),
|
|
|
|
// iCal subscriptions
|
|
isSubscriptionCalendar: (calendarId) => {
|
|
return get().icalSubscriptions.some(s => s.calendarId === calendarId);
|
|
},
|
|
|
|
setNewEventPrefill: (prefill) => set({ newEventPrefill: prefill }),
|
|
|
|
addICalSubscription: async (client, url, name, color, refreshInterval = 60) => {
|
|
// Normalize webcal(s):// → https:// so the server-side fetcher
|
|
// (which only accepts http/https) doesn't reject every refresh.
|
|
const normalizedUrl = url.replace(/^webcals?:\/\//i, 'https://');
|
|
|
|
let calendar: Calendar | null = null;
|
|
try {
|
|
calendar = await client.createCalendar({
|
|
name,
|
|
color,
|
|
isVisible: true,
|
|
isSubscribed: true,
|
|
});
|
|
if (!calendar) throw new Error('Failed to create calendar');
|
|
|
|
const subscription: ICalSubscription = {
|
|
id: generateUUID(),
|
|
url: normalizedUrl,
|
|
calendarId: calendar.id,
|
|
accountId: client.getAccountId(),
|
|
name,
|
|
color,
|
|
refreshInterval,
|
|
lastRefreshed: null,
|
|
};
|
|
|
|
set((state) => ({
|
|
calendars: [...state.calendars, calendar!],
|
|
selectedCalendarIds: [...state.selectedCalendarIds, calendar!.id],
|
|
icalSubscriptions: [...state.icalSubscriptions, subscription],
|
|
}));
|
|
|
|
// Initial fetch - roll back the calendar create if it fails so we
|
|
// don't leave a phantom calendar around after a bad URL / 404 / etc.
|
|
await get().refreshICalSubscription(client, subscription.id);
|
|
|
|
return subscription;
|
|
} catch (error) {
|
|
debug.error('Failed to add iCal subscription:', error);
|
|
if (calendar) {
|
|
const calendarId = calendar.id;
|
|
try {
|
|
await client.deleteCalendar(calendarId);
|
|
} catch (rollbackErr) {
|
|
debug.warn('calendar', 'Rollback failed for subscription calendar:', rollbackErr);
|
|
}
|
|
set((state) => ({
|
|
calendars: state.calendars.filter(c => c.id !== calendarId),
|
|
selectedCalendarIds: state.selectedCalendarIds.filter(id => id !== calendarId),
|
|
icalSubscriptions: state.icalSubscriptions.filter(s => s.calendarId !== calendarId),
|
|
events: state.events.filter(e => !e.calendarIds?.[calendarId]),
|
|
}));
|
|
}
|
|
return null;
|
|
}
|
|
},
|
|
|
|
updateICalSubscription: async (client, subscriptionId, updates) => {
|
|
const sub = get().icalSubscriptions.find(s => s.id === subscriptionId);
|
|
if (!sub) return;
|
|
|
|
// Normalize webcal(s):// in the new URL so refreshes don't break.
|
|
const normalizedUpdates: typeof updates = updates.url
|
|
? { ...updates, url: updates.url.replace(/^webcals?:\/\//i, 'https://') }
|
|
: updates;
|
|
|
|
// Update the calendar on the server if name or color changed
|
|
if (normalizedUpdates.name || normalizedUpdates.color) {
|
|
const calUpdates: Record<string, unknown> = {};
|
|
if (normalizedUpdates.name) calUpdates.name = normalizedUpdates.name;
|
|
if (normalizedUpdates.color) calUpdates.color = normalizedUpdates.color;
|
|
await client.updateCalendar(sub.calendarId, calUpdates);
|
|
}
|
|
|
|
// Update local subscription record
|
|
const updated = { ...sub, ...normalizedUpdates };
|
|
set((state) => ({
|
|
icalSubscriptions: state.icalSubscriptions.map(s => s.id === subscriptionId ? updated : s),
|
|
calendars: state.calendars.map(c => {
|
|
if (c.id !== sub.calendarId) return c;
|
|
return {
|
|
...c,
|
|
...(normalizedUpdates.name ? { name: normalizedUpdates.name } : {}),
|
|
...(normalizedUpdates.color ? { color: normalizedUpdates.color } : {}),
|
|
};
|
|
}),
|
|
}));
|
|
|
|
// If URL changed, refresh to fetch events from new source
|
|
if (normalizedUpdates.url && normalizedUpdates.url !== sub.url) {
|
|
await get().refreshICalSubscription(client, subscriptionId);
|
|
}
|
|
},
|
|
|
|
removeICalSubscription: async (client, subscriptionId) => {
|
|
const sub = get().icalSubscriptions.find(s => s.id === subscriptionId);
|
|
if (!sub) return;
|
|
|
|
try {
|
|
await client.deleteCalendar(sub.calendarId);
|
|
} catch (error) {
|
|
debug.error('Failed to delete subscription calendar:', error);
|
|
// Continue removing subscription record even if calendar delete fails
|
|
}
|
|
|
|
set((state) => ({
|
|
icalSubscriptions: state.icalSubscriptions.filter(s => s.id !== subscriptionId),
|
|
calendars: state.calendars.filter(c => c.id !== sub.calendarId),
|
|
selectedCalendarIds: state.selectedCalendarIds.filter(id => id !== sub.calendarId),
|
|
events: state.events.filter(e => !e.calendarIds?.[sub.calendarId]),
|
|
}));
|
|
},
|
|
|
|
refreshICalSubscription: async (client, subscriptionId) => {
|
|
const existing = refreshInFlight.get(subscriptionId);
|
|
if (existing) return existing;
|
|
|
|
const sub = get().icalSubscriptions.find(s => s.id === subscriptionId);
|
|
if (!sub) return;
|
|
|
|
// Skip if the subscription is scoped to a different JMAP account
|
|
// than the one this client is talking to - otherwise we'd create
|
|
// events in the wrong account / against a missing calendar.
|
|
if (sub.accountId && sub.accountId !== client.getAccountId()) {
|
|
debug.warn('calendar', 'Skipping subscription refresh: account mismatch', { sub: sub.name });
|
|
return;
|
|
}
|
|
|
|
const work = (async () => {
|
|
const response = await apiFetch('/api/fetch-ical', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ url: sub.url }),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
const data = await response.json().catch(() => ({}));
|
|
throw new Error(data.error || 'Failed to fetch calendar');
|
|
}
|
|
|
|
const blob = await response.blob();
|
|
const file = new File([blob], 'subscription.ics', { type: 'text/calendar' });
|
|
const uploaded = await client.uploadBlob(file);
|
|
const accountId = client.getCalendarsAccountId();
|
|
const parsedEvents = await client.parseCalendarEvents(accountId, uploaded.blobId);
|
|
|
|
// Fetch ALL server-side events and filter client-side for this calendar
|
|
// (avoids relying on server-side inCalendars filter support)
|
|
const allServerEvents = await client.getCalendarEvents();
|
|
const serverEvents = allServerEvents.filter(e => e.calendarIds?.[sub.calendarId]);
|
|
|
|
// Build a map of incoming UIDs for diffing
|
|
const incomingUids = new Set(parsedEvents.map(e => e.uid).filter(Boolean));
|
|
|
|
// Build a map of existing UIDs on server
|
|
const existingByUid = new Map<string, CalendarEvent[]>();
|
|
for (const e of serverEvents) {
|
|
if (e.uid) {
|
|
const list = existingByUid.get(e.uid) || [];
|
|
list.push(e);
|
|
existingByUid.set(e.uid, list);
|
|
}
|
|
}
|
|
|
|
// Events no longer in the feed. If an event lives only in the
|
|
// subscription calendar, delete it. If it is also linked to other
|
|
// calendars (importEvents links by UID), only unlink the
|
|
// subscription calendar so we don't cascade-delete the user's
|
|
// personal copy.
|
|
const staleEvents = serverEvents.filter(e => !e.uid || !incomingUids.has(e.uid));
|
|
const idsToDelete: string[] = [];
|
|
const eventsToUnlink: Array<{ id: string; calendarIds: Record<string, boolean> }> = [];
|
|
for (const e of staleEvents) {
|
|
const otherCalIds = { ...(e.calendarIds || {}) };
|
|
delete otherCalIds[sub.calendarId];
|
|
if (Object.keys(otherCalIds).length === 0) {
|
|
idsToDelete.push(e.id);
|
|
} else {
|
|
eventsToUnlink.push({ id: e.id, calendarIds: otherCalIds });
|
|
}
|
|
}
|
|
if (idsToDelete.length > 0) {
|
|
await client.batchDeleteCalendarEvents(idsToDelete);
|
|
}
|
|
for (const { id, calendarIds } of eventsToUnlink) {
|
|
try {
|
|
await client.updateCalendarEvent(id, { calendarIds } as Partial<CalendarEvent>);
|
|
} catch (err) {
|
|
debug.warn('calendar', 'Failed to unlink stale event from subscription calendar:', err);
|
|
}
|
|
}
|
|
|
|
// Import only events that don't already exist on server
|
|
const eventsToImport = parsedEvents.filter(e => !e.uid || !existingByUid.has(e.uid));
|
|
|
|
// Import new events (importEvents will re-fetch all events at the end)
|
|
if (eventsToImport.length > 0) {
|
|
await get().importEvents(client, eventsToImport, sub.calendarId);
|
|
} else {
|
|
// No new events to import, but stale ones may have been deleted
|
|
// Re-fetch to reflect deletions
|
|
const { dateRange } = get();
|
|
if (dateRange) {
|
|
await get().fetchEvents(client, dateRange.start, dateRange.end);
|
|
}
|
|
}
|
|
|
|
// Update last refreshed timestamp
|
|
set((state) => ({
|
|
icalSubscriptions: state.icalSubscriptions.map(s =>
|
|
s.id === subscriptionId ? { ...s, lastRefreshed: new Date().toISOString() } : s
|
|
),
|
|
}));
|
|
})();
|
|
|
|
refreshInFlight.set(subscriptionId, work);
|
|
try {
|
|
await work;
|
|
} catch (error) {
|
|
debug.error('Failed to refresh iCal subscription:', sub.name, error);
|
|
throw error;
|
|
} finally {
|
|
refreshInFlight.delete(subscriptionId);
|
|
}
|
|
},
|
|
|
|
refreshAllSubscriptions: async (client) => {
|
|
const { icalSubscriptions } = get();
|
|
const currentAccountId = client.getAccountId();
|
|
const now = Date.now();
|
|
|
|
for (const sub of icalSubscriptions) {
|
|
// Only refresh subs for the current account (or legacy untagged
|
|
// subs, which are treated as belonging to whichever account the
|
|
// user has active).
|
|
if (sub.accountId && sub.accountId !== currentAccountId) continue;
|
|
|
|
const lastRefreshed = sub.lastRefreshed ? new Date(sub.lastRefreshed).getTime() : 0;
|
|
const intervalMs = sub.refreshInterval * 60 * 1000;
|
|
|
|
if (now - lastRefreshed >= intervalMs) {
|
|
try {
|
|
await get().refreshICalSubscription(client, sub.id);
|
|
} catch {
|
|
debug.warn('calendar', 'Failed to refresh subscription:', sub.name);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
clearState: () => {
|
|
// Preserve iCal subscriptions across the account-switch teardown.
|
|
// They're now scoped per-account via sub.accountId - wiping them
|
|
// here would lose them from localStorage on every switch.
|
|
const preservedSubs = get().icalSubscriptions;
|
|
set({
|
|
...initialState,
|
|
selectedDate: new Date(),
|
|
icalSubscriptions: preservedSubs,
|
|
});
|
|
import('./calendar-notification-store').then(({ useCalendarNotificationStore }) => {
|
|
useCalendarNotificationStore.getState().clearAll();
|
|
}).catch(() => {});
|
|
},
|
|
}),
|
|
{
|
|
name: 'calendar-storage',
|
|
merge: (persistedState, currentState) => {
|
|
const mergedState = {
|
|
...currentState,
|
|
...(persistedState as Partial<CalendarStore> | undefined),
|
|
};
|
|
|
|
return {
|
|
...mergedState,
|
|
selectedDate: new Date(),
|
|
viewMode: getSafeCalendarViewMode(mergedState.viewMode),
|
|
};
|
|
},
|
|
partialize: (state) => ({
|
|
selectedCalendarIds: state.selectedCalendarIds,
|
|
viewMode: state.viewMode,
|
|
icalSubscriptions: state.icalSubscriptions,
|
|
}),
|
|
}
|
|
)
|
|
);
|
|
|
|
import { registerPushHandler } from '@/lib/push-event-bus';
|
|
|
|
registerPushHandler('Calendar', async (client) => {
|
|
const store = useCalendarStore.getState();
|
|
if (store.supportsCalendar) {
|
|
store.fetchCalendars(client);
|
|
}
|
|
});
|
|
|
|
registerPushHandler('CalendarEvent', async (client) => {
|
|
const store = useCalendarStore.getState();
|
|
if (store.supportsCalendar) {
|
|
const { dateRange, selectedCalendarIds } = store;
|
|
if (dateRange && selectedCalendarIds.length > 0) {
|
|
store.fetchEvents(client, dateRange.start, dateRange.end);
|
|
}
|
|
const { useTaskStore } = await import('./task-store');
|
|
const taskStore = useTaskStore.getState();
|
|
if (taskStore.tasks.length > 0 || store.viewMode === 'tasks') {
|
|
taskStore.fetchTasks(client);
|
|
}
|
|
}
|
|
});
|