io-jmap 0.3.0

JMAP client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
//! Batched JMAP `CalendarEvent/query` + `CalendarEvent/get` coroutine
//! (draft-ietf-jmap-calendars-27): single HTTP request, server-side
//! `#ids` back-reference resolves the get against the query results.
//!
//! Asking the server to expand recurrences is what makes this cheaper
//! than the CalDAV equivalent: one occurrence per id over the queried
//! window, no local expander.
//!
//! # Example
//!
//! ```rust,no_run
//! use std::{
//!     io::{Read, Write},
//!     net::TcpStream,
//! };
//!
//! use io_jmap::{
//!     calendars::calendar_event::query::{
//!         JmapCalendarEventFilter, JmapCalendarEventQuery, JmapCalendarEventQueryOptions,
//!     },
//!     coroutine::{JmapCoroutine, JmapCoroutineState, JmapYield},
//!     rfc8620::session::JmapSession,
//! };
//! use secrecy::SecretString;
//!
//! // Ready stream needed (TCP-connected, TLS-negociated)
//! let mut stream = TcpStream::connect("api.example.com:443").unwrap();
//! let mut buf = [0u8; 4096];
//!
//! let session: JmapSession = serde_json::from_str(r#"{
//!     "username": "",
//!     "accounts": {},
//!     "primaryAccounts": {"urn:ietf:params:jmap:calendars": "a1"},
//!     "capabilities": {},
//!     "apiUrl": "https://api.example.com/jmap/",
//!     "downloadUrl": "",
//!     "uploadUrl": "",
//!     "eventSourceUrl": "",
//!     "state": ""
//! }"#).unwrap();
//! let auth = SecretString::from("Bearer xyz");
//! let opts = JmapCalendarEventQueryOptions {
//!     filter: Some(JmapCalendarEventFilter {
//!         after: Some("2026-08-01T00:00:00".into()),
//!         before: Some("2026-09-01T00:00:00".into()),
//!         ..Default::default()
//!     }),
//!     expand_recurrences: true,
//!     ..Default::default()
//! };
//! let mut coroutine = JmapCalendarEventQuery::new(&session, &auth, opts).unwrap();
//! let mut arg = None;
//!
//! let out = loop {
//!     match coroutine.resume(arg.take()) {
//!         JmapCoroutineState::Yielded(JmapYield::WantsWrite(bytes)) => {
//!             stream.write_all(&bytes).unwrap();
//!         }
//!         JmapCoroutineState::Yielded(JmapYield::WantsRead) => {
//!             let n = stream.read(&mut buf).unwrap();
//!             arg = Some(&buf[..n]);
//!         }
//!         JmapCoroutineState::Complete(Ok(out)) => break out,
//!         JmapCoroutineState::Complete(Err(err)) => panic!("{err}"),
//!     }
//! };
//!
//! println!("{} events", out.events.len());
//! ```

use core::fmt;

use alloc::{string::String, vec, vec::Vec};

use secrecy::SecretString;
use serde::{Deserialize, Serialize, Serializer};
use thiserror::Error;

use crate::{
    calendars::{JMAP_CALENDARS_CAPABILITY, calendar_event::JmapCalendarEvent},
    coroutine::*,
    jmap_try,
    rfc8620::{
        JMAP_CORE_CAPABILITY,
        error::JmapMethodError,
        request::{JmapBatch, JmapResultReference},
        send::*,
        session::JmapSession,
    },
};

/// Filter for `CalendarEvent/query` (draft-ietf-jmap-calendars); all
/// specified conditions must apply.
#[derive(Clone, Debug, Default, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct JmapCalendarEventFilter {
    /// Calendar id the event must be in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub in_calendar: Option<String>,
    /// The event must end after this local date-time.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub after: Option<String>,
    /// The event must start before this local date-time.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub before: Option<String>,
    /// Free-text match against any text in the event.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// Match against the event title.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// Match against the event description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Match against any location name of the event.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub location: Option<String>,
    /// Match against the name or address of a participant with the
    /// owner role.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub owner: Option<String>,
    /// Match against the name or address of any participant with the
    /// attendee role.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub attendee: Option<String>,
    /// Exact JSCalendar `uid` of the event.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub uid: Option<String>,
}

/// Sort property for `CalendarEvent/query` (draft-ietf-jmap-calendars).
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum JmapCalendarEventSortProperty {
    /// The event's start, in the query's time zone.
    Start,
    /// The JSCalendar `uid` of the event.
    Uid,
    /// The recurrence id of the occurrence, which orders the instances
    /// of a single series.
    RecurrenceId,
    /// The `created` date on the event.
    Created,
    /// The `updated` date on the event.
    Updated,
}

impl fmt::Display for JmapCalendarEventSortProperty {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(match self {
            Self::Start => "start",
            Self::Uid => "uid",
            Self::RecurrenceId => "recurrenceId",
            Self::Created => "created",
            Self::Updated => "updated",
        })
    }
}

