use crate::{
auth::UserDetail,
server::{
chancomms::ControlChanMsg,
controlchan::{
Reply, ReplyCode,
error::ControlChanError,
handler::{CommandContext, CommandHandler},
},
},
storage::{Metadata, StorageBackend},
};
use async_trait::async_trait;
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum AuthParam {
Ssl,
Tls,
}
#[derive(Debug)]
pub struct Auth {
protocol: AuthParam,
}
impl Auth {
pub fn new(protocol: AuthParam) -> Self {
Auth { protocol }
}
}
#[async_trait]
impl<Storage, User> CommandHandler<Storage, User> for Auth
where
User: UserDetail + 'static,
Storage: StorageBackend<User> + 'static,
Storage::Metadata: Metadata,
{
#[tracing_attributes::instrument]
async fn handle(&self, args: CommandContext<Storage, User>) -> Result<Reply, ControlChanError> {
let tx = args.tx_control_chan.clone();
let logger = args.logger;
match (args.tls_configured, self.protocol.clone()) {
(true, AuthParam::Tls) => {
tokio::spawn(async move {
if let Err(err) = tx.send(ControlChanMsg::SecureControlChannel).await {
slog::warn!(logger, "AUTH: Could not send internal message to notify of TLS upgrade: {}", err);
}
});
Ok(Reply::new(ReplyCode::AuthOkayNoDataNeeded, "Upgrading to TLS"))
}
(true, AuthParam::Ssl) => Ok(Reply::new(ReplyCode::CommandNotImplementedForParameter, "Auth SSL not implemented")),
(false, _) => Ok(Reply::new(ReplyCode::CommandNotImplemented, "TLS/SSL not configured")),
}
}
}