the real users fix

This commit is contained in:
root 2024-10-22 09:51:54 +02:00
parent 26301ac344
commit 8a48ca0ad6
3 changed files with 8 additions and 6 deletions

View File

@ -368,14 +368,14 @@ pub async fn create_user(pool: DBPool, data: HashMap<String, String>) -> Res<boo
Ok(ret) Ok(ret)
} }
pub async fn get_user(pool: DBPool, login: String) -> Res<Users, SkyError> { pub async fn get_user(pool: DBPool, login: String) -> Res<(String,), SkyError> {
let mut con = pool.get().await.unwrap(); let mut con = pool.get().await.unwrap();
let q = con let q = con
.query_parse::<Users>(&query!("SELECT * FROM bitauth.users_uuid WHERE login = ?", login)) .query_parse::<(String,)>(&query!("SELECT uuid FROM bitauth.users_uuid WHERE login = ?", login))
.await; .await;
Ok(q?) q
} }
pub fn get_cookies(headers: HeaderMap) -> HashMap<String, String> { pub fn get_cookies(headers: HeaderMap) -> HashMap<String, String> {

View File

@ -261,7 +261,7 @@ async fn handle_connection(req: Request<Incoming>, pool: DBPool, ip: String) ->
let user_status = match logged { let user_status = match logged {
true => "AUTHORIZED", true => "AUTHORIZED",
_ => "NOT AUTHORIZED" _ => "NOT AUTHORIZED"
} };
let body = body.replace("{USER_STATUS}", user_status); let body = body.replace("{USER_STATUS}", user_status);
let body = body.replace("{PAGE_TIME}", &format!("{}", time_mcs() - t)); let body = body.replace("{PAGE_TIME}", &format!("{}", time_mcs() - t));
Ok(Response::from_parts(parts, Full::new(Bytes::from(body)))) Ok(Response::from_parts(parts, Full::new(Bytes::from(body))))

View File

@ -22,10 +22,12 @@ pub async fn user(req: Request<Incoming>, pool: DBPool) -> Res<(String, StatusCo
let user = get_user(pool, login.to_string()).await; let user = get_user(pool, login.to_string()).await;
if user.is_ok() { if user.is_ok() {
body = format!("{}", user?.uuid); let (uuid,) = user.unwrap();
body = format!("{}", uuid);
} }
else { else {
body = "Not fond :(".to_owned(); // body = "Not fond :(".to_owned();
body = format!("{}", user.err().unwrap());
} }
let restype: HeaderValue = "text/html".parse().unwrap(); let restype: HeaderValue = "text/html".parse().unwrap();