Skip to content

Commit e42ceaa

Browse files
authored
Avoid product quantity overflow (#1113)
1 parent 230310c commit e42ceaa

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Modules/SimplCommerce.Module.ShoppingCart/Services/CartService.cs

+20
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,13 @@ public async Task<AddToCartResult> AddToCart(long customerId, long productId, in
4747
return addToCartResult;
4848
}
4949

50+
if (quantity > int.MaxValue)
51+
{
52+
return CreateQuantityOverflowError();
53+
}
54+
5055
var cartItem = await _cartItemRepository.Query().FirstOrDefaultAsync(x => x.ProductId == productId && x.CustomerId == customerId);
56+
5157
if (cartItem == null)
5258
{
5359
cartItem = new CartItem
@@ -63,13 +69,27 @@ public async Task<AddToCartResult> AddToCart(long customerId, long productId, in
6369
}
6470
else
6571
{
72+
if (cartItem.Quantity + quantity > int.MaxValue)
73+
{
74+
return CreateQuantityOverflowError();
75+
}
76+
6677
cartItem.Quantity = cartItem.Quantity + quantity;
6778
}
6879

6980
await _cartItemRepository.SaveChangesAsync();
7081

7182
addToCartResult.Success = true;
83+
7284
return addToCartResult;
85+
86+
AddToCartResult CreateQuantityOverflowError()
87+
{
88+
addToCartResult.ErrorMessage = _localizer["The quantity must be larger than zero"].Value;
89+
addToCartResult.ErrorCode = "wrong-quantity";
90+
91+
return addToCartResult;
92+
}
7393
}
7494

7595
// TODO separate getting product thumbnail, varation options from here

0 commit comments

Comments
 (0)