M1 is functionally complete, so the roadmap now separates what is done from what is genuinely outstanding rather than leaving both in one list. Records the work that arrived after the original plan — routing hints, alarm mapping both ways, command-sourced feed URLs, the topology tests — and what was verified against real accounts rather than only in tests. Adds four gaps found while building and testing that were not previously written down: a Google endpoint needs its own login even when it shares an account and client with another; removing an endpoint leaves its vdir behind; --dry-run reports against the last pull rather than current remote state; and a TZID is emitted without an accompanying VTIMEZONE. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
7.1 KiB
7.1 KiB
Roadmap
Milestones from the implementation plan. See SPECS.md for the architecture and the sync semantics these items implement.
M0 — skeleton (done)
- Initialise jj colocated with git;
.gitignorewritten before the first build devbox.jsonpinning Rust 1.97.1, pimsync 0.5.11, jujutsu 0.44.0, radicale 3.7.8- Configuration model with referential validation, reporting every problem in one pass
calcalist doctor— pimsync presence and version series, state directory, configuration- Define the full CLI surface; unimplemented commands exit 2 rather than pretend
- SPECS.md: Rust naming conventions,
devbox run checkgate, recorded sync semantics
M1 — bidirectional sync
Functionally complete. Everything below is done except the two automated integration tests, which are listed with the remaining gaps at the end.
Core modules
state.rs— JSON sidecar, atomic temp + fsync + rename; records each aggregate's resolved target endpoint id and backend type, plus per-Google-endpoint cursorsvdir.rs— read and write vdir directories, keyed by the UID inside each file rather than by filename, since pimsync names files its own wayical.rs— surgical line-level.icsediting (UID rewrite, property injection), respecting RFC 5545 folding; no parse-and-reserializeprovenance.rs— deterministicblake3(aggregate_id, source_id, source_uid)UIDsmirror.rs— the to-aggregate and to-source transforms (added; not in the original plan, which folded these intoreconcile)reconcile.rs— the aggregation engine; pure, no I/Osync.rs— one cycle: pull, reconcile, pushretarget.rs— moving an aggregate to a different target, deliberatelypimsync.rs— generatepimsync.conf(withon_empty skipandon_delete skip), drive one-shotpimsync syncbracketing the reconcile stepgoogle/auth.rs— OAuth loopback flow with PKCE, refresh, keyring-sourced secretsgoogle/convert.rs— iCalendar both ways, including recurrence, timezones and alarmsgoogle/api.rs— incremental pull by syncToken; push by import / update / delete with notification suppressed
Behaviour
events.importgate — settled from Google's own API discovery document:events.importaccepts nosendUpdatesparameter at all, whileinsert,updateanddeleteall do, and it is documented as adding "a private copy of an existing event". Confirmed live that attendees and alarms survive an import. Creation goes throughimport; update and delete passsendUpdates=none.syncrefuses to run on aggregate target drift, before reconciliationaggregate retarget— flush unrouted creations against the old target, then re-materialise; keep old orphans by default, purge bounded by the derivation- Mass-deletion guard (
max_delete_fraction), overridable with--force, with an absolute floor so deleting a couple of events is never refused - Echo suppression: derived UIDs are never re-ingested as source events
- Routing: a
@endpoint-idline in the description, or a matching category, picks which source a new aggregate event is filed under; a hint naming an invalid sink is refused rather than redirected to the default - Alarms map both ways, including Google's minutes-before reminder model
webcalURLs may come from a command, for feeds whose address is itself a credential — Google's secret iCal address being the case in pointdoctorvalidates the generated pimsync config and each Google authorisation
Tests
reconciletable-driven cases: create/update/delete each direction, both-sides-changed, routing, echo suppression, mass-delete aborticalround-trip fixtures: recurring with overrides, all-day, TZID, unknownX-propsconvertagainst real captured API payloads, including the case where Google's offset and itstimeZonedisagree- Topologies: a source feeding several aggregates, several aggregates sharing one target, a cycle between two aggregates, a delete cascading across aggregates, and competing edits arriving through two aggregates at once
- Retarget: drift makes
syncexit non-zero having written nothing and losing no source event; an unrouted creation reaches a sink first - Safety (unit): no live
ATTENDEE/ORGANIZERon a CalDAV-targeted mirror,VALARMintact,PARTSTAT: DECLINEDmaps toTRANSP: TRANSPARENT
Verified live, end to end
Against real accounts — two Google calendars aggregating into a Posteo CalDAV calendar:
- Fan-in from both Google sources, each mirror tagged with its origin
- A public iCal feed synced through pimsync and pushed to CalDAV; idempotent across repeated runs and correctly incremental
- An edit made in the aggregate reaching the originating Google calendar, and the revert travelling the same way
- An event created in the aggregate routed to a chosen source by its description marker, with the marker stripped before it arrived
- A deletion in the aggregate propagating through to Google
- The mass-deletion guard refusing a 100% removal until
--force pimsync checkvalidating the generated config against a live CalDAV server
Remaining
Tests not yet automated
- Integration against Radicale plus a WebCal fixture, asserting convergence and idempotence. Done by hand twice; not yet a test that runs in CI.
- Safety integration: a real CalDAV server with an SMTP sink, proving no mail is emitted on mirror writes or mirror deletions.
Known gaps
- A recurring series' exceptions are not pushed to Google. Pulling them works.
Google models them as separate events against an already existing series, so
pushing needs
events.instancesplus a patch per exception. Reported per sync rather than dropped silently. - Each Google endpoint needs its own
google login, even for the same account and OAuth client, because tokens are keyed by endpoint id. Two endpoints on one account should share a credential. - A failed Google pull aborts the whole cycle, including the CalDAV side. Safe — reconciling against a stale snapshot could read as mass deletion — but a lapsed token stops everything. Skipping only the affected aggregates would be better.
- Removing an endpoint from the config leaves its vdir behind, holding events nothing manages any more.
--dry-runskips the pull entirely, so it reports against whatever the last real cycle left behind rather than against current remote state.- A
TZIDis emitted without an accompanyingVTIMEZONE. Tolerated by the servers tested so far, and confined to recurring events, but not strictly conformant.
M2 — interface and packaging
- axum configuration UI, bound to 127.0.0.1
- Trigger
google loginfrom the UI (the loopback handler itself already exists ingoogle/auth.rs) - systemd user units:
calcalist.service(oneshot) andcalcalist.timer