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)
}
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 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;
Ok(q?)
q
}
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 {
true => "AUTHORIZED",
_ => "NOT AUTHORIZED"
}
};
let body = body.replace("{USER_STATUS}", user_status);
let body = body.replace("{PAGE_TIME}", &format!("{}", time_mcs() - t));
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;
if user.is_ok() {
body = format!("{}", user?.uuid);
let (uuid,) = user.unwrap();
body = format!("{}", uuid);
}
else {
body = "Not fond :(".to_owned();
// body = "Not fond :(".to_owned();
body = format!("{}", user.err().unwrap());
}
let restype: HeaderValue = "text/html".parse().unwrap();