mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-05 06:12:14 +02:00
21 lines
736 B
Rust
21 lines
736 B
Rust
use actix_web::{put, web, HttpResponse, Result};
|
|
use bd2::proto::proto_net::CafeteriaInfoRequest;
|
|
use crypto::network::parse_packet;
|
|
use gameserver::logic::game::cafeteria::cafeteria_info;
|
|
use sqlx::SqlitePool;
|
|
|
|
#[put("CafeteriaInfo")]
|
|
async fn cafeteria_info_handler(
|
|
pool: web::Data<SqlitePool>,
|
|
body: String,
|
|
user_id: web::ReqData<i64>,
|
|
) -> Result<HttpResponse> {
|
|
let uid = *user_id;
|
|
let req = parse_packet::<CafeteriaInfoRequest>("CafeteriaInfo", &body).map_err(|e| {
|
|
tracing::warn!("Failed to parse CafeteriaInfo: {}", e);
|
|
actix_web::error::ErrorBadRequest("Invalid packet")
|
|
})?;
|
|
let response = cafeteria_info::handle(&pool, uid, req).await;
|
|
Ok(HttpResponse::Ok().json(response))
|
|
}
|