|
|
|
@ -75,73 +75,81 @@ class WC_Coupon {
|
|
|
|
|
function __construct( $code ) {
|
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
|
|
$this->code = esc_attr($code);
|
|
|
|
|
$this->code = apply_filters( 'woocommerce_coupon_code', $code );
|
|
|
|
|
|
|
|
|
|
// Coupon data lets developers create coupons through code
|
|
|
|
|
$coupon_data = apply_filters( 'woocommerce_get_shop_coupon_data', false, $code );
|
|
|
|
|
|
|
|
|
|
$coupon_data = apply_filters('woocommerce_get_shop_coupon_data', false, $code);
|
|
|
|
|
|
|
|
|
|
if ($coupon_data) :
|
|
|
|
|
$this->id = absint( $coupon_data['id'] );
|
|
|
|
|
$this->type = esc_html( $coupon_data['type'] );
|
|
|
|
|
$this->amount = esc_html( $coupon_data['amount'] );
|
|
|
|
|
$this->individual_use = esc_html( $coupon_data['individual_use'] );
|
|
|
|
|
$this->product_ids = ( is_array( $coupon_data['product_ids'] ) ) ? $coupon_data['product_ids'] : array();
|
|
|
|
|
$this->exclude_product_ids = ( is_array( $coupon_data['exclude_product_ids'] ) ) ? $coupon_data['exclude_product_ids'] : array();
|
|
|
|
|
$this->usage_limit = absint( $coupon_data['usage_limit'] );
|
|
|
|
|
$this->usage_count = absint( $coupon_data['usage_count'] );
|
|
|
|
|
$this->expiry_date = esc_html( $coupon_data['expiry_date'] );
|
|
|
|
|
$this->apply_before_tax = esc_html( $coupon_data['apply_before_tax'] );
|
|
|
|
|
$this->free_shipping = esc_html( $coupon_data['free_shipping'] );
|
|
|
|
|
$this->product_categories = ( is_array( $coupon_data['product_categories'] ) ) ? $coupon_data['product_categories'] : array();
|
|
|
|
|
$this->exclude_product_categories = ( is_array( $coupon_data['exclude_product_categories'] ) ) ? $coupon_data['exclude_product_categories'] : array();
|
|
|
|
|
$this->minimum_amount = esc_html( $coupon_data['minimum_amount'] );
|
|
|
|
|
$this->customer_email = esc_html( $coupon_data['customer_email'] );
|
|
|
|
|
if ( $coupon_data ) {
|
|
|
|
|
|
|
|
|
|
$this->id = absint( $coupon_data['id'] );
|
|
|
|
|
$this->type = esc_html( $coupon_data['type'] );
|
|
|
|
|
$this->amount = esc_html( $coupon_data['amount'] );
|
|
|
|
|
$this->individual_use = esc_html( $coupon_data['individual_use'] );
|
|
|
|
|
$this->product_ids = is_array( $coupon_data['product_ids'] ) ? $coupon_data['product_ids'] : array();
|
|
|
|
|
$this->exclude_product_ids = is_array( $coupon_data['exclude_product_ids'] ) ? $coupon_data['exclude_product_ids'] : array();
|
|
|
|
|
$this->usage_limit = absint( $coupon_data['usage_limit'] );
|
|
|
|
|
$this->usage_count = absint( $coupon_data['usage_count'] );
|
|
|
|
|
$this->expiry_date = esc_html( $coupon_data['expiry_date'] );
|
|
|
|
|
$this->apply_before_tax = esc_html( $coupon_data['apply_before_tax'] );
|
|
|
|
|
$this->free_shipping = esc_html( $coupon_data['free_shipping'] );
|
|
|
|
|
$this->product_categories = is_array( $coupon_data['product_categories'] ) ? $coupon_data['product_categories'] : array();
|
|
|
|
|
$this->exclude_product_categories = is_array( $coupon_data['exclude_product_categories'] ) ? $coupon_data['exclude_product_categories'] : array();
|
|
|
|
|
$this->minimum_amount = esc_html( $coupon_data['minimum_amount'] );
|
|
|
|
|
$this->customer_email = esc_html( $coupon_data['customer_email'] );
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
else:
|
|
|
|
|
$coupon_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE BINARY post_title = %s AND post_type= %s", $this->code, 'shop_coupon' ) );
|
|
|
|
|
if ( $coupon_id ) $coupon = get_page($coupon_id); else return false;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
$coupon_id = $wpdb->get_var( $wpdb->prepare( apply_filters( 'woocommerce_coupon_code_query', "SELECT ID FROM $wpdb->posts WHERE post_title = %s AND post_type = 'shop_coupon'" ), $this->code ) );
|
|
|
|
|
|
|
|
|
|
if ( $coupon_id )
|
|
|
|
|
$coupon = get_post( $coupon_id );
|
|
|
|
|
|
|
|
|
|
$coupon->post_title = apply_filters( 'woocommerce_coupon_code', $coupon->post_title );
|
|
|
|
|
|
|
|
|
|
// Check titles match
|
|
|
|
|
if ($this->code!==$coupon->post_title) return false;
|
|
|
|
|
if ( empty( $coupon ) || $coupon->post_status !== 'publish' || $this->code !== $coupon->post_title )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if ($coupon && $coupon->post_status == 'publish') :
|
|
|
|
|
$this->id = $coupon->ID;
|
|
|
|
|
$this->coupon_custom_fields = get_post_custom( $this->id );
|
|
|
|
|
$this->id = $coupon->ID;
|
|
|
|
|
$this->coupon_custom_fields = get_post_custom( $this->id );
|
|
|
|
|
|
|
|
|
|
$load_data = array(
|
|
|
|
|
'discount_type' => 'fixed_cart',
|
|
|
|
|
'coupon_amount' => 0,
|
|
|
|
|
'individual_use' => 'no',
|
|
|
|
|
'product_ids' => '',
|
|
|
|
|
'exclude_product_ids' => '',
|
|
|
|
|
'usage_limit' => '',
|
|
|
|
|
'usage_count' => '',
|
|
|
|
|
'expiry_date' => '',
|
|
|
|
|
'apply_before_tax' => 'yes',
|
|
|
|
|
'free_shipping' => 'no',
|
|
|
|
|
'product_categories' => array(),
|
|
|
|
|
'exclude_product_categories' => array(),
|
|
|
|
|
'minimum_amount' => '',
|
|
|
|
|
'customer_email' => array()
|
|
|
|
|
);
|
|
|
|
|
$load_data = array(
|
|
|
|
|
'discount_type' => 'fixed_cart',
|
|
|
|
|
'coupon_amount' => 0,
|
|
|
|
|
'individual_use' => 'no',
|
|
|
|
|
'product_ids' => '',
|
|
|
|
|
'exclude_product_ids' => '',
|
|
|
|
|
'usage_limit' => '',
|
|
|
|
|
'usage_count' => '',
|
|
|
|
|
'expiry_date' => '',
|
|
|
|
|
'apply_before_tax' => 'yes',
|
|
|
|
|
'free_shipping' => 'no',
|
|
|
|
|
'product_categories' => array(),
|
|
|
|
|
'exclude_product_categories' => array(),
|
|
|
|
|
'minimum_amount' => '',
|
|
|
|
|
'customer_email' => array()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ($load_data as $key => $default) $this->$key = (isset($this->coupon_custom_fields[$key][0]) && $this->coupon_custom_fields[$key][0]!=='') ? $this->coupon_custom_fields[$key][0] : $default;
|
|
|
|
|
foreach ( $load_data as $key => $default )
|
|
|
|
|
$this->$key = isset( $this->coupon_custom_fields[ $key ][0] ) && $this->coupon_custom_fields[ $key ][0] !== '' ? $this->coupon_custom_fields[ $key ][0] : $default;
|
|
|
|
|
|
|
|
|
|
// Alias
|
|
|
|
|
$this->type = $this->discount_type;
|
|
|
|
|
$this->amount = $this->coupon_amount;
|
|
|
|
|
// Alias
|
|
|
|
|
$this->type = $this->discount_type;
|
|
|
|
|
$this->amount = $this->coupon_amount;
|
|
|
|
|
|
|
|
|
|
// Formatting
|
|
|
|
|
$this->product_ids = array_filter(array_map('trim', explode(',', $this->product_ids)));
|
|
|
|
|
$this->exclude_product_ids = array_filter(array_map('trim', explode(',', $this->exclude_product_ids)));
|
|
|
|
|
$this->expiry_date = ($this->expiry_date) ? strtotime($this->expiry_date) : '';
|
|
|
|
|
$this->product_categories = array_filter(array_map('trim', (array) maybe_unserialize($this->product_categories)));
|
|
|
|
|
$this->exclude_product_categories = array_filter(array_map('trim', (array) maybe_unserialize($this->exclude_product_categories)));
|
|
|
|
|
$this->customer_email = array_filter(array_map('trim', array_map('strtolower', (array) maybe_unserialize($this->customer_email))));
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
endif;
|
|
|
|
|
endif;
|
|
|
|
|
// Formatting
|
|
|
|
|
$this->product_ids = array_filter( array_map( 'trim', explode( ',', $this->product_ids ) ) );
|
|
|
|
|
$this->exclude_product_ids = array_filter( array_map( 'trim', explode( ',', $this->exclude_product_ids ) ) );
|
|
|
|
|
$this->expiry_date = $this->expiry_date ? strtotime( $this->expiry_date ) : '';
|
|
|
|
|
$this->product_categories = array_filter( array_map( 'trim', (array) maybe_unserialize( $this->product_categories ) ) );
|
|
|
|
|
$this->exclude_product_categories = array_filter( array_map( 'trim', (array) maybe_unserialize( $this->exclude_product_categories ) ) );
|
|
|
|
|
$this->customer_email = array_filter( array_map( 'trim', array_map( 'strtolower', (array) maybe_unserialize( $this->customer_email ) ) ) );
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -153,7 +161,7 @@ class WC_Coupon {
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
function apply_before_tax() {
|
|
|
|
|
return ($this->apply_before_tax=='yes') ? true : false;
|
|
|
|
|
return $this->apply_before_tax == 'yes' ? true : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -164,7 +172,7 @@ class WC_Coupon {
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
function enable_free_shipping() {
|
|
|
|
|
return ($this->free_shipping=='yes') ? true : false;
|
|
|
|
|
return $this->free_shipping == 'yes' ? true : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -208,93 +216,100 @@ class WC_Coupon {
|
|
|
|
|
$error = false;
|
|
|
|
|
|
|
|
|
|
// Usage Limit
|
|
|
|
|
if ($this->usage_limit>0) :
|
|
|
|
|
if ($this->usage_count>=$this->usage_limit) :
|
|
|
|
|
if ( $this->usage_limit > 0 ) {
|
|
|
|
|
if ( $this->usage_count >= $this->usage_limit ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'Coupon usage limit has been reached.', 'woocommerce' );
|
|
|
|
|
endif;
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Expired
|
|
|
|
|
if ($this->expiry_date) :
|
|
|
|
|
if (strtotime('NOW')>$this->expiry_date) :
|
|
|
|
|
if ( $this->expiry_date ) {
|
|
|
|
|
if ( strtotime( 'NOW' ) > $this->expiry_date ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'This coupon has expired.', 'woocommerce' );
|
|
|
|
|
endif;
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Minimum spend
|
|
|
|
|
if ($this->minimum_amount>0) :
|
|
|
|
|
if ( $this->minimum_amount > $woocommerce->cart->subtotal ) :
|
|
|
|
|
if ( $this->minimum_amount > 0 ) {
|
|
|
|
|
if ( $this->minimum_amount > $woocommerce->cart->subtotal ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = sprintf( __( 'The minimum spend for this coupon is %s.', 'woocommerce' ), woocommerce_price( $this->minimum_amount ) );
|
|
|
|
|
endif;
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Product ids - If a product included is found in the cart then its valid
|
|
|
|
|
if (sizeof( $this->product_ids )>0) :
|
|
|
|
|
if ( sizeof( $this->product_ids ) > 0 ) {
|
|
|
|
|
$valid_for_cart = false;
|
|
|
|
|
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $cart_item_key => $cart_item) :
|
|
|
|
|
if (in_array($cart_item['product_id'], $this->product_ids) || in_array($cart_item['variation_id'], $this->product_ids) || in_array($cart_item['data']->get_parent(), $this->product_ids)) :
|
|
|
|
|
$valid_for_cart = true;
|
|
|
|
|
endif;
|
|
|
|
|
endforeach; endif;
|
|
|
|
|
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
|
|
|
|
|
foreach( $woocommerce->cart->get_cart() as $cart_item_key => $cart_item ) {
|
|
|
|
|
|
|
|
|
|
if ( in_array( $cart_item['product_id'], $this->product_ids ) || in_array( $cart_item['variation_id'], $this->product_ids ) || in_array( $cart_item['data']->get_parent(), $this->product_ids ) )
|
|
|
|
|
$valid_for_cart = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( ! $valid_for_cart ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'Sorry, this coupon is not applicable to your cart contents.', 'woocommerce' );
|
|
|
|
|
}
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Category ids - If a product included is found in the cart then its valid
|
|
|
|
|
if (sizeof( $this->product_categories )>0) :
|
|
|
|
|
if ( sizeof( $this->product_categories ) > 0 ) {
|
|
|
|
|
$valid_for_cart = false;
|
|
|
|
|
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $cart_item_key => $cart_item) :
|
|
|
|
|
|
|
|
|
|
$product_cats = wp_get_post_terms($cart_item['product_id'], 'product_cat', array("fields" => "ids"));
|
|
|
|
|
|
|
|
|
|
if ( sizeof( array_intersect( $product_cats, $this->product_categories ) ) > 0 ) $valid_for_cart = true;
|
|
|
|
|
|
|
|
|
|
endforeach; endif;
|
|
|
|
|
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
|
|
|
|
|
foreach( $woocommerce->cart->get_cart() as $cart_item_key => $cart_item ) {
|
|
|
|
|
|
|
|
|
|
$product_cats = wp_get_post_terms($cart_item['product_id'], 'product_cat', array("fields" => "ids"));
|
|
|
|
|
|
|
|
|
|
if ( sizeof( array_intersect( $product_cats, $this->product_categories ) ) > 0 )
|
|
|
|
|
$valid_for_cart = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( ! $valid_for_cart ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'Sorry, this coupon is not applicable to your cart contents.', 'woocommerce' );
|
|
|
|
|
}
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Cart discounts cannot be added if non-eligble product is found in cart
|
|
|
|
|
if ($this->type!='fixed_product' && $this->type!='percent_product') :
|
|
|
|
|
if ( $this->type != 'fixed_product' && $this->type != 'percent_product' ) {
|
|
|
|
|
|
|
|
|
|
// Exclude Products
|
|
|
|
|
if (sizeof( $this->exclude_product_ids )>0) :
|
|
|
|
|
if ( sizeof( $this->exclude_product_ids ) > 0 ) {
|
|
|
|
|
$valid_for_cart = true;
|
|
|
|
|
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $cart_item_key => $cart_item) :
|
|
|
|
|
if (in_array($cart_item['product_id'], $this->exclude_product_ids) || in_array($cart_item['variation_id'], $this->exclude_product_ids) || in_array($cart_item['data']->get_parent(), $this->exclude_product_ids)) :
|
|
|
|
|
$valid_for_cart = false;
|
|
|
|
|
endif;
|
|
|
|
|
endforeach; endif;
|
|
|
|
|
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
|
|
|
|
|
foreach( $woocommerce->cart->get_cart() as $cart_item_key => $cart_item ) {
|
|
|
|
|
if ( in_array( $cart_item['product_id'], $this->exclude_product_ids ) || in_array( $cart_item['variation_id'], $this->exclude_product_ids ) || in_array( $cart_item['data']->get_parent(), $this->exclude_product_ids ) ) {
|
|
|
|
|
$valid_for_cart = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( ! $valid_for_cart ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'Sorry, this coupon is not applicable to your cart contents.', 'woocommerce' );
|
|
|
|
|
}
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exclude Categories
|
|
|
|
|
if (sizeof( $this->exclude_product_categories )>0) :
|
|
|
|
|
if ( sizeof( $this->exclude_product_categories ) > 0 ) {
|
|
|
|
|
$valid_for_cart = true;
|
|
|
|
|
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $cart_item_key => $cart_item) :
|
|
|
|
|
|
|
|
|
|
$product_cats = wp_get_post_terms($cart_item['product_id'], 'product_cat', array("fields" => "ids"));
|
|
|
|
|
|
|
|
|
|
if ( sizeof( array_intersect( $product_cats, $this->exclude_product_categories ) ) > 0 ) $valid_for_cart = false;
|
|
|
|
|
|
|
|
|
|
endforeach; endif;
|
|
|
|
|
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
|
|
|
|
|
foreach( $woocommerce->cart->get_cart() as $cart_item_key => $cart_item ) {
|
|
|
|
|
|
|
|
|
|
$product_cats = wp_get_post_terms( $cart_item['product_id'], 'product_cat', array( "fields" => "ids" ) );
|
|
|
|
|
|
|
|
|
|
if ( sizeof( array_intersect( $product_cats, $this->exclude_product_categories ) ) > 0 )
|
|
|
|
|
$valid_for_cart = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( ! $valid_for_cart ) {
|
|
|
|
|
$valid = false;
|
|
|
|
|
$error = __( 'Sorry, this coupon is not applicable to your cart contents.', 'woocommerce' );
|
|
|
|
|
}
|
|
|
|
|
endif;
|
|
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$valid = apply_filters( 'woocommerce_coupon_is_valid', $valid, $this );
|
|
|
|
|
|
|
|
|
|