aerogramme/src/imap/command/authenticated.rs

193 lines
5.7 KiB
Rust
Raw Normal View History

2022-06-22 15:26:52 +00:00
use anyhow::{anyhow, Error, Result};
2022-06-20 16:09:20 +00:00
use boitalettres::proto::Response;
use imap_codec::types::command::CommandBody;
2022-06-27 09:40:45 +00:00
use imap_codec::types::core::{Atom, Tag};
use imap_codec::types::flag::Flag;
2022-06-20 16:09:20 +00:00
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;
2022-06-22 14:52:38 +00:00
use crate::imap::flow;
2022-06-22 15:26:52 +00:00
use crate::imap::session::InnerContext;
2022-06-27 14:56:20 +00:00
use crate::mail::Mailbox;
2022-06-20 16:09:20 +00:00
2022-06-27 09:40:45 +00:00
const DEFAULT_FLAGS: [Flag; 5] = [
Flag::Seen,
Flag::Answered,
Flag::Flagged,
Flag::Deleted,
Flag::Draft,
];
2022-06-22 15:26:52 +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 {
2022-06-22 15:26:52 +00:00
CommandBody::Lsub {
reference,
mailbox_wildcard,
} => ctx.lsub(reference, mailbox_wildcard).await,
CommandBody::List {
reference,
mailbox_wildcard,
} => ctx.list(reference, mailbox_wildcard).await,
2022-06-22 15:25:04 +00:00
CommandBody::Select { mailbox } => ctx.select(mailbox).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 ---
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,
2022-06-22 15:25:04 +00:00
reference: &MailboxCodec,
mailbox_wildcard: &ListMailbox,
2022-06-22 15:26:52 +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 15:26:52 +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,
2022-06-22 15:25:04 +00:00
reference: &MailboxCodec,
mailbox_wildcard: &ListMailbox,
2022-06-22 15:26:52 +00:00
) -> Result<(Response, flow::Transition)> {
Ok((
vec![ImapRes::Status(
Status::bad(Some(self.tag.clone()), None, "Not implemented").map_err(Error::msg)?,
)],
flow::Transition::No,
))
2022-06-17 16:39:36 +00:00
}
/*
2022-06-22 15:26:52 +00:00
* TRACE BEGIN ---
2022-06-20 16:09:20 +00:00
2022-06-22 15:26:52 +00:00
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
2022-06-20 16:09:20 +00:00
2022-06-23 12:41:10 +00:00
--- a mailbox with no unseen message -> no unseen entry
20 select "INBOX.achats"
* FLAGS (\Answered \Flagged \Deleted \Seen \Draft $Forwarded JUNK $label1)
* OK [PERMANENTFLAGS (\Answered \Flagged \Deleted \Seen \Draft $Forwarded JUNK $label1 \*)] Flags permitted.
* 88 EXISTS
* 0 RECENT
* OK [UIDVALIDITY 1347986788] UIDs valid
* OK [UIDNEXT 91] Predicted next UID
* OK [HIGHESTMODSEQ 72] Highest
20 OK [READ-WRITE] Select completed (0.001 + 0.000 secs).
2022-06-22 15:26:52 +00:00
* TRACE END ---
*/
2022-06-22 15:25:04 +00:00
async fn select(&self, mailbox: &MailboxCodec) -> Result<(Response, flow::Transition)> {
let name = String::try_from(mailbox.clone())?;
2022-06-17 16:39:36 +00:00
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
let sum = mb.summary().await?;
tracing::trace!(summary=%sum, "mailbox.summary");
2022-06-22 15:26:52 +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-17 16:39:36 +00:00
2022-06-24 08:27:26 +00:00
let mut res = Vec::<ImapRes>::new();
2022-06-23 12:41:10 +00:00
2022-06-24 08:27:26 +00:00
res.push(ImapRes::Data(Data::Exists(sum.exists)));
res.push(ImapRes::Data(Data::Recent(sum.recent)));
2022-06-27 09:40:45 +00:00
let mut flags: Vec<Flag> = sum.flags.map(|f| match f.chars().next() {
Some('\\') => None,
Some('$') if f == "$unseen" => None,
Some(_) => match Atom::try_from(f.clone()) {
Err(_) => {
tracing::error!(username=%self.user.name, mailbox=%name, flag=%f, "Unable to encode flag as IMAP atom");
None
},
Ok(a) => Some(Flag::Keyword(a)),
},
None => None,
}).flatten().collect();
flags.extend_from_slice(&DEFAULT_FLAGS);
res.push(ImapRes::Data(Data::Flags(flags.clone())));
2022-06-24 08:27:26 +00:00
let uid_validity = Status::ok(
None,
Some(Code::UidValidity(sum.validity)),
"UIDs valid"
)
.map_err(Error::msg)?;
res.push(ImapRes::Status(uid_validity));
let next_uid = Status::ok(
None,
Some(Code::UidNext(sum.next)),
"Predict next UID"
).map_err(Error::msg)?;
res.push(ImapRes::Status(next_uid));
if let Some(unseen) = sum.unseen {
let status_unseen = Status::ok(
None,
Some(Code::Unseen(unseen.clone())),
"First unseen UID",
)
.map_err(Error::msg)?;
res.push(ImapRes::Status(status_unseen));
}
2022-06-27 09:40:45 +00:00
flags.push(Flag::Permanent);
let permanent_flags = Status::ok(
None,
Some(Code::PermanentFlags(flags)),
"Flags permitted",
).map_err(Error::msg)?;
res.push(ImapRes::Status(permanent_flags));
2022-06-24 08:27:26 +00:00
let last = Status::ok(
Some(self.tag.clone()),
Some(Code::ReadWrite),
"Select completed",
).map_err(Error::msg)?;
res.push(ImapRes::Status(last));
let tr = flow::Transition::Select(mb);
Ok((res, tr))
2022-06-17 16:39:36 +00:00
}
2022-06-20 16:09:20 +00:00
}