2022-06-20 16:09:20 +00:00
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
use anyhow::{Result, Error, anyhow};
|
2022-06-20 16:09:20 +00:00
|
|
|
use boitalettres::proto::Response;
|
|
|
|
use imap_codec::types::command::CommandBody;
|
|
|
|
use imap_codec::types::core::Tag;
|
|
|
|
use imap_codec::types::mailbox::{ListMailbox, Mailbox as MailboxCodec};
|
|
|
|
use imap_codec::types::response::{Code, Data, Response as ImapRes, Status};
|
|
|
|
|
|
|
|
use crate::imap::command::anonymous;
|
|
|
|
use crate::imap::session::InnerContext;
|
2022-06-22 14:52:38 +00:00
|
|
|
use crate::imap::flow;
|
2022-06-20 16:09:20 +00:00
|
|
|
use crate::mailbox::Mailbox;
|
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
pub async fn dispatch<'a>(inner: InnerContext<'a>, user: &'a flow::User) -> Result<(Response, flow::Transition)> {
|
|
|
|
let ctx = StateContext { user, tag: &inner.req.tag, inner };
|
2022-06-20 16:09:20 +00:00
|
|
|
|
2022-06-22 12:58:57 +00:00
|
|
|
match &ctx.inner.req.body {
|
|
|
|
CommandBody::Lsub { reference, mailbox_wildcard, } => ctx.lsub(reference.clone(), mailbox_wildcard.clone()).await,
|
|
|
|
CommandBody::List { reference, mailbox_wildcard, } => ctx.list(reference.clone(), mailbox_wildcard.clone()).await,
|
|
|
|
CommandBody::Select { mailbox } => ctx.select(mailbox.clone()).await,
|
2022-06-20 16:09:20 +00:00
|
|
|
_ => anonymous::dispatch(ctx.inner).await,
|
|
|
|
}
|
2022-06-22 14:52:38 +00:00
|
|
|
}
|
2022-06-20 16:09:20 +00:00
|
|
|
|
|
|
|
// --- PRIVATE ---
|
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
|
2022-06-20 16:09:20 +00:00
|
|
|
struct StateContext<'a> {
|
2022-06-22 14:52:38 +00:00
|
|
|
inner: InnerContext<'a>,
|
|
|
|
user: &'a flow::User,
|
2022-06-20 16:09:20 +00:00
|
|
|
tag: &'a Tag,
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 16:09:20 +00:00
|
|
|
impl<'a> StateContext<'a> {
|
|
|
|
async fn lsub(
|
2022-06-17 16:39:36 +00:00
|
|
|
&self,
|
|
|
|
reference: MailboxCodec,
|
|
|
|
mailbox_wildcard: ListMailbox,
|
2022-06-22 14:52:38 +00:00
|
|
|
) -> Result<(Response, flow::Transition)> {
|
|
|
|
Ok((vec![ImapRes::Status(
|
2022-06-20 16:09:20 +00:00
|
|
|
Status::bad(Some(self.tag.clone()), None, "Not implemented").map_err(Error::msg)?,
|
2022-06-22 14:52:38 +00:00
|
|
|
)], flow::Transition::No))
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 16:09:20 +00:00
|
|
|
async fn list(
|
2022-06-17 16:39:36 +00:00
|
|
|
&self,
|
|
|
|
reference: MailboxCodec,
|
|
|
|
mailbox_wildcard: ListMailbox,
|
2022-06-22 14:52:38 +00:00
|
|
|
) -> Result<(Response, flow::Transition)> {
|
|
|
|
Ok((vec![
|
2022-06-20 16:09:20 +00:00
|
|
|
ImapRes::Status(Status::bad(Some(self.tag.clone()), None, "Not implemented").map_err(Error::msg)?),
|
2022-06-22 14:52:38 +00:00
|
|
|
], flow::Transition::No))
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-06-20 16:09:20 +00:00
|
|
|
* TRACE BEGIN ---
|
|
|
|
|
|
|
|
|
|
|
|
Example: C: A142 SELECT INBOX
|
|
|
|
S: * 172 EXISTS
|
|
|
|
S: * 1 RECENT
|
|
|
|
S: * OK [UNSEEN 12] Message 12 is first unseen
|
|
|
|
S: * OK [UIDVALIDITY 3857529045] UIDs valid
|
|
|
|
S: * OK [UIDNEXT 4392] Predicted next UID
|
|
|
|
S: * FLAGS (\Answered \Flagged \Deleted \Seen \Draft)
|
|
|
|
S: * OK [PERMANENTFLAGS (\Deleted \Seen \*)] Limited
|
|
|
|
S: A142 OK [READ-WRITE] SELECT completed
|
|
|
|
|
|
|
|
* TRACE END ---
|
|
|
|
*/
|
2022-06-22 14:52:38 +00:00
|
|
|
async fn select(&self, mailbox: MailboxCodec) -> Result<(Response, flow::Transition)> {
|
2022-06-17 16:39:36 +00:00
|
|
|
let name = String::try_from(mailbox)?;
|
|
|
|
|
2022-06-22 12:58:57 +00:00
|
|
|
let mut mb = Mailbox::new(&self.user.creds, name.clone())?;
|
2022-06-20 16:09:20 +00:00
|
|
|
tracing::info!(username=%self.user.name, mailbox=%name, "mailbox.selected");
|
2022-06-17 16:39:36 +00:00
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
|
2022-06-17 16:39:36 +00:00
|
|
|
let sum = mb.summary().await?;
|
|
|
|
tracing::trace!(summary=%sum, "mailbox.summary");
|
|
|
|
|
|
|
|
let body = vec![Data::Exists(sum.exists.try_into()?), Data::Recent(0)];
|
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
let tr = flow::Transition::Select(mb);
|
2022-06-17 16:39:36 +00:00
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
let r_unseen = Status::ok(None, Some(Code::Unseen(std::num::NonZeroU32::new(1).ok_or(anyhow!("Invalid message identifier"))?)), "First unseen UID").map_err(Error::msg)?;
|
2022-06-20 16:09:20 +00:00
|
|
|
//let r_permanentflags = Status::ok(None, Some(Code::
|
2022-06-17 16:39:36 +00:00
|
|
|
|
2022-06-22 14:52:38 +00:00
|
|
|
Ok((vec![
|
2022-06-20 16:09:20 +00:00
|
|
|
ImapRes::Data(Data::Exists(0)),
|
|
|
|
ImapRes::Data(Data::Recent(0)),
|
|
|
|
ImapRes::Data(Data::Flags(vec![])),
|
|
|
|
/*ImapRes::Status(),
|
|
|
|
ImapRes::Status(),
|
|
|
|
ImapRes::Status(),*/
|
2022-06-22 14:52:38 +00:00
|
|
|
ImapRes::Status(Status::ok(
|
2022-06-20 16:09:20 +00:00
|
|
|
Some(self.tag.clone()),
|
|
|
|
Some(Code::ReadWrite),
|
|
|
|
"Select completed",
|
2022-06-22 14:52:38 +00:00
|
|
|
).map_err(Error::msg)?),
|
|
|
|
], tr))
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
2022-06-20 16:09:20 +00:00
|
|
|
}
|