- CORS: replace permissive() with configurable whitelist (default.toml) - Auth store: synchronously restore state at creation to eliminate flash-of-login-page on refresh - MainLayout: menu highlight now tracks current route via useLocation - Add extractErrorMessage() utility to reduce repeated error parsing - Fix all clippy warnings across 4 crates (erp-auth, erp-config, erp-workflow, erp-message): remove unnecessary casts, use div_ceil, collapse nested ifs, reduce function arguments with DTOs
125 lines
3.5 KiB
Rust
125 lines
3.5 KiB
Rust
use axum::Extension;
|
|
use axum::extract::{FromRef, Path, Query, State};
|
|
use axum::response::Json;
|
|
use validator::Validate;
|
|
|
|
use erp_core::error::AppError;
|
|
use erp_core::rbac::require_permission;
|
|
use erp_core::types::{ApiResponse, PaginatedResponse, Pagination, TenantContext};
|
|
use uuid::Uuid;
|
|
|
|
use crate::dto::{CreateProcessDefinitionReq, ProcessDefinitionResp, UpdateProcessDefinitionReq};
|
|
use crate::service::definition_service::DefinitionService;
|
|
use crate::workflow_state::WorkflowState;
|
|
|
|
/// GET /api/v1/workflow/definitions
|
|
pub async fn list_definitions<S>(
|
|
State(state): State<WorkflowState>,
|
|
Extension(ctx): Extension<TenantContext>,
|
|
Query(pagination): Query<Pagination>,
|
|
) -> Result<Json<ApiResponse<PaginatedResponse<ProcessDefinitionResp>>>, AppError>
|
|
where
|
|
WorkflowState: FromRef<S>,
|
|
S: Clone + Send + Sync + 'static,
|
|
{
|
|
require_permission(&ctx, "workflow:list")?;
|
|
|
|
let (defs, total) = DefinitionService::list(ctx.tenant_id, &pagination, &state.db).await?;
|
|
|
|
let page = pagination.page.unwrap_or(1);
|
|
let page_size = pagination.limit();
|
|
let total_pages = total.div_ceil(page_size);
|
|
|
|
Ok(Json(ApiResponse::ok(PaginatedResponse {
|
|
data: defs,
|
|
total,
|
|
page,
|
|
page_size,
|
|
total_pages,
|
|
})))
|
|
}
|
|
|
|
/// POST /api/v1/workflow/definitions
|
|
pub async fn create_definition<S>(
|
|
State(state): State<WorkflowState>,
|
|
Extension(ctx): Extension<TenantContext>,
|
|
Json(req): Json<CreateProcessDefinitionReq>,
|
|
) -> Result<Json<ApiResponse<ProcessDefinitionResp>>, AppError>
|
|
where
|
|
WorkflowState: FromRef<S>,
|
|
S: Clone + Send + Sync + 'static,
|
|
{
|
|
require_permission(&ctx, "workflow:create")?;
|
|
req.validate()
|
|
.map_err(|e| AppError::Validation(e.to_string()))?;
|
|
|
|
let resp = DefinitionService::create(
|
|
ctx.tenant_id,
|
|
ctx.user_id,
|
|
&req,
|
|
&state.db,
|
|
&state.event_bus,
|
|
)
|
|
.await?;
|
|
|
|
Ok(Json(ApiResponse::ok(resp)))
|
|
}
|
|
|
|
/// GET /api/v1/workflow/definitions/{id}
|
|
pub async fn get_definition<S>(
|
|
State(state): State<WorkflowState>,
|
|
Extension(ctx): Extension<TenantContext>,
|
|
Path(id): Path<Uuid>,
|
|
) -> Result<Json<ApiResponse<ProcessDefinitionResp>>, AppError>
|
|
where
|
|
WorkflowState: FromRef<S>,
|
|
S: Clone + Send + Sync + 'static,
|
|
{
|
|
require_permission(&ctx, "workflow:read")?;
|
|
|
|
let resp = DefinitionService::get_by_id(id, ctx.tenant_id, &state.db).await?;
|
|
Ok(Json(ApiResponse::ok(resp)))
|
|
}
|
|
|
|
/// PUT /api/v1/workflow/definitions/{id}
|
|
pub async fn update_definition<S>(
|
|
State(state): State<WorkflowState>,
|
|
Extension(ctx): Extension<TenantContext>,
|
|
Path(id): Path<Uuid>,
|
|
Json(req): Json<UpdateProcessDefinitionReq>,
|
|
) -> Result<Json<ApiResponse<ProcessDefinitionResp>>, AppError>
|
|
where
|
|
WorkflowState: FromRef<S>,
|
|
S: Clone + Send + Sync + 'static,
|
|
{
|
|
require_permission(&ctx, "workflow:update")?;
|
|
|
|
let resp =
|
|
DefinitionService::update(id, ctx.tenant_id, ctx.user_id, &req, &state.db).await?;
|
|
Ok(Json(ApiResponse::ok(resp)))
|
|
}
|
|
|
|
/// POST /api/v1/workflow/definitions/{id}/publish
|
|
pub async fn publish_definition<S>(
|
|
State(state): State<WorkflowState>,
|
|
Extension(ctx): Extension<TenantContext>,
|
|
Path(id): Path<Uuid>,
|
|
) -> Result<Json<ApiResponse<ProcessDefinitionResp>>, AppError>
|
|
where
|
|
WorkflowState: FromRef<S>,
|
|
S: Clone + Send + Sync + 'static,
|
|
{
|
|
require_permission(&ctx, "workflow:publish")?;
|
|
|
|
let resp = DefinitionService::publish(
|
|
id,
|
|
ctx.tenant_id,
|
|
ctx.user_id,
|
|
&state.db,
|
|
&state.event_bus,
|
|
)
|
|
.await?;
|
|
|
|
Ok(Json(ApiResponse::ok(resp)))
|
|
}
|