io_msgraph/v1/rest/users/mail_folders/
list.rs1use alloc::{format, string::String, vec::Vec};
6
7use io_http::rfc6750::bearer::HttpAuthBearer;
8use log::{debug, trace};
9use serde::{Deserialize, Serialize};
10use url::Url;
11
12use crate::{
13 coroutine::*,
14 msgraph_try,
15 v1::{
16 query::to_query_pairs,
17 rest::users::mail_folders::MsgraphMailFolder,
18 send::{MSGRAPH_API_BASE, MsgraphSend, MsgraphSendError, MsgraphSendOutput, user_path},
19 },
20};
21
22#[derive(Debug, Clone, Default, Deserialize, Serialize, Eq, PartialEq)]
24pub struct MsgraphMailFoldersListResponse {
25 #[serde(default)]
27 pub value: Vec<MsgraphMailFolder>,
28 #[serde(default, rename = "@odata.nextLink")]
30 pub next_link: Option<String>,
31}
32
33#[derive(Debug, Clone, Default, Serialize, Eq, PartialEq)]
35pub struct MsgraphMailFoldersListParams<'a> {
36 #[serde(rename = "$top")]
38 pub top: Option<u32>,
39 #[serde(rename = "$skip")]
41 pub skip: Option<u32>,
42 #[serde(rename = "$select")]
44 pub select: Option<&'a str>,
45 #[serde(rename = "includeHiddenFolders")]
47 pub include_hidden_folders: Option<bool>,
48}
49
50pub struct MsgraphMailFoldersList {
52 send: MsgraphSend<MsgraphMailFoldersListResponse>,
53}
54
55impl MsgraphMailFoldersList {
56 pub fn new(
59 auth: &HttpAuthBearer,
60 user_id: &str,
61 params: &MsgraphMailFoldersListParams,
62 ) -> Result<Self, MsgraphSendError> {
63 debug!("prepare microsoft graph mail folders listing");
64 trace!("params: {params:?}");
65
66 let user = user_path(user_id);
67 let mut url = Url::parse(MSGRAPH_API_BASE)?.join(&format!("{user}/mailFolders"))?;
68 url.query_pairs_mut().extend_pairs(to_query_pairs(params));
69
70 let send = MsgraphSend::get(auth, url);
71
72 Ok(Self { send })
73 }
74}
75
76impl MsgraphCoroutine for MsgraphMailFoldersList {
77 type Yield = MsgraphYield;
78 type Return = Result<MsgraphSendOutput<MsgraphMailFoldersListResponse>, MsgraphSendError>;
79
80 fn resume(&mut self, arg: Option<&[u8]>) -> MsgraphCoroutineState<Self::Yield, Self::Return> {
81 let out = msgraph_try!(&mut self.send, arg);
82 debug!("mail folders listed");
83 trace!("out: {out:?}");
84 MsgraphCoroutineState::Complete(Ok(out))
85 }
86}