io-msgraph 0.2.0

Microsoft Graph API client library for Rust
Documentation
//! List the child folders of a Microsoft Graph mail folder
//! (`GET /me/mailFolders/{id}/childFolders`).
//!
//! <https://learn.microsoft.com/en-us/graph/api/mailfolder-list-childfolders>

use alloc::format;

use io_http::rfc6750::bearer::HttpAuthBearer;
use log::{debug, trace};
use url::Url;

use crate::{
    coroutine::*,
    msgraph_try,
    v1::{
        query::to_query_pairs,
        rest::users::mail_folders::list::{
            MsgraphMailFoldersListParams, MsgraphMailFoldersListResponse,
        },
        send::{MSGRAPH_API_BASE, MsgraphSend, MsgraphSendError, MsgraphSendOutput, user_path},
    },
};

/// Lists the child folders of a Microsoft Graph mail folder.
pub struct MsgraphMailChildFoldersList {
    send: MsgraphSend<MsgraphMailFoldersListResponse>,
}

impl MsgraphMailChildFoldersList {
    /// Lists the child folders of the mail folder `id`, filtered by
    /// the OData `params`.
    pub fn new(
        auth: &HttpAuthBearer,
        user_id: &str,
        id: &str,
        params: &MsgraphMailFoldersListParams,
    ) -> Result<Self, MsgraphSendError> {
        debug!("prepare microsoft graph child folders listing");
        trace!("id: {id:?}");
        trace!("params: {params:?}");

        let user = user_path(user_id);
        let mut url =
            Url::parse(MSGRAPH_API_BASE)?.join(&format!("{user}/mailFolders/{id}/childFolders"))?;
        url.query_pairs_mut().extend_pairs(to_query_pairs(params));

        let send = MsgraphSend::get(auth, url);

        Ok(Self { send })
    }
}

impl MsgraphCoroutine for MsgraphMailChildFoldersList {
    type Yield = MsgraphYield;
    type Return = Result<MsgraphSendOutput<MsgraphMailFoldersListResponse>, MsgraphSendError>;

    fn resume(&mut self, arg: Option<&[u8]>) -> MsgraphCoroutineState<Self::Yield, Self::Return> {
        let out = msgraph_try!(&mut self.send, arg);
        debug!("child folders listed");
        trace!("out: {out:?}");
        MsgraphCoroutineState::Complete(Ok(out))
    }
}