mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-05 06:12:14 +02:00
pushing
This commit is contained in:
21
httpserver/src/routes/game/guild_raid_main_info.rs
Normal file
21
httpserver/src/routes/game/guild_raid_main_info.rs
Normal file
@@ -0,0 +1,21 @@
|
||||
use actix_web::{put, web, HttpResponse, Result};
|
||||
use bd2::proto::proto_net::GuildRaidMainInfoRequest;
|
||||
use crypto::network::parse_packet;
|
||||
use gameserver::logic::game::guild_raid_main_info;
|
||||
use sqlx::SqlitePool;
|
||||
|
||||
#[put("GuildRaidMainInfo")]
|
||||
async fn guild_raid_main_info_handler(
|
||||
pool: web::Data<SqlitePool>,
|
||||
body: String,
|
||||
user_id: web::ReqData<i64>,
|
||||
) -> Result<HttpResponse> {
|
||||
let uid = *user_id;
|
||||
let req =
|
||||
parse_packet::<GuildRaidMainInfoRequest>("GuildRaidMainInfo", &body).map_err(|e| {
|
||||
tracing::warn!("Failed to parse GuildRaidMainInfo: {}", e);
|
||||
actix_web::error::ErrorBadRequest("Invalid packet")
|
||||
})?;
|
||||
let response = guild_raid_main_info::handle(&pool, uid, req).await;
|
||||
Ok(HttpResponse::Ok().json(response))
|
||||
}
|
||||
Reference in New Issue
Block a user