use crate::{ApiResponse, error::ApiError}; use actix_web::{HttpResponse, Result, web}; use room::ws_context::WsUserContext; use service::AppService; use session::Session; use uuid::Uuid; #[utoipa::path( get, path = "/api/project_room/{project_name}/room-categories", params( ("project_name" = String, Path), ), responses( (status = 200, description = "List room categories", body = ApiResponse>), (status = 401, description = "Unauthorized"), (status = 404, description = "Not found"), ), tag = "Room" )] pub async fn category_list( service: web::Data, session: Session, path: web::Path, ) -> Result { let project_name = path.into_inner(); let user_id = session .user() .ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?; let ctx = WsUserContext::new(user_id); let resp = service .room .room_category_list(project_name, &ctx) .await .map_err(ApiError::from)?; Ok(ApiResponse::ok(resp).to_response()) } #[utoipa::path( post, path = "/api/project_room/{project_name}/room-categories", params( ("project_name" = String, Path), ), request_body = room::RoomCategoryCreateRequest, responses( (status = 200, description = "Create room category", body = ApiResponse), (status = 401, description = "Unauthorized"), (status = 403, description = "Forbidden"), (status = 404, description = "Not found"), ), tag = "Room" )] pub async fn category_create( service: web::Data, session: Session, path: web::Path, body: web::Json, ) -> Result { let project_name = path.into_inner(); let user_id = session .user() .ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?; let ctx = WsUserContext::new(user_id); let resp = service .room .room_category_create(project_name, body.into_inner(), &ctx) .await .map_err(ApiError::from)?; Ok(ApiResponse::ok(resp).to_response()) } #[utoipa::path( patch, path = "/api/room-categories/{category_id}", params( ("category_id" = Uuid, Path), ), request_body = room::RoomCategoryUpdateRequest, responses( (status = 200, description = "Update room category", body = ApiResponse), (status = 401, description = "Unauthorized"), (status = 403, description = "Forbidden"), (status = 404, description = "Not found"), ), tag = "Room" )] pub async fn category_update( service: web::Data, session: Session, path: web::Path, body: web::Json, ) -> Result { let category_id = path.into_inner(); let user_id = session .user() .ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?; let ctx = WsUserContext::new(user_id); let resp = service .room .room_category_update(category_id, body.into_inner(), &ctx) .await .map_err(ApiError::from)?; Ok(ApiResponse::ok(resp).to_response()) } #[utoipa::path( delete, path = "/api/room-categories/{category_id}", params( ("category_id" = Uuid, Path), ), responses( (status = 200, description = "Delete room category"), (status = 401, description = "Unauthorized"), (status = 403, description = "Forbidden"), (status = 404, description = "Not found"), ), tag = "Room" )] pub async fn category_delete( service: web::Data, session: Session, path: web::Path, ) -> Result { let category_id = path.into_inner(); let user_id = session .user() .ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?; let ctx = WsUserContext::new(user_id); service .room .room_category_delete(category_id, &ctx) .await .map_err(ApiError::from)?; Ok(ApiResponse::ok(true).to_response()) }