System architecture:
Manages the description and auction status (created, auction, completed, cancelled) of an item.
- getItem - Gets an item by an ID.
- getItemsForUser - Gets a list of items in a provided status that are owned by a given user.
- AuctionStarted (public) - When the auction is started, in response to startAuction.
- ItemUpdated (private) - When user editable fields on an item are updated in response to createItem.
- AuctionCancelled (private) - When the auction is cancelled, in response to cancelAuction.
- AuctionFinished (private) - When the auction is finished, in response to BiddingFinished.
Event emitted publically are published via a broker topic named item-ItemEvent
.
- createItem - Creates an item - emits ItemUpdated.
- updateItem - Updates user editable properties of an item, if allowed in the current state (eg, currency can't be updated after auction is started), emits ItemUpdated.
- startAuction - Starts the auction if current state allows it, emits AuctionStarted.
- cancelAuction (not supported) - Cancels the auction if current state allows it, emits AuctionCancelled.
- BidPlaced - Updates the current price of the item.
- BiddingFinished - Completes the auction if current state allows, emits AuctionFinished.
Manages bids on items.
- getBids - Gets all the bids for an item.
- BidPlaced - When a bid is placed, in response to placeBid.
- BiddingFinished - When bidding has finished, in response to finishBidding.
- placeBid - Places a bid, if the bid is greater than the current bid, emits BidPlaced.
- finishBidding - Triggered by scheduled task that polls a read side view of auctions to finish, emits BiddingFinished
- AuctionStarted - Creates a new auction for the item
- AuctionCancelled - Completes an auction prematurely
Handles all item searching.
- search - Search for items currently under auction matching a given criteria.
- getUserAuctions - Gets a list of all current auctions that a user is participating in by user ID.
- ItemUpdated - Creates or updates the details for an item in the search index
- AuctionStarted - Updates the status for an item to started
- AuctionFinished - Deletes an item from the search index
- AuctionCancelled - Deletes an item from the search index
- BidPlaced - Updates the current price for an item, if it exists in the index
Handles the transaction of negotiating delivery info and making payment of an item that has completed an auction.
- getTransaction - Gets a transaction by an items ID.
- getTransactionsForUser - Gets a list of all transactions that a given user is involved with.
- DeliveryByNegotiation - When the buyer has selected by negotiation, in response to submitDeliveryDetails.
- DeliveryPriceUpdated - When the seller has updated the delivery price, in response to setDeliveryPrice.
- PaymentDetailsSubmitted - When payment details are submitted, in response to submitPaymentDetails.
- PaymentConfirmed - When payment has been confirmed, in response to payment service ReceivedPayment.
- PaymentFailed - When payment has failed, in response to payment service FailedPayment.
- ItemDispatched - When the item has been dispatched, in response to dispatchItem.
- ItemReceived - When the item has been received, in response to receiveItem.
- MessageSent - When a user has sent a message, in response to sendMessage.
- RefundInitiated - When the seller has initiated a refund, in response to initiateRefund.
- RefundConfirmed - When a refund has been confirmed.
- sendMessage - Send a message to the other user, emits MessageSent.
- submitDeliveryDetails - Used by the buyer to submit delivery details, emits DeliveryDetailsSubmitted.
- setDeliveryPrice - Used by the seller to set the delivery price when delivery option is by negotiation, emits DeliveryPriceUpdated.
- submitPaymentDetails - Used by the buyer to submit payment details.
- dispatchItem - Used by the seller to say they have dispatched the item.
- receiveItem - Used by the buyer to say they have received the item.
- initiateRefund - Used by the seller to initiate a refund.
- AuctionFinished - Creates the transaction.
- ReceivedPayment - Indicates the payment has been made, emits PaymentConfirmed.
- FailedPayment - Indicates payment failed, emits PaymentFailed.
- MadeRefund - Indicates a refund was made, emits RefundConfirmed.