use crate::app::App;
use crate::res;
use crate::response::EitherExt;
use axum::extract::{Json, State};
use axum::response::Response;
use itertools::Itertools;
use nil_core::npc::bot::PublicBot;
use nil_payload::request::npc::bot::*;
use nil_payload::response::npc::bot::*;
pub async fn get_coords(State(app): State<App>, Json(req): Json<GetBotCoordsRequest>) -> Response {
app
.continent(req.world, |k| k.coords_of(req.id).collect_vec())
.await
.map_left(|coords| res!(OK, GetBotCoordsResponse(coords)))
.into_inner()
}
pub async fn get_public_bot(
State(app): State<App>,
Json(req): Json<GetPublicBotRequest>,
) -> Response {
app
.bot_manager(req.world, |bm| bm.bot(&req.id).map(PublicBot::from))
.await
.try_map_left(|bot| res!(OK, GetPublicBotResponse(bot)))
.into_inner()
}
pub async fn get_public_bots(
State(app): State<App>,
Json(req): Json<GetPublicBotsRequest>,
) -> Response {
app
.bot_manager(req.world, |bm| bm.bots().map(PublicBot::from).collect_vec())
.await
.map_left(|bots| res!(OK, GetPublicBotsResponse(bots)))
.into_inner()
}