Skip to content

Commit 17255de

Browse files
committed
add proper session mgmt
1 parent 14145ea commit 17255de

File tree

6 files changed

+225
-22
lines changed

6 files changed

+225
-22
lines changed

Cargo.lock

+109
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ maud = "0.26.0"
2828
sentry = { version = "0.34.0", features = ["tracing", "reqwest", "rustls"], default-features = false }
2929
tracing = "0.1.40"
3030
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
31+
tower-sessions = "0.13.0"
32+
time = "0.3.36"

src/auth.rs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
use axum::async_trait;
2+
use axum::extract::FromRequestParts;
3+
use axum::http::{request::Parts, StatusCode};
4+
use tower_sessions::Session;
5+
6+
use crate::AccountPk;
7+
use crate::ResponseError;
8+
9+
pub const SESSION_COOKIE_KEY: &str = "auth";
10+
11+
pub struct LoggedIn {
12+
pub account: Option<AccountPk>,
13+
}
14+
15+
impl LoggedIn {
16+
pub fn account(&self) -> Result<AccountPk, ResponseError> {
17+
self.account.clone().ok_or(ResponseError::NeedsAuth)
18+
}
19+
}
20+
21+
#[async_trait]
22+
impl<S> FromRequestParts<S> for LoggedIn
23+
where
24+
S: Send + Sync,
25+
{
26+
type Rejection = (StatusCode, &'static str);
27+
28+
async fn from_request_parts(req: &mut Parts, state: &S) -> Result<Self, Self::Rejection> {
29+
let session = Session::from_request_parts(req, state).await?;
30+
let account: Option<AccountPk> = session.get(SESSION_COOKIE_KEY).await.unwrap();
31+
Ok(LoggedIn { account })
32+
}
33+
}

src/error.rs

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use axum::{
22
http::StatusCode,
3-
response::{IntoResponse, Response},
3+
response::{IntoResponse, Redirect, Response},
44
};
55
use reqwest::header::InvalidHeaderValue;
66
use tokio::task::JoinError;
@@ -17,11 +17,20 @@ pub enum ResponseError {
1717
InvalidHeader(#[from] InvalidHeaderValue),
1818
#[error("invalid JSON input: {0}")]
1919
Json(#[from] serde_json::Error),
20+
#[error("failed to update session")]
21+
Session(#[from] tower_sessions::session::Error),
22+
#[error("no login found")]
23+
NeedsAuth,
2024
}
2125

2226
impl IntoResponse for ResponseError {
2327
fn into_response(self) -> Response {
24-
tracing::error!("error while serving request: {}", self);
25-
(StatusCode::INTERNAL_SERVER_ERROR, format!("{}\n", self)).into_response()
28+
match self {
29+
ResponseError::NeedsAuth => Redirect::to("/").into_response(),
30+
_ => {
31+
tracing::error!("error while serving request: {}", self);
32+
(StatusCode::INTERNAL_SERVER_ERROR, format!("{}\n", self)).into_response()
33+
}
34+
}
2635
}
2736
}

0 commit comments

Comments
 (0)