use std::{ ops::{Deref, DerefMut}, time::Duration, }; use anyhow::{Context as _, Result}; use async_imap::Client as ImapClient; use async_imap::Session as ImapSession; use tokio::io::BufWriter; use super::capabilities::Capabilities; use super::session::Session; use crate::context::Context; use crate::net::connect_tcp; use crate::net::session::SessionStream; use crate::net::tls::wrap_tls; use crate::socks::Socks5Config; use fast_socks5::client::Socks5Stream; /// IMAP connection, write and read timeout. pub(crate) const IMAP_TIMEOUT: Duration = Duration::from_secs(60); #[derive(Debug)] pub(crate) struct Client { inner: ImapClient>, } impl Deref for Client { type Target = ImapClient>; fn deref(&self) -> &Self::Target { &self.inner } } impl DerefMut for Client { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.inner } } /// Determine server capabilities. /// /// If server supports ID capability, send our client ID. async fn determine_capabilities( session: &mut ImapSession>, ) -> Result { let caps = session .capabilities() .await .context("CAPABILITY command error")?; let server_id = if caps.has_str("ID") { session.id([("name", Some("Delta Chat"))]).await? } else { None }; let capabilities = Capabilities { can_idle: caps.has_str("IDLE"), can_move: caps.has_str("MOVE"), can_check_quota: caps.has_str("QUOTA"), can_condstore: caps.has_str("CONDSTORE"), can_metadata: caps.has_str("METADATA"), can_push: caps.has_str("XDELTAPUSH"), is_chatmail: caps.has_str("XCHATMAIL"), server_id, }; Ok(capabilities) } impl Client { fn new(stream: Box) -> Self { Self { inner: ImapClient::new(stream), } } pub(crate) async fn login(self, username: &str, password: &str) -> Result { let Client { inner, .. } = self; let mut session = inner .login(username, password) .await .map_err(|(err, _client)| err)?; let capabilities = determine_capabilities(&mut session).await?; Ok(Session::new(session, capabilities)) } pub(crate) async fn authenticate( self, auth_type: &str, authenticator: impl async_imap::Authenticator, ) -> Result { let Client { inner, .. } = self; let mut session = inner .authenticate(auth_type, authenticator) .await .map_err(|(err, _client)| err)?; let capabilities = determine_capabilities(&mut session).await?; Ok(Session::new(session, capabilities)) } pub async fn connect_secure( context: &Context, hostname: &str, port: u16, strict_tls: bool, ) -> Result { let tcp_stream = connect_tcp(context, hostname, port, IMAP_TIMEOUT, strict_tls).await?; let tls_stream = wrap_tls(strict_tls, hostname, tcp_stream).await?; let buffered_stream = BufWriter::new(tls_stream); let session_stream: Box = Box::new(buffered_stream); let mut client = Client::new(session_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; Ok(client) } pub async fn connect_insecure(context: &Context, hostname: &str, port: u16) -> Result { let tcp_stream = connect_tcp(context, hostname, port, IMAP_TIMEOUT, false).await?; let buffered_stream = BufWriter::new(tcp_stream); let session_stream: Box = Box::new(buffered_stream); let mut client = Client::new(session_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; Ok(client) } pub async fn connect_starttls( context: &Context, hostname: &str, port: u16, strict_tls: bool, ) -> Result { let tcp_stream = connect_tcp(context, hostname, port, IMAP_TIMEOUT, strict_tls).await?; // Run STARTTLS command and convert the client back into a stream. let buffered_tcp_stream = BufWriter::new(tcp_stream); let mut client = ImapClient::new(buffered_tcp_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; client .run_command_and_check_ok("STARTTLS", None) .await .context("STARTTLS command failed")?; let buffered_tcp_stream = client.into_inner(); let tcp_stream = buffered_tcp_stream.into_inner(); let tls_stream = wrap_tls(strict_tls, hostname, tcp_stream) .await .context("STARTTLS upgrade failed")?; let buffered_stream = BufWriter::new(tls_stream); let session_stream: Box = Box::new(buffered_stream); let client = Client::new(session_stream); Ok(client) } pub async fn connect_secure_socks5( context: &Context, domain: &str, port: u16, strict_tls: bool, socks5_config: Socks5Config, ) -> Result { let socks5_stream = socks5_config .connect(context, domain, port, IMAP_TIMEOUT, strict_tls) .await?; let tls_stream = wrap_tls(strict_tls, domain, socks5_stream).await?; let buffered_stream = BufWriter::new(tls_stream); let session_stream: Box = Box::new(buffered_stream); let mut client = Client::new(session_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; Ok(client) } pub async fn connect_insecure_socks5( context: &Context, domain: &str, port: u16, socks5_config: Socks5Config, ) -> Result { let socks5_stream = socks5_config .connect(context, domain, port, IMAP_TIMEOUT, false) .await?; let buffered_stream = BufWriter::new(socks5_stream); let session_stream: Box = Box::new(buffered_stream); let mut client = Client::new(session_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; Ok(client) } pub async fn connect_starttls_socks5( context: &Context, hostname: &str, port: u16, socks5_config: Socks5Config, strict_tls: bool, ) -> Result { let socks5_stream = socks5_config .connect(context, hostname, port, IMAP_TIMEOUT, strict_tls) .await?; // Run STARTTLS command and convert the client back into a stream. let buffered_socks5_stream = BufWriter::new(socks5_stream); let mut client = ImapClient::new(buffered_socks5_stream); let _greeting = client .read_response() .await .context("failed to read greeting")??; client .run_command_and_check_ok("STARTTLS", None) .await .context("STARTTLS command failed")?; let buffered_socks5_stream = client.into_inner(); let socks5_stream: Socks5Stream<_> = buffered_socks5_stream.into_inner(); let tls_stream = wrap_tls(strict_tls, hostname, socks5_stream) .await .context("STARTTLS upgrade failed")?; let buffered_stream = BufWriter::new(tls_stream); let session_stream: Box = Box::new(buffered_stream); let client = Client::new(session_stream); Ok(client) } }