the real users fix
This commit is contained in:
parent
26301ac344
commit
8a48ca0ad6
@ -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> {
|
||||
|
@ -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))))
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user