Finance (v1.0.0)
Overview
The Finance domain serves as the backbone of BookWorm’s monetary operations, handling all financial transactions across the platform. This support domain manages basket reservations, order processing workflows, payment processing, refund mechanisms, and financial reporting.
Key responsibilities include:
- Orchestrating the financial aspects of order fulfillment
- Managing payment gateway integrations
- Handling billing and invoicing processes
- Processing refunds and adjustments
- Providing financial reporting and analytics
- Ensuring compliance with financial regulations
- Managing discount and promotion calculations
The Finance domain communicates with multiple other domains through event-based messaging, particularly with Ordering and Basket services. It maintains its own ledger of transactions while providing a consistent financial view across the entire BookWorm platform.
Technical Implementation
The Finance service is implemented using an event-driven architecture with a state machine-based saga pattern to coordinate the order processing workflow. Key components include:
State Machine Workflow
The service implements a robust order state machine with the following states:
- Placed: Initial state when an order is placed
- Completed: Final state for successfully processed orders
- Cancelled: State for orders that have been cancelled
- Failed: State for orders that encountered errors during processing
Event Flow
The Finance service processes the following key integration events:
UserCheckedOutIntegrationEvent
: Triggered when a user completes checkoutOrderStatusChangedToCompleteIntegrationEvent
: Signals order completionOrderStatusChangedToCancelIntegrationEvent
: Signals order cancellationBasketDeletedCompleteIntegrationEvent
: Confirms successful basket deletionBasketDeletedFailedIntegrationEvent
: Indicates failure in basket deletion
Commands
The service issues various commands to coordinate the order processing workflow:
PlaceOrderCommand
: Initiates the order processingCompleteOrderCommand
: Finalizes a successful orderCancelOrderCommand
: Processes order cancellationDeleteBasketCompleteCommand
: Handles successful basket cleanupDeleteBasketFailedCommand
: Manages failed basket deletion scenarios
Query Capabilities
The Finance service provides query endpoints to retrieve order state information:
GetOrderStateQuery
: Allows retrieval of current order state and details
Bounded context
Messages for this domain
Sends messages (5)
Quickly find the message you need by searching for the name, type, or summary.Showing 1 to 4 of 5 results
Receives messages (6)
Quickly find the message you need by searching for the name, type, or summary.Showing 1 to 4 of 6 results