aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-01-04 23:24:31 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2022-01-04 23:24:31 +0100
commit9ccea2ea174f12f260f35ee01c9880d4b6591cf3 (patch)
tree5cd16e9bad158605aa735ff9d7f1e893364a68f2 /planetwars-server
parent32131da67894b8bed5cf313b63a115b58ff23761 (diff)
downloadplanetwars.dev-9ccea2ea174f12f260f35ee01c9880d4b6591cf3.tar.xz
planetwars.dev-9ccea2ea174f12f260f35ee01c9880d4b6591cf3.zip
return user from login call
Diffstat (limited to 'planetwars-server')
-rw-r--r--planetwars-server/src/routes/users.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/planetwars-server/src/routes/users.rs b/planetwars-server/src/routes/users.rs
index bc30b28..967710e 100644
--- a/planetwars-server/src/routes/users.rs
+++ b/planetwars-server/src/routes/users.rs
@@ -5,6 +5,7 @@ use axum::extract::{FromRequest, RequestParts, TypedHeader};
use axum::headers::authorization::Bearer;
use axum::headers::Authorization;
use axum::http::StatusCode;
+use axum::response::{Headers, IntoResponse, Response};
use axum::{async_trait, Json};
use serde::{Deserialize, Serialize};
@@ -70,10 +71,7 @@ pub struct LoginParams {
pub password: String,
}
-pub async fn login(
- conn: DatabaseConnection,
- params: Json<LoginParams>,
-) -> Result<String, StatusCode> {
+pub async fn login(conn: DatabaseConnection, params: Json<LoginParams>) -> Response {
let credentials = Credentials {
username: &params.username,
password: &params.password,
@@ -82,10 +80,13 @@ pub async fn login(
let authenticated = users::authenticate_user(&credentials, &conn);
match authenticated {
- None => Err(StatusCode::FORBIDDEN),
+ None => StatusCode::FORBIDDEN.into_response(),
Some(user) => {
let session = sessions::create_session(&user, &conn);
- Ok(session.token)
+ let user_data: UserData = user.into();
+ let headers = Headers(vec![("Token", &session.token)]);
+
+ (headers, Json(user_data)).into_response()
}
}
}