impl Serialize for JmapCalendarEventSortProperty {
    fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
        s.collect_str(self)
    }
}

/// Sort comparator for `CalendarEvent/query` (RFC 8620 §5.5).
#[derive(Clone, Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct JmapCalendarEventSortComparator {
    /// The property to sort by.
    pub property: JmapCalendarEventSortProperty,
    /// Ascending if `None` or `Some(true)`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub is_ascending: Option<bool>,
}

/// Failure causes during a batched JMAP `CalendarEvent/query` +
/// `CalendarEvent/get` flow.
#[derive(Debug, Error)]
pub enum JmapCalendarEventQueryError {
    /// The response carried no query response.
    #[error(
        "JMAP CalendarEvent/query failed: missing CalendarEvent/query response in method_responses"
    )]
    MissingQueryResponse,
    /// The response carried no get response.
    #[error(
        "JMAP CalendarEvent/query failed: missing CalendarEvent/get response in method_responses"
    )]
    MissingGetResponse,
    /// The inner send coroutine failed.
    #[error("JMAP CalendarEvent/query failed: {0}")]
    Send(#[from] JmapSendError),
    /// The method arguments could not be serialized.
    #[error("JMAP CalendarEvent/query failed: serialize args: {0}")]
    SerializeArgs(#[source] serde_json::Error),
    /// The query response could not be parsed.
    #[error("JMAP CalendarEvent/query failed: parse CalendarEvent/query response: {0}")]
    ParseQueryResponse(#[source] serde_json::Error),
    /// The get response could not be parsed.
    #[error("JMAP CalendarEvent/query failed: parse CalendarEvent/get response: {0}")]
    ParseGetResponse(#[source] serde_json::Error),
    /// The server returned a method-level error for the query call.
    #[error("JMAP CalendarEvent/query failed: CalendarEvent/query: {0}")]
    QueryMethod(JmapMethodError),
    /// The server returned a method-level error for the get call.
    #[error("JMAP CalendarEvent/query failed: CalendarEvent/get: {0}")]
    GetMethod(JmapMethodError),
}

/// Options for [`JmapCalendarEventQuery::new`].
#[derive(Clone, Debug, Default)]
pub struct JmapCalendarEventQueryOptions {
    /// Filter criteria; `None` matches all events.
    pub filter: Option<JmapCalendarEventFilter>,
    /// Sort order; `None` uses the server default.
    pub sort: Option<Vec<JmapCalendarEventSortComparator>>,
    /// Zero-based offset into the result list.
    pub position: Option<u64>,
    /// Max number of events to return.
    pub limit: Option<u64>,
    /// Return one id per occurrence rather than one per series, which
    /// requires the filter to bound the window with `after` and
    /// `before`.
    pub expand_recurrences: bool,
    /// IANA time zone id the filter's and the returned floating times
    /// are resolved against; `None` leaves the server default
    /// (`Etc/UTC`).
    pub time_zone: Option<String>,
    /// Event properties to fetch (JSCalendar property names plus the
    /// JMAP ones); `None` returns all.
    pub properties: Option<Vec<String>>,
    /// Return only the participants the user needs to answer an
    /// invitation, i.e. themselves and the owners.
    pub reduce_participants: bool,
}

/// Successful terminal output of [`JmapCalendarEventQuery`].
#[derive(Clone, Debug)]
pub struct JmapCalendarEventQueryOutput {
    /// The fetched calendar events.
    pub events: Vec<JmapCalendarEvent>,
    /// The total number of matching objects, when the server computed
    /// it.
    pub total: Option<u64>,
    /// Zero-based index of the first returned id.
    pub position: u64,
    /// The state the query results were computed at.
    pub query_state: String,
    /// Whether the server indicated the connection can be reused.
    pub keep_alive: bool,
}

/// I/O-free coroutine for the combined `CalendarEvent/query` +
/// `CalendarEvent/get` operation.
pub struct JmapCalendarEventQuery {
    state: State,
}

impl JmapCalendarEventQuery {
    /// Prepares the method call request and builds the coroutine.
    pub fn new(
        session: &JmapSession,
        http_auth: &SecretString,
        opts: JmapCalendarEventQueryOptions,
    ) -> Result<Self, JmapCalendarEventQueryError> {
        let account_id = session
            .primary_accounts
            .get(JMAP_CALENDARS_CAPABILITY)
            .cloned()
            .unwrap_or_default();
        let api_url = &session.api_url;

        let query_args = CalendarEventQueryArgs {
            account_id: &account_id,
            filter: opts.filter.as_ref(),
            sort: opts.sort.as_deref(),
            position: opts.position,
            limit: opts.limit,
            calculate_total: true,
            expand_recurrences: opts.expand_recurrences,
            time_zone: opts.time_zone.as_deref(),
        };

        let mut batch = JmapBatch::new();
        let query_id = batch.add(
            "CalendarEvent/query",
            serde_json::to_value(&query_args)
                .map_err(JmapCalendarEventQueryError::SerializeArgs)?,
        );

        let get_args = CalendarEventGetByRefArgs {
            account_id: &account_id,
            ids_ref: JmapResultReference {
                result_of: &query_id,
                name: "CalendarEvent/query",
                path: "/ids",
            },
            properties: opts.properties.as_deref(),
            reduce_participants: opts.reduce_participants,
            time_zone: opts.time_zone.as_deref(),
        };

        batch.add(
            "CalendarEvent/get",
            serde_json::to_value(&get_args).map_err(JmapCalendarEventQueryError::SerializeArgs)?,
        );

        let request = batch.into_request(vec![
            JMAP_CORE_CAPABILITY.into(),
            JMAP_CALENDARS_CAPABILITY.into(),
        ]);

        Ok(Self {
            state: State::Send(JmapSend::new(http_auth, api_url, request)?),
        })
    }
}

impl JmapCoroutine for JmapCalendarEventQuery {
    type Yield = JmapYield;
    type Return = Result<JmapCalendarEventQueryOutput, JmapCalendarEventQueryError>;

    fn resume(&mut self, arg: Option<&[u8]>) -> JmapCoroutineState<Self::Yield, Self::Return> {
        match &mut self.state {
            State::Send(send) => {
                let JmapSendOutput {
                    response,
                    keep_alive,
                } = jmap_try!(send, arg);

                let mut responses = response.method_responses.into_iter();

                let Some((query_name, query_args, _)) = responses.next() else {
                    return JmapCoroutineState::Complete(Err(
                        JmapCalendarEventQueryError::MissingQueryResponse,
                    ));
                };

                if query_name == "error" {
                    let err = serde_json::from_value::<JmapMethodError>(query_args)
                        .unwrap_or(JmapMethodError::Unknown);
                    return JmapCoroutineState::Complete(Err(
                        JmapCalendarEventQueryError::QueryMethod(err),
                    ));
                }

                let query_response =
                    match serde_json::from_value::<CalendarEventQueryResponse>(query_args) {
                        Ok(r) => r,
                        Err(err) => {
                            return JmapCoroutineState::Complete(Err(
                                JmapCalendarEventQueryError::ParseQueryResponse(err),
                            ));
                        }
                    };

                let Some((get_name, get_args, _)) = responses.next() else {
                    return JmapCoroutineState::Complete(Err(
                        JmapCalendarEventQueryError::MissingGetResponse,
                    ));
                };

                if get_name == "error" {
                    let err = serde_json::from_value::<JmapMethodError>(get_args)
                        .unwrap_or(JmapMethodError::Unknown);
                    return JmapCoroutineState::Complete(Err(
                        JmapCalendarEventQueryError::GetMethod(err),
                    ));
                }

                match serde_json::from_value::<CalendarEventGetResponse>(get_args) {
                    Ok(r) => JmapCoroutineState::Complete(Ok(JmapCalendarEventQueryOutput {
                        events: r.list,
                        total: query_response.total,
                        position: query_response.position,
                        query_state: query_response.query_state,
                        keep_alive,
                    })),
                    Err(err) => JmapCoroutineState::Complete(Err(
                        JmapCalendarEventQueryError::ParseGetResponse(err),
                    )),
                }
            }
        }
    }
}

enum State {
    Send(JmapSend),
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct CalendarEventQueryArgs<'a> {
    account_id: &'a str,
    #[serde(skip_serializing_if = "Option::is_none")]
    filter: Option<&'a JmapCalendarEventFilter>,
    #[serde(skip_serializing_if = "Option::is_none")]
    sort: Option<&'a [JmapCalendarEventSortComparator]>,
    #[serde(skip_serializing_if = "Option::is_none")]
    position: Option<u64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    limit: Option<u64>,
    calculate_total: bool,
    #[serde(skip_serializing_if = "is_false")]
    expand_recurrences: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    time_zone: Option<&'a str>,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct CalendarEventGetByRefArgs<'a> {
    account_id: &'a str,
    #[serde(rename = "#ids")]
    ids_ref: JmapResultReference<'a>,
    #[serde(skip_serializing_if = "Option::is_none")]
    properties: Option<&'a [String]>,
    #[serde(skip_serializing_if = "is_false")]
    reduce_participants: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    time_zone: Option<&'a str>,
}

#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct CalendarEventQueryResponse {
    query_state: String,
    #[serde(default)]
    total: Option<u64>,
    #[serde(default)]
    position: u64,
}

#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct CalendarEventGetResponse {
    list: Vec<JmapCalendarEvent>,
}

fn is_false(b: &bool) -> bool {
    !b
}