aerogramme/src/connection.rs

42 lines
1.2 KiB
Rust
Raw Normal View History

2022-06-03 15:26:25 +00:00
use std::sync::Arc;
use std::task::{Context, Poll};
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-03 15:26:25 +00:00
use crate::mailstore::Mailstore;
pub struct Connection {
pub mailstore: Arc<Mailstore>,
}
impl Connection {
2022-06-03 15:37:39 +00:00
pub fn new(mailstore: Arc<Mailstore>) -> Self {
Self { mailstore }
}
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-03 15:56:47 +00:00
let cmd = command::Command::new(self.mailstore.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,
_ => Response::bad("Error in IMAP command received by server."),
}
2022-06-03 15:26:25 +00:00
})
}
}