diff --git a/src/funcs.rs b/src/funcs.rs index d1927f8..5d72def 100644 --- a/src/funcs.rs +++ b/src/funcs.rs @@ -368,14 +368,14 @@ pub async fn create_user(pool: DBPool, data: HashMap) -> Res Res { +pub async fn get_user(pool: DBPool, login: String) -> Res<(String,), SkyError> { let mut con = pool.get().await.unwrap(); let q = con - .query_parse::(&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 { diff --git a/src/main.rs b/src/main.rs index d4f4967..7700829 100644 --- a/src/main.rs +++ b/src/main.rs @@ -261,7 +261,7 @@ async fn handle_connection(req: Request, 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)))) diff --git a/src/url/user.rs b/src/url/user.rs index d201f6c..0d080b5 100644 --- a/src/url/user.rs +++ b/src/url/user.rs @@ -22,10 +22,12 @@ pub async fn user(req: Request, 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();