refactor: migrate to clean architecture with trait-based DI (v0.2.0)
Complete architectural overhaul across all 12 crates: - Replace validator crate with zod-rs for all DTO validation - Replace manual pagination with paginator-rs/paginator-sea-orm - Migrate all modules (iam, cms, gacha, dimentorin) to clean architecture: domain → application → infrastructure layers - Introduce trait-based DI (Arc<dyn Trait>) at every layer for repositories and services - Delete all v1/ legacy SurrealDB-era code across every crate - Replace opaque response helpers with typed IntoResponse structs (ApiSuccess, ApiCreated, ApiPaginated, ApiMessage) - Remove dual_mode_repository, migration_validation_errors, validator.rs dead code - Zero cargo clippy warnings; release build clean Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
1b3366d735
commit
e432a1a743
@@ -0,0 +1,129 @@
|
||||
use std::sync::Arc;
|
||||
use axum::{Extension, extract::Path, http::HeaderMap, response::IntoResponse};
|
||||
use imphnen_libs::{AppState, ValidatedJson};
|
||||
use imphnen_utils::{ApiSuccess, ApiMessage, extract_email};
|
||||
use imphnen_entities::ResponseSuccessDto;
|
||||
use imphnen_iam::{PermissionsEnum, require_permissions};
|
||||
use imphnen_utils::AppError;
|
||||
use uuid::Uuid;
|
||||
use super::dto::{GachaRollCreateRequestDto, GachaRollItemDto};
|
||||
use crate::gacha_rolls::domain::{GachaRollEntity, GachaRollService};
|
||||
|
||||
#[utoipa::path(
|
||||
get,
|
||||
security(("Bearer" = [])),
|
||||
path = "/v1/gacha/rolls/detail/{id}",
|
||||
params(
|
||||
("id" = String, Path, description = "Gacha Roll ID")
|
||||
),
|
||||
responses(
|
||||
(status = 200, description = "[ADMIN] Get gacha roll by ID", body = ResponseSuccessDto<GachaRollItemDto>)
|
||||
),
|
||||
tag = "Gacha"
|
||||
)]
|
||||
pub async fn get_gacha_roll_by_id(
|
||||
headers: HeaderMap,
|
||||
Extension(state): Extension<AppState>,
|
||||
Extension(service): Extension<Arc<dyn GachaRollService>>,
|
||||
Path(id): Path<String>,
|
||||
) -> Result<impl IntoResponse, AppError> {
|
||||
require_permissions!(headers, state, [PermissionsEnum::ReadDetailGachaRolls], {
|
||||
let uuid = Uuid::parse_str(&id)
|
||||
.map_err(|e| AppError::BadRequestError(format!("Invalid UUID: {e}")))?;
|
||||
let roll = service.get_roll(uuid).await?;
|
||||
Ok(ApiSuccess(GachaRollItemDto::from(&roll)))
|
||||
})
|
||||
}
|
||||
|
||||
#[utoipa::path(
|
||||
post,
|
||||
security(("Bearer" = [])),
|
||||
path = "/v1/gacha/rolls/create",
|
||||
request_body = GachaRollCreateRequestDto,
|
||||
responses(
|
||||
(status = 201, description = "[ADMIN] Create new gacha roll")
|
||||
),
|
||||
tag = "Gacha"
|
||||
)]
|
||||
pub async fn post_create_gacha_roll(
|
||||
headers: HeaderMap,
|
||||
Extension(state): Extension<AppState>,
|
||||
Extension(service): Extension<Arc<dyn GachaRollService>>,
|
||||
ValidatedJson(payload): ValidatedJson<GachaRollCreateRequestDto>,
|
||||
) -> Result<impl IntoResponse, AppError> {
|
||||
require_permissions!(headers.clone(), state, [PermissionsEnum::CreateGachaRolls], {
|
||||
let email = extract_email(&headers)
|
||||
.ok_or_else(|| AppError::AuthenticationError("Unauthorized".to_string()))?;
|
||||
let user_info = state.user_lookup_service.get_user_by_email(&email, &state).await
|
||||
.map_err(|_| AppError::NotFoundError("User not found".to_string()))?;
|
||||
let user_id = Uuid::parse_str(&user_info.basic_info.id)
|
||||
.map_err(|e| AppError::BadRequestError(e.to_string()))?;
|
||||
let item_id = Uuid::parse_str(&payload.item_id)
|
||||
.map_err(|e| AppError::BadRequestError(format!("Invalid item_id UUID: {e}")))?;
|
||||
let entity = GachaRollEntity {
|
||||
id: Uuid::new_v4(),
|
||||
user_id,
|
||||
gacha_id: "default".to_string(),
|
||||
item_id,
|
||||
weight: payload.weight,
|
||||
quantity: payload.quantity,
|
||||
is_deleted: false,
|
||||
created_at: Some(chrono::Utc::now().naive_utc()),
|
||||
updated_at: Some(chrono::Utc::now().naive_utc()),
|
||||
};
|
||||
service.create_roll(entity).await?;
|
||||
Ok(ApiMessage::created("Gacha roll created"))
|
||||
})
|
||||
}
|
||||
|
||||
#[utoipa::path(
|
||||
post,
|
||||
security(("Bearer" = [])),
|
||||
path = "/v1/gacha/rolls/execute",
|
||||
responses(
|
||||
(status = 200, description = "[USER] Execute a gacha roll and receive a result", body = ResponseSuccessDto<GachaRollItemDto>)
|
||||
),
|
||||
tag = "Gacha"
|
||||
)]
|
||||
pub async fn post_execute_gacha_roll(
|
||||
headers: HeaderMap,
|
||||
Extension(state): Extension<AppState>,
|
||||
Extension(service): Extension<Arc<dyn GachaRollService>>,
|
||||
) -> Result<impl IntoResponse, AppError> {
|
||||
require_permissions!(headers.clone(), state, [PermissionsEnum::ExecuteGachaRolls], {
|
||||
let email = extract_email(&headers)
|
||||
.ok_or_else(|| AppError::AuthenticationError("Unauthorized".to_string()))?;
|
||||
let user_info = state.user_lookup_service.get_user_by_email(&email, &state).await
|
||||
.map_err(|_| AppError::NotFoundError("User not found".to_string()))?;
|
||||
let user_id = Uuid::parse_str(&user_info.basic_info.id)
|
||||
.map_err(|e| AppError::BadRequestError(e.to_string()))?;
|
||||
let roll = service.execute_roll(user_id).await?;
|
||||
Ok(ApiSuccess(GachaRollItemDto::from(&roll)))
|
||||
})
|
||||
}
|
||||
|
||||
#[utoipa::path(
|
||||
delete,
|
||||
security(("Bearer" = [])),
|
||||
path = "/v1/gacha/rolls/delete/{id}",
|
||||
params(
|
||||
("id" = String, Path, description = "Gacha Roll ID")
|
||||
),
|
||||
responses(
|
||||
(status = 200, description = "[ADMIN] Delete gacha roll (soft delete)")
|
||||
),
|
||||
tag = "Gacha"
|
||||
)]
|
||||
pub async fn delete_gacha_roll(
|
||||
headers: HeaderMap,
|
||||
Extension(state): Extension<AppState>,
|
||||
Extension(service): Extension<Arc<dyn GachaRollService>>,
|
||||
Path(id): Path<String>,
|
||||
) -> Result<impl IntoResponse, AppError> {
|
||||
require_permissions!(headers, state, [PermissionsEnum::DeleteGachaRolls], {
|
||||
let uuid = Uuid::parse_str(&id)
|
||||
.map_err(|e| AppError::BadRequestError(format!("Invalid UUID: {e}")))?;
|
||||
service.delete_roll(uuid).await?;
|
||||
Ok(ApiMessage::ok("Gacha roll deleted"))
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user