Overview
Creates a new Publisher entity in the Catalog domain. Publishers are aggregate roots that represent book publishing companies within our bounded context.
This endpoint follows Domain-Driven Design principles by implementing the Command pattern through MediatR. The command is validated using FluentValidation before being processed by the domain service.
Implementation Details
The Create Publisher operation is implemented using the CQRS pattern with a dedicated command handler:
Loading graph...
Key Components
- CreatePublisherCommand: Implements
ICommand<Guid>
to create a new publisher - CreatePublisherHandler: Processes the command using repository pattern
- CreatePublisherValidator: Validates the command parameters using FluentValidation
- CreatePublisherEndpoint: Maps the HTTP POST request to the command handler
- Publisher Entity: Domain entity that encapsulates publisher data and business rules
- PublisherCreatedEvent: Domain event raised when publisher is created
Domain Context
In our domain model, Publisher
represents a core aggregate that encapsulates:
- Unique identifier (Id)
- Name of the publishing company
- Associated metadata and business rules
The Create Publisher command is a write operation that:
- Validates the input parameters
- Creates a new Publisher entity
- Registers a PublisherCreatedEvent domain event
- Persists the entity to the repository
- Returns the unique identifier of the created publisher
Business Rules
- Name must be provided and cannot be empty
- Name must not exceed the maximum length limit
- The operation raises a domain event that can trigger side effects in other bounded contexts
Technical Implementation
The implementation uses several patterns and techniques:
- CQRS: Separates the write model (command) from the read model (query)
- Repository Pattern: The
IPublisherRepository
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 publisher data
- The validator ensures all business rules are satisfied
- The command handler creates a new Publisher 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 publisher ID and location header
Authorization
This endpoint requires admin privileges. Users must have the Admin role to access this endpoint.
Architecture
POST (/api/v1/publishers)
Request Body
Example Usage
curl -X POST https://api.bookworm.com/api/v1/publisers \ -H "Authorization: Bearer <admin-token>" \ -H "Content-Type: application/json" \ -d '{ "name": "New Publisher" }'
Validation Rules
- Name field is required and cannot be empty
- Name must not exceed the large data schema length limit
Responses
201 Created
Returns the newly created publisher’s ID (GUID) with the following:
- Response Body: GUID of the created publisher
- Location Header: URL to the newly created publisher resource following the pattern
/api/v1/publishers/{id}
400 Bad Request
Returned when:
- The request body fails validation rules
- The name field is missing or empty
- The name exceeds the maximum length limit
401 Unauthorized
Returned when the request lacks valid authentication credentials.
403 Forbidden
Returned when the authenticated user lacks admin privileges.