ew/src/router/start.rs

58 lines
1.9 KiB
Rust
Raw Normal View History

2024-02-23 15:59:55 +00:00
use json;
use json::object;
use crate::router::global;
use crate::encryption;
2024-03-28 16:12:10 +00:00
use actix_web::{HttpResponse, HttpRequest};
use crate::router::userdata;
2024-02-23 15:59:55 +00:00
pub fn asset_hash(_req: HttpRequest, body: String) -> HttpResponse {
let body = json::parse(&encryption::decrypt_packet(&body).unwrap()).unwrap();
2024-03-28 16:12:10 +00:00
if body["asset_version"].to_string() != global::ASSET_VERSION && body["asset_version"].to_string() != global::ASSET_VERSION_JP {
2024-02-23 15:59:55 +00:00
println!("Warning! Asset version is not what was expected. (Did the app update?)");
}
2024-03-28 16:12:10 +00:00
let hash = if body["asset_version"].to_string() == global::ASSET_VERSION_JP {
global::ASSET_HASH_JP
} else {
global::ASSET_HASH
};
2024-02-23 15:59:55 +00:00
let resp = object!{
"code": 0,
"server_time": global::timestamp(),
"data": {
2024-03-28 16:12:10 +00:00
"asset_hash": hash
2024-02-23 15:59:55 +00:00
}
};
global::send(resp)
}
pub fn start(req: HttpRequest, body: String) -> HttpResponse {
let body = json::parse(&encryption::decrypt_packet(&body).unwrap()).unwrap();
2024-03-28 16:12:10 +00:00
if body["asset_version"].to_string() != global::ASSET_VERSION && body["asset_version"].to_string() != global::ASSET_VERSION_JP {
println!("Warning! Asset version is not what was expected. (Did the app update?)");
}
2024-03-28 16:12:10 +00:00
let key = global::get_login(req.headers());
let mut user = userdata::get_acc(&key);
user["user"]["last_login_time"] = global::timestamp().into();
user["stamina"]["last_updated_time"] = global::timestamp().into();
2024-03-28 16:12:10 +00:00
let hash = if body["asset_version"].to_string() == global::ASSET_VERSION_JP {
global::ASSET_HASH_JP
} else {
global::ASSET_HASH
};
userdata::save_acc(&key, user);
let resp = object!{
"code": 0,
"server_time": global::timestamp(),
"data": {
2024-03-28 16:12:10 +00:00
"asset_hash": hash,
"token": hex::encode("Hello") //what is this?
}
};
global::send(resp)
}