Implemented a complete shopping cart system with database persistence, replacing the previous stub implementation. The cart now properly stores items across sessions and follows the project's architecture patterns. Database Changes: - Add cart_items table with vendor_id, session_id, product_id, quantity, price_at_add - Create unique constraint to prevent duplicate items per session - Add indexes for session lookups and old cart cleanup - Run migration a2064e1dfcd4 to create cart_items table New Models & Schemas: - models/database/cart.py: CartItem SQLAlchemy model with relationships - models/schema/cart.py: Pydantic schemas for requests/responses * AddToCartRequest, UpdateCartItemRequest * CartResponse, CartItemResponse, CartOperationResponse, ClearCartResponse Exception Handling: - app/exceptions/cart.py: Cart-specific exceptions following project patterns * CartItemNotFoundException - item not found in cart * InsufficientInventoryForCartException - not enough inventory for cart operation * InvalidCartQuantityException - invalid quantity validation * CartValidationException - general cart validation * EmptyCartException - operations on empty cart * ProductNotAvailableForCartException - product unavailable - Updated app/exceptions/__init__.py to export cart exceptions Service Layer: - Implement cart_service.get_cart() - fetch cart from database with totals - Implement cart_service.add_to_cart() - create or update cart items with inventory checks - Implement cart_service.update_cart_item() - update quantity with validation - Implement cart_service.remove_from_cart() - delete cart item - Implement cart_service.clear_cart() - remove all items for session - Replace generic exceptions with cart-specific ones - Fix InsufficientInventoryException usage (was using wrong parameters) API Layer: - Update app/api/v1/shop/cart.py to use Pydantic schemas - Add response_model declarations to all endpoints - Add return type hints for type safety - Convert service dict responses to Pydantic models Features: - Cart items persist in database across server restarts - Inventory validation before adding/updating items - Price captured at time of adding to cart - Duplicate items update quantity instead of creating new entries - Full CRUD operations with proper error handling - Type-safe API with auto-generated OpenAPI documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
117 lines
3.4 KiB
Python
117 lines
3.4 KiB
Python
# app/exceptions/cart.py
|
|
"""
|
|
Shopping cart specific exceptions.
|
|
"""
|
|
|
|
from typing import Optional
|
|
from .base import (
|
|
ResourceNotFoundException,
|
|
ValidationException,
|
|
BusinessLogicException
|
|
)
|
|
|
|
|
|
class CartItemNotFoundException(ResourceNotFoundException):
|
|
"""Raised when a cart item is not found."""
|
|
|
|
def __init__(self, product_id: int, session_id: str):
|
|
super().__init__(
|
|
resource_type="CartItem",
|
|
identifier=str(product_id),
|
|
message=f"Product {product_id} not found in cart",
|
|
error_code="CART_ITEM_NOT_FOUND"
|
|
)
|
|
self.details.update({
|
|
"product_id": product_id,
|
|
"session_id": session_id
|
|
})
|
|
|
|
|
|
class EmptyCartException(ValidationException):
|
|
"""Raised when trying to perform operations on an empty cart."""
|
|
|
|
def __init__(self, session_id: str):
|
|
super().__init__(
|
|
message="Cart is empty",
|
|
details={"session_id": session_id}
|
|
)
|
|
self.error_code = "CART_EMPTY"
|
|
|
|
|
|
class CartValidationException(ValidationException):
|
|
"""Raised when cart data validation fails."""
|
|
|
|
def __init__(
|
|
self,
|
|
message: str = "Cart validation failed",
|
|
field: Optional[str] = None,
|
|
details: Optional[dict] = None,
|
|
):
|
|
super().__init__(
|
|
message=message,
|
|
field=field,
|
|
details=details,
|
|
)
|
|
self.error_code = "CART_VALIDATION_FAILED"
|
|
|
|
|
|
class InsufficientInventoryForCartException(BusinessLogicException):
|
|
"""Raised when product doesn't have enough inventory for cart operation."""
|
|
|
|
def __init__(
|
|
self,
|
|
product_id: int,
|
|
product_name: str,
|
|
requested: int,
|
|
available: int,
|
|
):
|
|
message = f"Insufficient inventory for product '{product_name}'. Requested: {requested}, Available: {available}"
|
|
|
|
super().__init__(
|
|
message=message,
|
|
error_code="INSUFFICIENT_INVENTORY_FOR_CART",
|
|
details={
|
|
"product_id": product_id,
|
|
"product_name": product_name,
|
|
"requested_quantity": requested,
|
|
"available_quantity": available,
|
|
},
|
|
)
|
|
|
|
|
|
class InvalidCartQuantityException(ValidationException):
|
|
"""Raised when cart quantity is invalid."""
|
|
|
|
def __init__(self, quantity: int, min_quantity: int = 1, max_quantity: Optional[int] = None):
|
|
if quantity < min_quantity:
|
|
message = f"Quantity must be at least {min_quantity}"
|
|
elif max_quantity and quantity > max_quantity:
|
|
message = f"Quantity cannot exceed {max_quantity}"
|
|
else:
|
|
message = f"Invalid quantity: {quantity}"
|
|
|
|
super().__init__(
|
|
message=message,
|
|
field="quantity",
|
|
details={
|
|
"quantity": quantity,
|
|
"min_quantity": min_quantity,
|
|
"max_quantity": max_quantity,
|
|
},
|
|
)
|
|
self.error_code = "INVALID_CART_QUANTITY"
|
|
|
|
|
|
class ProductNotAvailableForCartException(BusinessLogicException):
|
|
"""Raised when product is not available for adding to cart."""
|
|
|
|
def __init__(self, product_id: int, reason: str):
|
|
super().__init__(
|
|
message=f"Product {product_id} cannot be added to cart: {reason}",
|
|
error_code="PRODUCT_NOT_AVAILABLE_FOR_CART",
|
|
details={
|
|
"product_id": product_id,
|
|
"reason": reason,
|
|
},
|
|
)
|