use alloc::{format, string::String, vec::Vec};
use io_http::rfc6750::bearer::HttpAuthBearer;
use log::{debug, trace};
use serde::{Deserialize, Serialize};
use url::Url;
use crate::{
coroutine::*,
msgraph_try,
v1::{
rest::users::{contacts::delta::MsgraphRemoved, messages::MsgraphMessage},
send::{MSGRAPH_API_BASE, MsgraphSend, MsgraphSendError, MsgraphSendOutput, user_path},
},
};
#[derive(Debug, Clone, Default, Deserialize, Serialize, Eq, PartialEq)]
pub struct MsgraphMessagesDeltaResponse {
#[serde(default)]
pub value: Vec<MsgraphMessageDelta>,
#[serde(default, rename = "@odata.nextLink")]
pub next_link: Option<String>,
#[serde(default, rename = "@odata.deltaLink")]
pub delta_link: Option<String>,
}
#[derive(Debug, Clone, Default, Deserialize, Serialize, Eq, PartialEq)]
pub struct MsgraphMessageDelta {
#[serde(flatten)]
pub message: MsgraphMessage,
#[serde(default, rename = "@removed", skip_serializing_if = "Option::is_none")]
pub removed: Option<MsgraphRemoved>,
}
pub struct MsgraphMessagesDelta {
send: MsgraphSend<MsgraphMessagesDeltaResponse>,
}
impl MsgraphMessagesDelta {
pub fn new(
auth: &HttpAuthBearer,
user_id: &str,
folder: Option<&str>,
select: Option<&str>,
) -> Result<Self, MsgraphSendError> {
debug!("prepare microsoft graph messages delta");
trace!("folder: {folder:?}");
let user = user_path(user_id);
let path = match folder {
Some(folder) => format!("{user}/mailFolders/{folder}/messages/delta"),
None => format!("{user}/messages/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 })
}
pub fn from_link(auth: &HttpAuthBearer, link: &str) -> Result<Self, MsgraphSendError> {
debug!("prepare microsoft graph messages delta from link");
trace!("link: {link:?}");
let url = Url::parse(link)?;
let send = MsgraphSend::get(auth, url);
Ok(Self { send })
}
}
impl MsgraphCoroutine for MsgraphMessagesDelta {
type Yield = MsgraphYield;
type Return = Result<MsgraphSendOutput<MsgraphMessagesDeltaResponse>, MsgraphSendError>;
fn resume(&mut self, arg: Option<&[u8]>) -> MsgraphCoroutineState<Self::Yield, Self::Return> {
let out = msgraph_try!(&mut self.send, arg);
debug!("messages delta page received");
trace!("out: {out:?}");
MsgraphCoroutineState::Complete(Ok(out))
}
}