Overview
The Create Book endpoint allows administrators to add new books to the Catalog domain. This operation follows Domain-Driven Design principles by:
- Validating the book entity against domain rules and invariants
- Creating a new aggregate root in the Books collection
- Publishing a
BookCreatedEvent
that other bounded contexts can subscribe to - Automatically generating embeddings for semantic search using AI
This endpoint represents the command side of our CQRS pattern implementation. The book entity becomes immediately available for queries after successful creation.
Book creation requires proper authentication with Admin privileges, as indicated by the badge.
Architecture
POST (/api/v1/books)
Request Body
Example Usage
curl -X POST "https://api.bookworm.com/api/v1/books" \ -H "Content-Type: multipart/form-data" \ -H "Authorization: Bearer <admin-token>" \ -F "name=Updated Book Name" \ -F "description=Updated Book Description" \ -F "price=19.99" \ -F "priceSale=14.99" \ -F "categoryId=123e4567-e89b-12d3-a456-426614174000" \ -F "publisherId=123e4567-e89b-12d3-a456-426614174000" \ -F "authorIds=123e4567-e89b-12d3-a456-426614174000,123e4567-e89b-12d3-a456-426614174001" \ -F "image=@/path/to/image.jpg"
Implementation Details
The Create Book operation is implemented using the CQRS pattern with a dedicated command handler:
Loading graph...
Key Components
- CreateBookCommand: Implements
ICommand<Guid>
to create a new book - PreCreateBookHandler: Processes image upload before book creation
- CreateBookHandler: Processes the command using repository pattern
- CreateBookValidator: Validates the command parameters using FluentValidation
- CreateBookEndpoint: Maps the HTTP POST request to the command handler
- Book Entity: Domain entity that encapsulates book data and business rules
- BookCreatedEvent: Domain event raised when book is created
- BookUpsertEmbeddingHandler: Handles semantic search embedding generation
Technical Implementation
The implementation uses several patterns and techniques:
- CQRS: Separates the write model (command) from the read model (query)
- Repository Pattern: The
IBookRepository
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
- Event Sourcing: Uses domain events for side effects (embedding generation)
The command execution flow:
- The endpoint receives the HTTP POST request with the book data
- The validator ensures all business rules are satisfied
- If an image is provided, it’s uploaded to blob storage
- The command handler creates a new Book entity
- The entity registers a domain event
- The repository persists the entity and publishes domain events
- The embedding handler processes the book for semantic search
- The endpoint returns a 201 Created response with the book ID and location header
Validation Rules
The endpoint enforces the following validation rules:
- Name: Required, maximum length of 100 characters
- Description: Optional, maximum length of 4000 characters
- Price: Required, must be greater than 0
- PriceSale: Optional, must be greater than 0 and less than or equal to regular price
- CategoryId: Required
- PublisherId: Required
- AuthorIds: Required, at least one author must be specified
- Image: Optional, if provided:
- Maximum file size: 1MB
- Allowed file types: JPEG and PNG only
File Upload
The endpoint supports image uploads for books. Images are:
- Processed asynchronously
- Stored in blob storage
- URL is saved with the book record
Domain Events
Upon successful creation, the following domain events are triggered:
BookCreatedEvent
: Notifies other bounded contexts about the new book- Automatically triggers embedding generation for semantic search capabilities
Responses
400 Bad Request
201 Created
- Returns the newly created book ID
- Includes a Location header with the URL to the new resource
- Format:
/api/v1/books/{guid}