Minimize warnin's
This commit is contained in:
parent
6a64f87bc5
commit
aeceb98ad5
@ -18,8 +18,6 @@ use {
|
|||||||
std::sync::Arc,
|
std::sync::Arc,
|
||||||
};
|
};
|
||||||
|
|
||||||
type Res<T, E> = std::result::Result<T, E>;
|
|
||||||
type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
|
||||||
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,13 +13,11 @@ use {
|
|||||||
bb8::Pool,
|
bb8::Pool,
|
||||||
std::sync::Arc,
|
std::sync::Arc,
|
||||||
crate::{
|
crate::{
|
||||||
funcs::type_of,
|
|
||||||
double_split,
|
double_split,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
type Res<T, E> = std::result::Result<T, E>;
|
type Res<T, E> = std::result::Result<T, E>;
|
||||||
type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
|
||||||
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
||||||
|
|
||||||
|
|
||||||
@ -32,7 +30,7 @@ pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn auth(req: Request<Incoming>, pool: DBPool) -> Json {
|
async fn auth(req: Request<Incoming>, _pool: DBPool) -> Json {
|
||||||
let query = req.uri().query().or(Some("")).unwrap();
|
let query = req.uri().query().or(Some("")).unwrap();
|
||||||
let query = double_split(query.to_string(), "&", "=");
|
let query = double_split(query.to_string(), "&", "=");
|
||||||
let sess = std::string::String::from(query
|
let sess = std::string::String::from(query
|
||||||
@ -48,7 +46,7 @@ async fn auth(req: Request<Incoming>, pool: DBPool) -> Json {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn auth_get(req: Request<Incoming>, pool: DBPool) -> Json {
|
async fn auth_get(req: Request<Incoming>, _pool: DBPool) -> Json {
|
||||||
let query = req.uri().query().or(Some("")).unwrap();
|
let query = req.uri().query().or(Some("")).unwrap();
|
||||||
let query = double_split(query.to_string(), "&", "=");
|
let query = double_split(query.to_string(), "&", "=");
|
||||||
println!("{:?}", query);
|
println!("{:?}", query);
|
||||||
|
@ -15,6 +15,7 @@ use {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn type_of<T>(_: T) -> &'static str {
|
pub fn type_of<T>(_: T) -> &'static str {
|
||||||
type_name::<T>()
|
type_name::<T>()
|
||||||
}
|
}
|
||||||
|
@ -252,11 +252,11 @@ async fn uri_login(req: Request<Incoming>, pool: DBPool, headers: &mut HeaderMap
|
|||||||
Ok((build_html(LOGIN_HTML), StatusCode::OK, restype))
|
Ok((build_html(LOGIN_HTML), StatusCode::OK, restype))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn uri_authorize(req: Request<Incoming>, pool: DBPool) -> Result<(String, StatusCode, HeaderValue)> {
|
async fn uri_authorize(req: Request<Incoming>, _pool: DBPool) -> Result<(String, StatusCode, HeaderValue)> {
|
||||||
if *req.method() == Method::POST {
|
if *req.method() == Method::POST {
|
||||||
let body = get_body_from_request(req).await?;
|
let body = get_body_from_request(req).await?;
|
||||||
let body = String::from_utf8(body).unwrap();
|
let body = String::from_utf8(body).unwrap();
|
||||||
let body = double_split(body, "&", "=");
|
let _body = double_split(body, "&", "=");
|
||||||
}
|
}
|
||||||
|
|
||||||
let restype: HeaderValue = "text/html".parse().unwrap();
|
let restype: HeaderValue = "text/html".parse().unwrap();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user