From 93f943aa802163eb47feef592c1504112e4588c5 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 7 Jun 2022 13:27:26 +0200 Subject: Add some more commands --- src/command.rs | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) (limited to 'src/command.rs') 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") + } } -- cgit v1.2.3