Try catch block in add_to_cart to allow plugins to abort the add to cart event
cc @claudiosmweb @barrykooij
This commit is contained in:
parent
d5cc80b813
commit
59359ef9b4
|
@ -110,6 +110,8 @@ class WC_Cart {
|
||||||
add_action( 'wp_loaded', array( $this, 'init' ) ); // Get cart after WP and plugins are loaded.
|
add_action( 'wp_loaded', array( $this, 'init' ) ); // Get cart after WP and plugins are loaded.
|
||||||
add_action( 'wp', array( $this, 'maybe_set_cart_cookies' ), 99 ); // Set cookies
|
add_action( 'wp', array( $this, 'maybe_set_cart_cookies' ), 99 ); // Set cookies
|
||||||
add_action( 'shutdown', array( $this, 'maybe_set_cart_cookies' ), 0 ); // Set cookies before shutdown and ob flushing
|
add_action( 'shutdown', array( $this, 'maybe_set_cart_cookies' ), 0 ); // Set cookies before shutdown and ob flushing
|
||||||
|
add_action( 'woocommerce_add_to_cart', array( $this, 'calculate_totals' ), 20, 0 );
|
||||||
|
add_action( 'woocommerce_applied_coupon', array( $this, 'calculate_totals' ), 20, 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -827,20 +829,8 @@ class WC_Cart {
|
||||||
* @return string $cart_item_key
|
* @return string $cart_item_key
|
||||||
*/
|
*/
|
||||||
public function add_to_cart( $product_id, $quantity = 1, $variation_id = '', $variation = '', $cart_item_data = array() ) {
|
public function add_to_cart( $product_id, $quantity = 1, $variation_id = '', $variation = '', $cart_item_data = array() ) {
|
||||||
|
// Wrap in try catch so plugins can throw an exception to prevent adding to cart
|
||||||
if ( $quantity <= 0 ) {
|
try {
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Load cart item data - may be added by other plugins
|
|
||||||
$cart_item_data = (array) apply_filters( 'woocommerce_add_cart_item_data', $cart_item_data, $product_id, $variation_id );
|
|
||||||
|
|
||||||
// Generate a ID based on product ID, variation ID, variation data, and other cart item data
|
|
||||||
$cart_id = $this->generate_cart_id( $product_id, $variation_id, $variation, $cart_item_data );
|
|
||||||
|
|
||||||
// See if this product and its options is already in the cart
|
|
||||||
$cart_item_key = $this->find_product_in_cart( $cart_id );
|
|
||||||
|
|
||||||
// Ensure we don't add a variation to the cart directly by variation ID
|
// Ensure we don't add a variation to the cart directly by variation ID
|
||||||
if ( 'product_variation' == get_post_type( $product_id ) ) {
|
if ( 'product_variation' == get_post_type( $product_id ) ) {
|
||||||
$variation_id = $product_id;
|
$variation_id = $product_id;
|
||||||
|
@ -850,52 +840,42 @@ class WC_Cart {
|
||||||
// Get the product
|
// Get the product
|
||||||
$product_data = wc_get_product( $variation_id ? $variation_id : $product_id );
|
$product_data = wc_get_product( $variation_id ? $variation_id : $product_id );
|
||||||
|
|
||||||
if ( ! $product_data ) {
|
// Sanitity check
|
||||||
return false;
|
if ( $quantity <= 0 || ! $product_data || 'trash' === $product_data->post->post_status ) {
|
||||||
|
throw new Exception();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( 'trash' == $product_data->post->post_status ) {
|
// Load cart item data - may be added by other plugins
|
||||||
return false;
|
$cart_item_data = (array) apply_filters( 'woocommerce_add_cart_item_data', $cart_item_data, $product_id, $variation_id );
|
||||||
}
|
|
||||||
|
|
||||||
// Force quantity to 1 if sold individually
|
// Generate a ID based on product ID, variation ID, variation data, and other cart item data
|
||||||
|
$cart_id = $this->generate_cart_id( $product_id, $variation_id, $variation, $cart_item_data );
|
||||||
|
|
||||||
|
// Find the cart item key in the existing cart
|
||||||
|
$cart_item_key = $this->find_product_in_cart( $cart_id );
|
||||||
|
|
||||||
|
// Force quantity to 1 if sold individually and check for exisitng item in cart
|
||||||
if ( $product_data->is_sold_individually() ) {
|
if ( $product_data->is_sold_individually() ) {
|
||||||
$quantity = apply_filters( 'woocommerce_add_to_cart_sold_individually_quantity', 1, $quantity, $product_id, $variation_id, $cart_item_data );
|
$quantity = apply_filters( 'woocommerce_add_to_cart_sold_individually_quantity', 1, $quantity, $product_id, $variation_id, $cart_item_data );
|
||||||
|
$in_cart_quantity = $cart_item_key ? $this->cart_contents[ $cart_item_key ]['quantity'] : 0;
|
||||||
|
|
||||||
|
if ( $in_cart_quantity > 0 ) {
|
||||||
|
throw new Exception( sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', $this->get_cart_url(), __( 'View Cart', 'woocommerce' ), sprintf( __( 'You cannot add another "%s" to your cart.', 'woocommerce' ), $product_data->get_title() ) ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check product is_purchasable
|
// Check product is_purchasable
|
||||||
if ( ! $product_data->is_purchasable() ) {
|
if ( ! $product_data->is_purchasable() ) {
|
||||||
wc_add_notice( __( 'Sorry, this product cannot be purchased.', 'woocommerce' ), 'error' );
|
throw new Exception( __( 'Sorry, this product cannot be purchased.', 'woocommerce' ) );
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stock check - only check if we're managing stock and backorders are not allowed
|
// Stock check - only check if we're managing stock and backorders are not allowed
|
||||||
if ( ! $product_data->is_in_stock() ) {
|
if ( ! $product_data->is_in_stock() ) {
|
||||||
|
throw new Exception( sprintf( __( 'You cannot add "%s" to the cart because the product is out of stock.', 'woocommerce' ), $product_data->get_title() ) );
|
||||||
wc_add_notice( sprintf( __( 'You cannot add "%s" to the cart because the product is out of stock.', 'woocommerce' ), $product_data->get_title() ), 'error' );
|
|
||||||
|
|
||||||
return false;
|
|
||||||
} elseif ( ! $product_data->has_enough_stock( $quantity ) ) {
|
|
||||||
|
|
||||||
wc_add_notice( sprintf(__( 'You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining).', 'woocommerce' ), $product_data->get_title(), $product_data->get_stock_quantity() ), 'error' );
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Downloadable/virtual qty check
|
if ( ! $product_data->has_enough_stock( $quantity ) ) {
|
||||||
if ( $product_data->is_sold_individually() ) {
|
throw new Exception( sprintf(__( 'You cannot add that amount of "%s" to the cart because there is not enough stock (%s remaining).', 'woocommerce' ), $product_data->get_title(), $product_data->get_stock_quantity() ) );
|
||||||
$in_cart_quantity = $cart_item_key ? $this->cart_contents[ $cart_item_key ]['quantity'] : 0;
|
|
||||||
|
|
||||||
// If it's greater than 0, it's already in the cart
|
|
||||||
if ( $in_cart_quantity > 0 ) {
|
|
||||||
wc_add_notice( sprintf(
|
|
||||||
'<a href="%s" class="button wc-forward">%s</a> %s',
|
|
||||||
$this->get_cart_url(),
|
|
||||||
__( 'View Cart', 'woocommerce' ),
|
|
||||||
sprintf( __( 'You cannot add another "%s" to your cart.', 'woocommerce' ), $product_data->get_title() )
|
|
||||||
), 'error' );
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stock check - this time accounting for whats already in-cart
|
// Stock check - this time accounting for whats already in-cart
|
||||||
|
@ -912,25 +892,20 @@ class WC_Cart {
|
||||||
* Check stock based on all items in the cart
|
* Check stock based on all items in the cart
|
||||||
*/
|
*/
|
||||||
if ( ! $product_data->has_enough_stock( $check_qty + $quantity ) ) {
|
if ( ! $product_data->has_enough_stock( $check_qty + $quantity ) ) {
|
||||||
wc_add_notice( sprintf(
|
throw new Exception( sprintf(
|
||||||
'<a href="%s" class="button wc-forward">%s</a> %s',
|
'<a href="%s" class="button wc-forward">%s</a> %s',
|
||||||
$this->get_cart_url(),
|
$this->get_cart_url(),
|
||||||
__( 'View Cart', 'woocommerce' ),
|
__( 'View Cart', 'woocommerce' ),
|
||||||
sprintf( __( 'You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart.', 'woocommerce' ), $product_data->get_stock_quantity(), $check_qty )
|
sprintf( __( 'You cannot add that amount to the cart — we have %s in stock and you already have %s in your cart.', 'woocommerce' ), $product_data->get_stock_quantity(), $check_qty )
|
||||||
), 'error' );
|
) );
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If cart_item_key is set, the item is already in the cart
|
// If cart_item_key is set, the item is already in the cart
|
||||||
if ( $cart_item_key ) {
|
if ( $cart_item_key ) {
|
||||||
|
|
||||||
$new_quantity = $quantity + $this->cart_contents[ $cart_item_key ]['quantity'];
|
$new_quantity = $quantity + $this->cart_contents[ $cart_item_key ]['quantity'];
|
||||||
|
|
||||||
$this->set_quantity( $cart_item_key, $new_quantity, false );
|
$this->set_quantity( $cart_item_key, $new_quantity, false );
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
$cart_item_key = $cart_id;
|
$cart_item_key = $cart_id;
|
||||||
|
|
||||||
// Add item after merging with $cart_item_data - hook to allow plugins to modify cart item
|
// Add item after merging with $cart_item_data - hook to allow plugins to modify cart item
|
||||||
|
@ -941,7 +916,6 @@ class WC_Cart {
|
||||||
'quantity' => $quantity,
|
'quantity' => $quantity,
|
||||||
'data' => $product_data
|
'data' => $product_data
|
||||||
) ), $cart_item_key );
|
) ), $cart_item_key );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( did_action( 'wp' ) ) {
|
if ( did_action( 'wp' ) ) {
|
||||||
|
@ -950,9 +924,14 @@ class WC_Cart {
|
||||||
|
|
||||||
do_action( 'woocommerce_add_to_cart', $cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data );
|
do_action( 'woocommerce_add_to_cart', $cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data );
|
||||||
|
|
||||||
$this->calculate_totals();
|
|
||||||
|
|
||||||
return $cart_item_key;
|
return $cart_item_key;
|
||||||
|
|
||||||
|
} catch ( Exception $e ) {
|
||||||
|
if ( $e->getMessage() ) {
|
||||||
|
wc_add_notice( $e->getMessage(), 'error' );
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1688,8 +1667,6 @@ class WC_Cart {
|
||||||
WC()->session->set( 'chosen_shipping_methods', $chosen_shipping_methods );
|
WC()->session->set( 'chosen_shipping_methods', $chosen_shipping_methods );
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->calculate_totals();
|
|
||||||
|
|
||||||
$the_coupon->add_coupon_message( WC_Coupon::WC_COUPON_SUCCESS );
|
$the_coupon->add_coupon_message( WC_Coupon::WC_COUPON_SUCCESS );
|
||||||
|
|
||||||
do_action( 'woocommerce_applied_coupon', $coupon_code );
|
do_action( 'woocommerce_applied_coupon', $coupon_code );
|
||||||
|
|
Loading…
Reference in New Issue