Overview
The Create Category endpoint allows administrators to add new categories to the Catalog domain. This operation follows Domain-Driven Design principles by:
- Validating the category entity against domain rules and invariants
- Creating a new aggregate root in the Categories collection
- Publishing a
CategoryCreatedEvent
that other bounded contexts can subscribe to
This endpoint represents the command side of our CQRS pattern implementation. The category entity becomes immediately available for queries after successful creation.
Category creation requires proper authentication with Admin privileges, as indicated by the badge.
Implementation Details
The Create Category operation is implemented using the CQRS pattern with a dedicated command handler:
Loading graph...
Key Components
- CreateCategoryCommand: Implements
ICommand<Guid>
to create a new category - CreateCategoryHandler: Processes the command using repository pattern
- CreateCategoryValidator: Validates the command parameters using FluentValidation
- CreateCategoryEndpoint: Maps the HTTP POST request to the command handler
- Category Entity: Domain entity that encapsulates category data and business rules
- CategoryCreatedEvent: Domain event raised when category is created
Technical Implementation
The implementation uses several patterns and techniques:
- CQRS: Separates the write model (command) from the read model (query)
- Repository Pattern: The
ICategoryRepository
abstracts the data access layer - Domain-Driven Design: Uses domain entities and events to encapsulate business logic
- Minimal API: Uses .NET’s minimal API approach with endpoint mapping
- FluentValidation: Validates the command parameters
The command execution flow:
- The endpoint receives the HTTP POST request with the category data
- The validator ensures all business rules are satisfied
- The command handler creates a new Category entity
- The entity registers a domain event
- The repository persists the entity and publishes domain events
- The endpoint returns a 201 Created response with the category ID and location header
Security
- This endpoint requires admin authorization through a policy-based security check
- Only authenticated users with admin privileges can access this endpoint
Validation Rules
- Category name is required and cannot be empty
- Category name has a maximum length defined by
DataSchemaLength.Medium
- Validation is handled by FluentValidation
Technical Implementation
- Uses CQRS pattern with Mediator pattern (
ISender
) - Returns a
201 Created
response with the new category’s GUID - Location header includes a versioned URL to the newly created resource
- Implements optimistic concurrency through Unit of Work pattern
Architecture
POST (/api/v1/categories)
Request Body
Example Usage
curl -X POST https://api.bookworm.com/api/v1/categories \ -H "Authorization: Bearer <admin-token>" \ -H "Content-Type: application/json" \ -d '{ "name": "New Category" }'
Responses
201 Created
- Returns the newly created category’s GUID
- Location header includes a versioned URL to the newly created resource
- Format:
/api/v1/categories/{guid}
400 Bad Request
Returned when validation fails (e.g., empty name or name too long)
409 Conflict
Returned when a category with the same name already exists
401 Unauthorized
Returned when the request lacks valid authentication credentials
403 Forbidden
Returned when the authenticated user lacks admin privileges