summaryrefslogblamecommitdiff
path: root/src/auth.rs
blob: e4b1c2f8dcf2c79ce851ba18a2fbee77b9b3e668 (plain) (tree)
1
2
3
4
5
6
7
8
9

                               
                                   
                                   
                                                         


                                                                      
                                                    
                                 
                               

                                 

                                                                            
                                      

                    
                                                       


                            
                                                

                          
 
 
                


                    

                                




                                                    






                                                                                    




                                                                   
 
use axum::headers::HeaderValue;
use axum::http::StatusCode;
use axum::http::header::ToStrError;
use tracing::{debug, error, trace};
use crate::auth::AuthError::{MissingSecret, WrongSecret};
use crate::config::SETTINGS;

pub fn auth(secret: Option<&HeaderValue>) -> Result<bool, AuthError> {
    debug!("auth request with secret {:?}", secret);
    if let Some(value) = secret {
        trace!("value exists");
        let key = SETTINGS
            .get_string("apikey")
            .map_err(AuthError::Config)?;
        if value.to_str().map_err(AuthError::HeaderToStr)? == key.as_str() {
            debug!("successful auth");
            Ok(true)
        } else {
            debug!("unsuccessful auth (wrong secret)");
            Err(WrongSecret)
        }
    } else {
        debug!("unsuccessful auth (no secret)");
        Err(MissingSecret)
    }
}

#[derive(Debug)]
pub enum AuthError {
    WrongSecret,
    MissingSecret,
    Config(config::ConfigError),
    HeaderToStr(ToStrError)
}

impl AuthError {
    pub fn get(self) -> (StatusCode, &'static str) {
        match self {
            Self::WrongSecret => (StatusCode::UNAUTHORIZED, "Wrong credentials"),
            Self::MissingSecret => (StatusCode::BAD_REQUEST, "Missing credentials"),
            Self::Config(err) => {
                error!("server error: {}", err.to_string());
                (StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
            },
            Self::HeaderToStr(err) => {
                error!("server error: {}", err.to_string());
                (StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
            },
        }
    }
}