aerogramme/src/service.rs

81 lines
2.7 KiB
Rust
Raw Normal View History

2022-06-07 10:57:24 +00:00
use std::sync::{Arc, Mutex};
2022-06-03 15:26:25 +00:00
use std::task::{Context, Poll};
2022-06-07 10:38:59 +00:00
use anyhow::Result;
use boitalettres::server::accept::addr::AddrStream;
2022-06-03 15:26:25 +00:00
use boitalettres::errors::Error as BalError;
2022-06-03 15:37:39 +00:00
use boitalettres::proto::{Request, Response};
2022-06-03 15:26:25 +00:00
use futures::future::BoxFuture;
2022-06-03 15:56:47 +00:00
use imap_codec::types::command::CommandBody;
2022-06-03 15:26:25 +00:00
use tower::Service;
2022-06-03 15:56:47 +00:00
use crate::command;
2022-06-07 10:57:24 +00:00
use crate::login::Credentials;
2022-06-03 15:26:25 +00:00
use crate::mailstore::Mailstore;
2022-06-07 11:46:13 +00:00
use crate::mailbox::Mailbox;
2022-06-03 15:26:25 +00:00
2022-06-07 10:38:59 +00:00
pub struct Instance {
pub mailstore: Arc<Mailstore>,
}
impl Instance {
pub fn new(mailstore: Arc<Mailstore>) -> Self {
Self { mailstore }
}
}
impl<'a> Service<&'a AddrStream> for Instance {
type Response = Connection;
type Error = anyhow::Error;
type Future = BoxFuture<'static, Result<Self::Response>>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, addr: &'a AddrStream) -> Self::Future {
tracing::info!(remote_addr = %addr.remote_addr, local_addr = %addr.local_addr, "accept");
let ms = self.mailstore.clone();
Box::pin(async { Ok(Connection::new(ms)) })
}
}
2022-06-07 10:57:24 +00:00
pub struct Session {
pub creds: Option<Credentials>,
2022-06-07 11:46:13 +00:00
pub selected: Option<Mailbox>,
2022-06-07 10:57:24 +00:00
}
2022-06-03 15:26:25 +00:00
pub struct Connection {
pub mailstore: Arc<Mailstore>,
2022-06-07 10:57:24 +00:00
pub session: Arc<Mutex<Session>>,
2022-06-03 15:26:25 +00:00
}
impl Connection {
2022-06-03 15:37:39 +00:00
pub fn new(mailstore: Arc<Mailstore>) -> Self {
2022-06-07 11:46:13 +00:00
Self { mailstore, session: Arc::new(Mutex::new(Session { creds: None, selected: None, })) }
2022-06-03 15:37:39 +00:00
}
2022-06-03 15:26:25 +00:00
}
impl Service<Request> for Connection {
type Response = Response;
type Error = BalError;
type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: Request) -> Self::Future {
tracing::debug!("Got request: {:#?}", req);
2022-06-07 11:27:26 +00:00
let cmd = command::Command::new(req.tag, self.mailstore.clone(), self.session.clone());
2022-06-03 15:26:25 +00:00
Box::pin(async move {
2022-06-03 15:56:47 +00:00
match req.body {
CommandBody::Capability => cmd.capability().await,
CommandBody::Login { username, password } => cmd.login(username, password).await,
2022-06-07 11:27:26 +00:00
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."),
2022-06-03 15:56:47 +00:00
}
2022-06-03 15:26:25 +00:00
})
}
}
2022-06-07 10:38:59 +00:00