From 93f943aa802163eb47feef592c1504112e4588c5 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 7 Jun 2022 13:27:26 +0200 Subject: [PATCH] Add some more commands --- src/command.rs | 38 +++++++++++++++++++++++++++++--------- src/service.rs | 8 ++++++-- 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/src/command.rs b/src/command.rs index 24c452b..2ee1a07 100644 --- a/src/command.rs +++ b/src/command.rs @@ -2,23 +2,27 @@ use std::sync::{Arc, Mutex}; use boitalettres::errors::Error as BalError; use boitalettres::proto::{Request, Response}; -use imap_codec::types::core::AString; +use imap_codec::types::core::{Tag, AString}; use imap_codec::types::response::{Capability, Data}; +use imap_codec::types::mailbox::{Mailbox, ListMailbox}; +use imap_codec::types::sequence::SequenceSet; +use imap_codec::types::fetch_attributes::MacroOrFetchAttributes; -use crate::mailstore; -use crate::service; +use crate::mailstore::Mailstore; +use crate::service::Session; pub struct Command { - mailstore: Arc, - session: Arc>, + tag: Tag, + mailstore: Arc, + session: Arc>, } impl Command { - pub fn new(mailstore: Arc, session: Arc>) -> Self { - Self { mailstore, session } + pub fn new(tag: Tag, mailstore: Arc, session: Arc>) -> Self { + Self { tag, mailstore, session } } - pub async fn capability(self) -> Result { + pub async fn capability(&self) -> Result { let capabilities = vec![Capability::Imap4Rev1, Capability::Idle]; let body = vec![Data::Capability(capabilities)]; let r = Response::ok("Pre-login capabilities listed, post-login capabilities have more.")? @@ -26,7 +30,7 @@ impl Command { Ok(r) } - pub async fn login(self, username: AString, password: AString) -> Result { + pub async fn login(&self, username: AString, password: AString) -> Result { let (u, p) = match (String::try_from(username), String::try_from(password)) { (Ok(u), Ok(p)) => (u, p), _ => return Response::bad("Invalid characters"), @@ -46,4 +50,20 @@ impl Command { Response::ok("Logged in") } + + pub async fn lsub(&self, reference: Mailbox, mailbox_wildcard: ListMailbox) -> Result { + Response::bad("Not implemented") + } + + pub async fn list(&self, reference: Mailbox, mailbox_wildcard: ListMailbox) -> Result { + Response::bad("Not implemented") + } + + pub async fn select(&self, mailbox: Mailbox) -> Result { + Response::bad("Not implemented") + } + + pub async fn fetch(&self, sequence_set: SequenceSet, attributes: MacroOrFetchAttributes, uid: bool) -> Result { + Response::bad("Not implemented") + } } diff --git a/src/service.rs b/src/service.rs index f032971..4d4c288 100644 --- a/src/service.rs +++ b/src/service.rs @@ -61,12 +61,16 @@ impl Service for Connection { fn call(&mut self, req: Request) -> Self::Future { tracing::debug!("Got request: {:#?}", req); - let cmd = command::Command::new(self.mailstore.clone(), self.session.clone()); + let cmd = command::Command::new(req.tag, self.mailstore.clone(), self.session.clone()); Box::pin(async move { match req.body { CommandBody::Capability => cmd.capability().await, CommandBody::Login { username, password } => cmd.login(username, password).await, - _ => Response::bad("Error in IMAP command received by server."), + CommandBody::Lsub { reference, mailbox_wildcard } => cmd.lsub(reference, mailbox_wildcard).await, + CommandBody::List { reference, mailbox_wildcard } => cmd.list(reference, mailbox_wildcard).await, + CommandBody::Select { mailbox } => cmd.select(mailbox).await, + CommandBody::Fetch { sequence_set, attributes, uid } => cmd.fetch(sequence_set, attributes, uid).await, + _ => Response::bad("Error in IMAP command received by server."), } }) }