diff --git a/src/api/v0.rs b/src/api/v0.rs index ea42dc1..27c1b4d 100644 --- a/src/api/v0.rs +++ b/src/api/v0.rs @@ -72,7 +72,7 @@ async fn auth_get(req: Request, pool: DBPool) -> Json { _ => res.unwrap() }; - match login { + match login.as_str() { "" => json!({"error": true, "msg": "Not auth yet"}), _ => json!({"error": false, "login": login, "uuid": uuid}) } diff --git a/src/main.rs b/src/main.rs index 5372a8e..60a249e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -100,6 +100,8 @@ const DB_PASS: &str = "rootpass12345678"; const TOKEN_LIFETIME: u32 = 300; const REFRESH_LIFETIME: u32 = 2_678_400; +const APIV0_LIFETIME: u32 = 120; + #[tokio::main] async fn main() -> Result<()> { @@ -373,11 +375,13 @@ async fn authorize_user(pool: DBPool, token: String, session: String) { r#"INSERT INTO bitauth.v0 { session: ?, login: ?, - uuid: ? + uuid: ?, + expire: ?, }"#, session, login, - uuid + uuid, + time() + APIV0_LIFETIME )).await; } @@ -484,7 +488,8 @@ async fn init_tables(pool: DBPool) -> Res<(), SkyError> { CREATE MODEL IF NOT EXISTS bitauth.v0( session: string, login: string, - uuid: string + uuid: string, + expire: uint32, ) "#)).await;