use alloc::format;
use io_http::rfc6750::bearer::HttpAuthBearer;
use log::{debug, trace};
use url::Url;
use crate::{
coroutine::*,
msgraph_try,
v1::{
rest::users::contacts::MsgraphContactsDeltaResponse,
send::{MSGRAPH_API_BASE, MsgraphSend, MsgraphSendError, MsgraphSendOutput, user_path},
},
};
pub struct MsgraphContactsDelta {
send: MsgraphSend<MsgraphContactsDeltaResponse>,
}
impl MsgraphContactsDelta {
pub fn new(
auth: &HttpAuthBearer,
user_id: &str,
folder: Option<&str>,
select: Option<&str>,
) -> Result<Self, MsgraphSendError> {
debug!("prepare microsoft graph contacts delta");
trace!("folder: {folder:?}");
let user = user_path(user_id);
let path = match folder {
Some(folder) => format!("{user}/contactFolders/{folder}/contacts/delta"),
None => format!("{user}/contacts/delta"),
};
let mut url = Url::parse(MSGRAPH_API_BASE)?.join(&path)?;
if let Some(select) = select {
url.query_pairs_mut().append_pair("$select", select);
}
let send = MsgraphSend::get(auth, url);
Ok(Self { send })
}
}
impl MsgraphCoroutine for MsgraphContactsDelta {
type Yield = MsgraphYield;
type Return = Result<MsgraphSendOutput<MsgraphContactsDeltaResponse>, MsgraphSendError>;
fn resume(&mut self, arg: Option<&[u8]>) -> MsgraphCoroutineState<Self::Yield, Self::Return> {
let out = msgraph_try!(&mut self.send, arg);
debug!("contacts delta page received");
trace!("out: {out:?}");
MsgraphCoroutineState::Complete(Ok(out))
}
}