Skip to content

Commit

Permalink
refactor: [torrust#39] user id extractor refactored
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-nt committed Jan 24, 2024
1 parent da8e2ea commit 30b646a
Showing 1 changed file with 36 additions and 16 deletions.
52 changes: 36 additions & 16 deletions src/web/api/v1/extractors/user_id.rs
Original file line number Diff line number Diff line change
@@ -1,51 +1,71 @@
use std::sync::Arc;

use axum::async_trait;
use axum::extract::FromRequestParts;
use async_trait::async_trait;
use axum::extract::{FromRef, FromRequestParts};
use axum::http::request::Parts;
use axum::response::{IntoResponse, Response};
use serde::Deserialize;
use tokio::sync::RwLock;

use super::bearer_token;
use crate::services;
use crate::web::api::v1::auth::{self, Authentication};
use crate::common::AppData;
use crate::errors::ServiceError;

pub struct ExtractLoggedInUser(pub Option<UserId>);
pub struct ExtractLoggedInUser(pub UserId);

#[derive(Deserialize, Debug)]
pub struct UserId(i64);

impl UserId {
#[must_use]
pub fn value(&self) -> i64 {
pub fn value(self) -> i64 {
self.0
}
}

#[async_trait]
impl<S> FromRequestParts<S> for ExtractLoggedInUser
where
Arc<AppData>: FromRef<S>,
S: Send + Sync,
{
type Rejection = Response;

async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> {
let maybe_bearer_token = match bearer_token::Extract::from_request_parts(parts, state).await {
Ok(maybe_bearer_token) => maybe_bearer_token.0,
Err(_) => None,
Err(_) => return Err(ServiceError::Unauthorized.into_response()),
};

let bearer_token = services::authentication::JsonWebToken::new(Arc::new(crate::config::Configuration {
settings: RwLock::default(),
config_path: Option::default(),
}));
/* let app_data = match axum::extract::State::from_request_parts(parts, state).await {
Ok(app_data) => Ok(app_data.0),
Err(_) => Err(ServiceError::Unauthorized),
}; */

let auth: Authentication = auth::Authentication::new(Arc::new(bearer_token));
let app_data = Arc::from_ref(state);

match auth.get_user_id_from_bearer_token(&maybe_bearer_token).await {
Ok(user_id) => Ok(ExtractLoggedInUser(Some(UserId(user_id)))),
Err(error) => return Err(error.into_response()),
/* match app_data.auth.get_user_id_from_bearer_token(&maybe_bearer_token).await {
Ok(user_id) => ExtractLoggedInUser(UserId(user_id)),
Error(err) => return ServiceError::Unauthorized.into_response(),
} */

/* let user_id = ExtractLoggedInUser(UserId(app_data
.auth
.get_user_id_from_bearer_token(&maybe_bearer_token))
.await
.map_err(|e| {
dbg!(e);
ServiceError::Unauthorized
})? */
let user_id = app_data.auth.get_user_id_from_bearer_token(&maybe_bearer_token).await;

match user_id {
Ok(user_id) => Ok(ExtractLoggedInUser(UserId(user_id))),
Err(error) => Err(error.into_response()),
}

/* match header {
Some(header_value) => Ok(Extract(Some(BearerToken(parse_token(header_value))))),
None => Ok(Extract(None)),
} */
}
}

0 comments on commit 30b646a

Please sign in to comment.