woocommerce/includes/class-wc-coupon.php

1391 lines
44 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
2016-02-23 16:01:40 +00:00
include_once( 'legacy/class-wc-legacy-coupon.php' );
2015-11-06 09:22:19 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
2015-11-06 09:22:19 +00:00
}
2011-08-10 17:11:11 +00:00
/**
2016-03-08 19:17:10 +00:00
* WooCommerce coupons.
2012-08-14 19:42:38 +00:00
*
2015-11-03 13:31:20 +00:00
* The WooCommerce coupons class gets coupon data from storage and checks coupon validity.
2011-08-10 17:11:11 +00:00
*
2012-01-27 16:38:39 +00:00
* @class WC_Coupon
2016-03-04 15:19:11 +00:00
* @version 2.7.0
2013-02-20 17:14:46 +00:00
* @package WooCommerce/Classes
2011-08-10 17:11:11 +00:00
* @category Class
* @author WooThemes
*/
2016-02-23 16:01:40 +00:00
class WC_Coupon extends WC_Legacy_Coupon implements WC_Data {
/**
* Data array, with defaults.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @var array
*/
protected $_data = array(
'id' => 0,
'code' => '',
'description' => '',
'discount_type' => 'fixed_cart',
'amount' => 0,
'expiry_date' => '',
'usage_count' => 0,
'used_by' => '',
2016-02-23 16:01:40 +00:00
'individual_use' => false,
'product_ids' => array(),
'exclude_product_ids' => array(),
'usage_limit' => '',
'usage_limit_per_user' => '',
'limit_usage_to_x_items' => '',
'free_shipping' => false,
'product_categories' => array(),
'exclude_product_categories' => array(),
'exclude_sale_items' => false,
'minimum_amount' => '',
'maximum_amount' => '',
'customer_email' => array(),
'custom_fields' => array(),
);
2012-08-14 19:42:38 +00:00
/**
* Meta data (custom coupon fields).
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @var array
*/
protected $_meta_data = array();
// Coupon message codes
const E_WC_COUPON_INVALID_FILTERED = 100;
const E_WC_COUPON_INVALID_REMOVED = 101;
const E_WC_COUPON_NOT_YOURS_REMOVED = 102;
const E_WC_COUPON_ALREADY_APPLIED = 103;
const E_WC_COUPON_ALREADY_APPLIED_INDIV_USE_ONLY = 104;
const E_WC_COUPON_NOT_EXIST = 105;
const E_WC_COUPON_USAGE_LIMIT_REACHED = 106;
const E_WC_COUPON_EXPIRED = 107;
const E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET = 108;
const E_WC_COUPON_NOT_APPLICABLE = 109;
const E_WC_COUPON_NOT_VALID_SALE_ITEMS = 110;
const E_WC_COUPON_PLEASE_ENTER = 111;
const E_WC_COUPON_MAX_SPEND_LIMIT_MET = 112;
const E_WC_COUPON_EXCLUDED_PRODUCTS = 113;
const E_WC_COUPON_EXCLUDED_CATEGORIES = 114;
const WC_COUPON_SUCCESS = 200;
const WC_COUPON_REMOVED = 201;
2014-11-14 16:21:58 +00:00
/**
* Coupon constructor. Loads coupon data.
2016-02-23 16:01:40 +00:00
* @param mixed $code code of the coupon to load
2014-11-14 16:21:58 +00:00
*/
2016-02-23 16:01:40 +00:00
public function __construct( $code = '' ) {
if ( $code instanceof WC_Coupon ) {
$this->read( absint( $code->get_id() ) );
} elseif ( $coupon = apply_filters( 'woocommerce_get_shop_coupon_data', false, $code ) ) {
_doing_it_wrong( 'woocommerce_get_shop_coupon_data', 'Reading a manual coupon via woocommerce_get_shop_coupon_data has been deprecated. Please sent an instance of WC_Coupon instead.', '2.7' );
$this->read_manual_coupon( $code, $coupon );
2016-02-23 16:01:40 +00:00
} elseif ( ! empty( $code ) ) {
$this->set_code( $code );
$this->read( absint( self::get_coupon_id_from_code( $code ) ) );
}
2014-11-14 16:21:58 +00:00
}
/**
2016-02-23 16:01:40 +00:00
* Checks the coupon type.
* @param string $type Array or string of types
* @return bool
*/
2016-02-23 16:01:40 +00:00
public function is_type( $type ) {
return ( $this->get_discount_type() == $type || ( is_array( $type ) && in_array( $this->get_discount_type(), $type ) ) );
2016-02-23 16:01:40 +00:00
}
/*
|--------------------------------------------------------------------------
| Getters
|--------------------------------------------------------------------------
|
| Methods for getting data from the coupon object.
|
*/
/**
* Get all class data in array format.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_data() {
return array_merge( $this->_data, array( 'meta' => $this->_meta_data ) );
2016-02-23 16:01:40 +00:00
}
/**
* Get coupon ID.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return integer
*/
public function get_id() {
return absint( $this->_data['id'] );
}
/**
2016-02-23 16:01:40 +00:00
* Get coupon code.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return string
*/
public function get_code() {
return apply_filters( 'woocommerce_coupon_code', $this->_data['code'] );
}
/**
2016-02-23 16:01:40 +00:00
* Get coupon description.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return string
*/
public function get_description() {
return $this->_data['description'];
}
/**
* Get discount type.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return string
*/
public function get_discount_type() {
return $this->_data['discount_type'];
}
/**
* Get coupon code.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return float
*/
public function get_amount() {
return wc_format_decimal( $this->_data['amount'] );
}
/**
* Get coupon expiration date.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return string
*/
public function get_expiry_date() {
return $this->_data['expiry_date'] && ! is_numeric( $this->_data['expiry_date'] ) ? strtotime( $this->_data['expiry_date'] ) : $this->_data['expiry_date'];
}
/**
* Get coupon usage count.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return integer
*/
public function get_usage_count() {
return absint( $this->_data['usage_count'] );
}
/**
* Get the "indvidual use" checkbox status.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @return bool
*/
public function get_individual_use() {
return (bool) $this->_data['individual_use'];
}
2012-08-15 17:08:42 +00:00
/**
2016-02-23 16:01:40 +00:00
* Get product IDs this coupon can apply to.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_product_ids() {
return $this->_data['product_ids'];
2016-02-23 16:01:40 +00:00
}
/**
* Get product IDs that this coupon should not apply to.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_excluded_product_ids() {
return $this->_data['exclude_product_ids'];
2016-02-23 16:01:40 +00:00
}
/**
* Get coupon usage limit.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return integer
*/
public function get_usage_limit() {
return absint( $this->_data['usage_limit'] );
2016-02-23 16:01:40 +00:00
}
/**
* Get coupon usage limit per customer (for a single customer)
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return integer
*/
public function get_usage_limit_per_user() {
return absint( $this->_data['usage_limit_per_user'] );
2016-02-23 16:01:40 +00:00
}
/**
* Usage limited to certain amount of items
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return integer
*/
public function get_limit_usage_to_x_items() {
return $this->_data['limit_usage_to_x_items'];
2016-02-23 16:01:40 +00:00
}
/**
* If this coupon grants free shipping or not.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @return bool
*/
public function get_free_shipping() {
return (bool) $this->_data['free_shipping'];
2016-02-23 16:01:40 +00:00
}
2012-08-15 17:08:42 +00:00
2016-02-23 16:01:40 +00:00
/**
* Get product categories this coupon can apply to.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_product_categories() {
return $this->_data['product_categories'];
2016-02-23 16:01:40 +00:00
}
2015-03-27 15:36:53 +00:00
2016-02-23 16:01:40 +00:00
/**
* Get product categories this coupon cannot not apply to.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_excluded_product_categories() {
return $this->_data['exclude_product_categories'];
2016-02-23 16:01:40 +00:00
}
2015-03-27 15:36:53 +00:00
2016-02-23 16:01:40 +00:00
/**
* If this coupon should exclude items on sale.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return bool
*/
public function get_exclude_sale_items() {
return (bool) $this->_data['exclude_sale_items'];
2016-02-23 16:01:40 +00:00
}
/**
* Get minium spend amount.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return float
*/
public function get_minimum_amount() {
return wc_format_decimal( $this->_data['minimum_amount'] );
2016-02-23 16:01:40 +00:00
}
/**
* Get maximum spend amount.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return float
*/
public function get_maximum_amount() {
return wc_format_decimal( $this->_data['maximum_amount'] );
2016-02-23 16:01:40 +00:00
}
/**
* Get emails to check customer usage restrictions.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @return array
2016-02-23 16:01:40 +00:00
*/
public function get_email_restrictions() {
return $this->_data['customer_email'];
2016-02-23 16:01:40 +00:00
}
2012-08-15 17:08:42 +00:00
2016-02-23 16:01:40 +00:00
/**
* Get records of all users who have used the current coupon.
*
* @return array
*/
public function get_used_by() {
return $this->_data['used_by'];
}
2012-08-15 17:08:42 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get a coupon ID from it's code.
2016-02-23 16:01:40 +00:00
* @since 2.5.0 woocommerce_coupon_code_query was removed in favour of woocommerce_get_coupon_id_from_code filter on the return. wp_cache was also implemented.
2014-11-14 17:18:02 +00:00
* @param string $code
* @return int
*/
private function get_coupon_id_from_code( $code ) {
global $wpdb;
$coupon_id = wp_cache_get( WC_Cache_Helper::get_cache_prefix( 'coupons' ) . 'coupon_id_from_code_' . $code, 'coupons' );
if ( false === $coupon_id ) {
$sql = $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1;", $this->get_code() );
$coupon_id = apply_filters( 'woocommerce_get_coupon_id_from_code', $wpdb->get_var( $sql ), $this->get_code() );
wp_cache_set( WC_Cache_Helper::get_cache_prefix( 'coupons' ) . 'coupon_id_from_code_' . $code, $coupon_id, 'coupons' );
}
return absint( $coupon_id );
2014-11-14 17:18:02 +00:00
}
/**
* Get all custom coupon fields.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @return array
*/
public function get_custom_fields() {
return $this->_meta_data;
2016-02-23 16:01:40 +00:00
}
/**
* Get a single custom coupon field.
* @since 2.7.0
* @param string $key
* @return mixed
*/
public function get_custom_field( $key ) {
return $this->_meta_data[ $key ];
}
2016-02-23 16:01:40 +00:00
/**
* Get discount amount for a cart item.
*
* @param float $discounting_amount Amount the coupon is being applied to
* @param array|null $cart_item Cart item being discounted if applicable
* @param boolean $single True if discounting a single qty item, false if its the line
* @return float Amount this coupon has discounted
*/
public function get_discount_amount( $discounting_amount, $cart_item = null, $single = false ) {
$discount = 0;
$cart_item_qty = is_null( $cart_item ) ? 1 : $cart_item['quantity'];
2016-02-23 16:01:40 +00:00
if ( $this->is_type( array( 'percent_product', 'percent' ) ) ) {
$discount = $this->get_amount() * ( $discounting_amount / 100 );
} elseif ( $this->is_type( 'fixed_cart' ) && ! is_null( $cart_item ) && WC()->cart->subtotal_ex_tax ) {
/**
* This is the most complex discount - we need to divide the discount between rows based on their price in.
* proportion to the subtotal. This is so rows with different tax rates get a fair discount, and so rows.
* with no price (free) don't get discounted.
*
* Get item discount by dividing item cost by subtotal to get a %.
*
* Uses price inc tax if prices include tax to work around https://github.com/woothemes/woocommerce/issues/7669 and https://github.com/woothemes/woocommerce/issues/8074.
*/
if ( wc_prices_include_tax() ) {
$discount_percent = ( $cart_item['data']->get_price_including_tax() * $cart_item_qty ) / WC()->cart->subtotal;
} else {
2016-02-23 16:01:40 +00:00
$discount_percent = ( $cart_item['data']->get_price_excluding_tax() * $cart_item_qty ) / WC()->cart->subtotal_ex_tax;
}
$discount = ( $this->get_amount() * $discount_percent ) / $cart_item_qty;
} elseif ( $this->is_type( 'fixed_product' ) ) {
$discount = min( $this->get_amount(), $discounting_amount );
$discount = $single ? $discount : $discount * $cart_item_qty;
}
2016-02-23 16:01:40 +00:00
$discount = min( $discount, $discounting_amount );
// Handle the limit_usage_to_x_items option
if ( $this->is_type( array( 'percent_product', 'fixed_product' ) ) ) {
if ( $discounting_amount ) {
if ( '' === $this->get_limit_usage_to_x_items() ) {
$limit_usage_qty = $cart_item_qty;
} else {
$limit_usage_qty = min( $this->get_limit_usage_to_x_items(), $cart_item_qty );
$this->set_limit_usage_to_x_items( max( 0, $this->get_limit_usage_to_x_items() - $limit_usage_qty ) );
}
if ( $single ) {
$discount = ( $discount * $limit_usage_qty ) / $cart_item_qty;
} else {
$discount = ( $discount / $cart_item_qty ) * $limit_usage_qty;
}
}
2016-02-23 16:01:40 +00:00
}
2012-08-15 17:08:42 +00:00
2016-02-23 16:01:40 +00:00
$discount = round( $discount, WC_ROUNDING_PRECISION );
return apply_filters( 'woocommerce_coupon_get_discount_amount', $discount, $discounting_amount, $cart_item, $single, $this );
}
/*
|--------------------------------------------------------------------------
| Setters
|--------------------------------------------------------------------------
|
| Functions for setting coupon data. These should not update anything in the
| database itself and should only change what is stored in the class
| object.
|
*/
/**
* Set coupon code.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param string $code
*/
public function set_code( $code ) {
$this->_data['code'] = apply_filters( 'woocommerce_coupon_code', $code );
2016-02-23 16:01:40 +00:00
}
/**
* Set coupon description.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param string $description
*/
public function set_description( $description ) {
$this->_data['description'] = $description;
}
/**
* Set discount type.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param string $discount_type
*/
public function set_discount_type( $discount_type ) {
$this->_data['discount_type'] = $discount_type;
}
/**
* Set amount.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param float $amount
*/
public function set_amount( $amount ) {
$this->_data['amount'] = wc_format_decimal( $amount );
}
/**
* Set expiration date.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param string $date
*/
public function set_expiry_date( $date ) {
if ( ! is_numeric( $date ) ) {
$this->_data['expiry_date'] = strtotime( $date );
} else {
$this->_data['expiry_date'] = $date;
}
2016-02-23 16:01:40 +00:00
}
/**
* Set how many times this coupon has been used.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param int $usage_count
*/
public function set_usage_count( $usage_count ) {
$this->_data['usage_count'] = absint( $usage_count );
}
/**
* Set if this coupon can only be used once.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param bool $is_individual_use
*/
public function set_individual_use( $is_individual_use ) {
$this->_data['individual_use'] = (bool) $is_individual_use;
2016-02-23 16:01:40 +00:00
}
/**
* Set the product IDs this coupon can be used with.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $product_ids
*/
public function set_product_ids( $product_ids ) {
$this->_data['product_ids'] = $product_ids;
2016-02-23 16:01:40 +00:00
}
/**
* Set the product IDs this coupon cannot be used with.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $excluded_product_ids
*/
public function set_excluded_product_ids( $excluded_product_ids ) {
$this->_data['exclude_product_ids'] = $excluded_product_ids;
2016-02-23 16:01:40 +00:00
}
/**
* Set the amount of times this coupon can be used.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param int $usage_limit
*/
public function set_usage_limit( $usage_limit ) {
$this->_data['usage_limit'] = absint( $usage_limit );
2016-02-23 16:01:40 +00:00
}
/**
* Set the amount of times this coupon can be used per user.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param int $usage_limit
*/
public function set_usage_limit_per_user( $usage_limit ) {
$this->_data['usage_limit_per_user'] = absint( $usage_limit );
2016-02-23 16:01:40 +00:00
}
/**
* Set usage limit to x number of items.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param int $limit_usage_to_x_items
*/
public function set_limit_usage_to_x_items( $limit_usage_to_x_items ) {
$this->_data['limit_usage_to_x_items'] = $limit_usage_to_x_items;
2016-02-23 16:01:40 +00:00
}
/**
* Set if this coupon enables free shipping or not.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param bool $free_shipping
*/
public function set_free_shipping( $free_shipping ) {
$this->_data['free_shipping'] = (bool) $free_shipping;
2016-02-23 16:01:40 +00:00
}
/**
* Set the product category IDs this coupon can be used with.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $product_categories
*/
public function set_product_categories( $product_categories ) {
$this->_data['product_categories'] = $product_categories;
2016-02-23 16:01:40 +00:00
}
/**
* Set the product category IDs this coupon cannot be used with.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $excluded_product_categories
*/
public function set_excluded_product_categories( $excluded_product_categories ) {
$this->_data['exclude_product_categories'] = $excluded_product_categories;
2016-02-23 16:01:40 +00:00
}
/**
* Set if this coupon should excluded sale items or not.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param bool $exclude_sale_items
*/
public function set_exclude_sale_items( $exclude_sale_items ) {
$this->_data['exclude_sale_items'] = (bool) $exclude_sale_items;
2016-02-23 16:01:40 +00:00
}
/**
* Set the minimum spend amount.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param float $amount
*/
public function set_minimum_amount( $amount ) {
$this->_data['minimum_amount'] = wc_format_decimal( $amount );
2016-02-23 16:01:40 +00:00
}
/**
* Set the maximum spend amount.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param float $amount
*/
public function set_maximum_amount( $amount ) {
$this->_data['maximum_amount'] = wc_format_decimal( $amount );
2016-02-23 16:01:40 +00:00
}
/**
* Set email restrictions.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $emails
*/
public function set_email_restrictions( $emails ) {
$this->_data['customer_email'] = array_map( 'sanitize_email', $emails );
2016-02-23 16:01:40 +00:00
}
/**
* Set which users have used this coupon.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param array $used_by
*/
public function set_used_by( $used_by ) {
$this->_data['used_by'] = array_filter( $used_by );
2016-02-23 16:01:40 +00:00
}
/**
* Adds or updates a custom field (meta) (based on $key).
* @since 2.7.0
* @param string $key
* @param mixed $value
*/
public function set_custom_field( $key, $value ) {
update_post_meta( $this->get_id(), $key, $value );
$this->_set_meta_data();
}
2016-02-23 16:01:40 +00:00
/*
|--------------------------------------------------------------------------
| CRUD methods
|--------------------------------------------------------------------------
|
| Methods which create, read, update and delete coupons from the database.
|
| A save method is included for convenience (chooses update or create based
| on if the order exists yet).
|
*/
/**
* Reads an coupon from the database and sets its data to the class.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2016-02-23 16:01:40 +00:00
* @param int $id
*/
public function read( $id ) {
if ( 0 === $id ) {
$this->_data['id'] = 0;
2016-02-23 16:01:40 +00:00
return;
}
$post_object = get_post( $id );
// Only continue reading if this coupon exists...
if ( empty( $post_object ) || empty( $post_object->ID ) ) {
$this->_data['id'] = 0;
2016-02-23 16:01:40 +00:00
return;
}
$coupon_id = $this->_data['id'] = absint( $post_object->ID );
2016-02-23 16:01:40 +00:00
// Map standard coupon data
$this->set_code( $post_object->post_title );
$this->set_description( $post_object->post_excerpt );
$this->set_discount_type( get_post_meta( $coupon_id, 'discount_type', true ) );
$this->set_amount( get_post_meta( $coupon_id, 'coupon_amount', true ) );
$this->set_expiry_date( get_post_meta( $coupon_id, 'expiry_date', true ) );
$this->set_usage_count( get_post_meta( $coupon_id, 'usage_count', true ) );
// Map meta data
$individual_use = ( 'yes' === get_post_meta( $coupon_id, 'individual_use', true ) );
$this->set_individual_use( $individual_use );
$product_ids = explode( ',', get_post_meta( $coupon_id, 'product_ids', true ), -1 );
2016-02-23 16:01:40 +00:00
$this->set_product_ids( $product_ids );
$exclude_product_ids = explode( ',', get_post_meta( $coupon_id, 'exclude_product_ids', true ), -1 );
2016-02-23 16:01:40 +00:00
$this->set_excluded_product_ids( $exclude_product_ids );
$this->set_usage_limit( get_post_meta( $coupon_id, 'usage_limit', true ) );
$this->set_usage_limit_per_user( get_post_meta( $coupon_id, 'usage_limit_per_user', true ) );
$this->set_limit_usage_to_x_items( get_post_meta( $coupon_id, 'limit_usage_to_x_items', true ) );
$free_shipping = ( 'yes' === get_post_meta( $coupon_id, 'free_shipping', true ) );
$this->set_free_shipping( $free_shipping );
2016-02-23 16:01:40 +00:00
$product_categories = get_post_meta( $coupon_id, 'product_categories', true );
$product_categories = ( ! empty( $product_categories ) ? $product_categories : array() );
$this->set_product_categories( $product_categories );
$exclude_product_categories = get_post_meta( $coupon_id, 'exclude_product_categories', true );
$exclude_product_categories = ( ! empty( $exclude_product_categories ) ? $exclude_product_categories : array() );
$this->set_excluded_product_categories( $exclude_product_categories );
$exclude_sale_items = ( 'yes' === get_post_meta( $coupon_id, 'exclude_sale_items', true ) );
$this->set_exclude_sale_items( $exclude_sale_items );
2016-02-23 16:01:40 +00:00
$this->set_minimum_amount( get_post_meta( $coupon_id, 'minimum_amount', true ) );
$this->set_maximum_amount( get_post_meta( $coupon_id, 'maximum_amount', true ) );
$this->set_email_restrictions( get_post_meta( $coupon_id, 'customer_email', true ) );
$this->set_used_by( (array) get_post_meta( $coupon_id, '_used_by' ) );
// Load custom set metadata (coupon custom fields)
$this->_set_meta_data();
do_action( 'woocommerce_coupon_loaded', $this );
}
2012-08-14 19:42:38 +00:00
/**
2016-02-23 16:01:40 +00:00
* Create a new coupon.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2012-08-14 19:42:38 +00:00
*/
2016-02-23 16:01:40 +00:00
public function create() {
$coupon_id = wp_insert_post( apply_filters( 'woocommerce_new_coupon_data', array(
'post_type' => 'shop_coupon',
'post_status' => 'publish',
'post_author' => get_current_user_id(),
'post_title' => $this->get_code(),
'post_content' => '',
'post_excerpt' => $this->get_description(),
) ), true );
if ( $coupon_id ) {
$this->_data['id'] = $coupon_id;
2016-02-23 16:01:40 +00:00
$this->update_post_meta( $coupon_id );
do_action( 'woocommerce_new_coupon', $coupon_id );
2014-11-14 16:21:58 +00:00
}
2011-08-10 17:11:11 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-02-23 16:01:40 +00:00
* Updates an existing coupon.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2012-08-14 19:42:38 +00:00
*/
2016-02-23 16:01:40 +00:00
public function update() {
$coupon_id = $this->get_id();
$post_data = array(
'ID' => $coupon_id,
'post_title' => $this->get_code(),
'post_excerpt' => $this->get_description(),
);
wp_update_post( $post_data );
$this->update_post_meta( $coupon_id );
do_action( 'woocommerce_update_coupon', $coupon_id );
}
2012-08-14 19:42:38 +00:00
/**
2016-02-23 16:01:40 +00:00
* Save data (either create or update depending on if we are working on an existing coupon)
2016-03-04 15:19:11 +00:00
* @since 2.7.0
2012-08-14 19:42:38 +00:00
*/
2016-02-23 16:01:40 +00:00
public function save() {
if ( 0 !== $this->get_id() ) {
$this->update();
} else {
$this->create();
}
2011-11-28 16:10:31 +00:00
}
2013-01-29 13:58:57 +00:00
/**
2016-02-23 16:01:40 +00:00
* Delete coupon from the database.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
*/
2016-02-23 16:01:40 +00:00
public function delete() {
wp_delete_post( $this->get_id() );
do_action( 'woocommerce_delete_coupon', $this->get_id() );
}
/**
* Helper method that updates all the post meta for a coupon based on it's settings in the WC_Coupon class.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @param int $coupon_id
*/
private function update_post_meta( $coupon_id ) {
update_post_meta( $coupon_id, 'discount_type', $this->get_discount_type() );
update_post_meta( $coupon_id, 'coupon_amount', $this->get_amount() );
update_post_meta( $coupon_id, 'individual_use', ( true === $this->get_individual_use() ) ? 'yes' : 'no' );
update_post_meta( $coupon_id, 'product_ids', implode( ',', array_filter( array_map( 'intval', $this->get_product_ids() ) ) ) );
update_post_meta( $coupon_id, 'exclude_product_ids', implode( ',', array_filter( array_map( 'intval', $this->get_excluded_product_categories() ) ) ) );
update_post_meta( $coupon_id, 'usage_limit', $this->get_usage_limit() );
update_post_meta( $coupon_id, 'usage_limit_per_user', $this->get_usage_limit_per_user() );
update_post_meta( $coupon_id, 'limit_usage_to_x_items', $this->get_limit_usage_to_x_items() );
update_post_meta( $coupon_id, 'usage_count', $this->get_usage_count() );
update_post_meta( $coupon_id, 'expiry_date', $this->get_expiry_date() );
update_post_meta( $coupon_id, 'free_shipping', ( true === $this->get_free_shipping() ) ? 'yes' : 'no' );
update_post_meta( $coupon_id, 'product_categories', array_filter( array_map( 'intval', $this->get_product_categories() ) ) );
update_post_meta( $coupon_id, 'exclude_product_categories', array_filter( array_map( 'intval', $this->get_excluded_product_categories() ) ) );
update_post_meta( $coupon_id, 'exclude_sale_items', ( true === $this->get_exclude_sale_items() ) ? 'yes' : 'no' );
update_post_meta( $coupon_id, 'minimum_amount', $this->get_minimum_amount() );
update_post_meta( $coupon_id, 'maximum_amount', $this->get_maximum_amount() );
update_post_meta( $coupon_id, 'customer_email', array_filter( array_map( 'sanitize_email', $this->get_email_restrictions() ) ) );
}
2016-02-23 16:01:40 +00:00
/**
* Sets the internal meta data from the database.
* @since 2.7.0
*/
private function _set_meta_data() {
$meta_data = get_post_meta( $this->get_id() );
$ignore_keys = array_merge( $this->_data, array( '_used_by' => '', 'coupon_amount' => '', '_edit_lock' => '', '_edit_last' => '' ) );
$ignore_keys = array_keys( $ignore_keys );
$meta_data = array_diff_key( $meta_data, array_fill_keys( $ignore_keys, '' ) );
foreach ( $meta_data as $key => $value ) {
$this->_meta_data[ $key ] = $value[0];
}
}
/**
* Developers can programically return coupons. This function will read those values into our WC_Coupon class.
2016-03-04 15:19:11 +00:00
* @since 2.7.0
* @param string $code Coupon code
* @param array $coupon Array of coupon properties
*/
public function read_manual_coupon( $code, $coupon ) {
// This will set most of our fields correctly
foreach ( $this->_data as $key => $value ) {
if ( isset( $coupon[ $key ] ) ) {
$this->_data[ $key ] = $coupon[ $key ];
}
}
// product_ids and exclude_product_ids could be passed in as an empty string '', or comma separated values, when it should be an empty array for the new format.
$convert_fields_to_array = array( 'product_ids', 'exclude_product_ids' );
foreach ( $convert_fields_to_array as $field ) {
if ( ! is_array( $coupon[ $field ] ) ) {
_doing_it_wrong( $field, $field . ' should be an array instead of a string.', '2.7' );
if ( empty( $coupon[ $field ] ) ) {
$this->_data[ $field ] = array();
} else {
$this->_data[ $field ] = explode( ',', $coupon[ $field ] );
}
}
}
// flip yes|no to true|false
$yes_no_fields = array( 'individual_use', 'free_shipping', 'exclude_sale_items' );
foreach ( $yes_no_fields as $field ) {
if ( 'yes' === $coupon[ $field ] || 'no' === $coupon[ $field ] ) {
_doing_it_wrong( $field, $field . ' should be true or false instead of yes or no.', '2.7' );
$this->_data[ $field ] = ( 'yes' === $coupon[ $field ] );
}
}
// set our code
$this->set_code( $code );
}
2016-02-23 16:01:40 +00:00
/*
|--------------------------------------------------------------------------
| Other Actions
2016-02-23 16:01:40 +00:00
|--------------------------------------------------------------------------
*/
2012-08-14 19:42:38 +00:00
/**
2014-11-11 20:52:45 +00:00
* Increase usage count for current coupon.
2012-08-14 19:42:38 +00:00
*
2015-07-16 19:55:48 +00:00
* @param string $used_by Either user ID or billing email
2012-08-14 19:42:38 +00:00
*/
public function inc_usage_count( $used_by = '' ) {
2016-02-23 16:01:40 +00:00
if ( $this->get_id() ) {
$this->_data['usage_count']++;
update_post_meta( $this->get_id(), 'usage_count', $this->get_usage_count() );
if ( $used_by ) {
2016-02-23 16:01:40 +00:00
add_post_meta( $this->get_id(), '_used_by', strtolower( $used_by ) );
$this->set_used_by( (array) get_post_meta( $this->get_id(), '_used_by' ) );
}
}
}
2012-08-14 19:42:38 +00:00
/**
2014-11-11 20:52:45 +00:00
* Decrease usage count for current coupon.
2012-08-14 19:42:38 +00:00
*
2015-07-16 19:55:48 +00:00
* @param string $used_by Either user ID or billing email
2012-08-14 19:42:38 +00:00
*/
public function dcr_usage_count( $used_by = '' ) {
2016-02-23 16:01:40 +00:00
if ( $this->get_id() && $this->get_usage_count() > 0 ) {
global $wpdb;
2016-02-23 16:01:40 +00:00
$this->_data['usage_count']--;
update_post_meta( $this->get_id(), 'usage_count', $this->get_usage_count() );
if ( $used_by ) {
/**
2015-11-03 13:31:20 +00:00
* We're doing this the long way because `delete_post_meta( $id, $key, $value )` deletes.
* all instances where the key and value match, and we only want to delete one.
*/
2016-02-23 16:01:40 +00:00
$meta_id = $wpdb->get_var( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE meta_key = '_used_by' AND meta_value = %s AND post_id = %d LIMIT 1;", $used_by, $this->get_id() ) );
if ( $meta_id ) {
delete_metadata_by_mid( 'post', $meta_id );
$this->set_used_by( (array) get_post_meta( $this->get_id(), '_used_by' ) );
}
}
}
2011-08-15 16:48:24 +00:00
}
2012-08-14 19:42:38 +00:00
2016-02-23 16:01:40 +00:00
/*
|--------------------------------------------------------------------------
| Validation & Error Handling
|--------------------------------------------------------------------------
*/
/**
2015-11-03 13:31:20 +00:00
* Returns the error_message string.
*
* @access public
* @return string
*/
public function get_error_message() {
return $this->error_message;
}
2012-06-10 18:07:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon exists or throw exception.
*
* @throws Exception
2012-06-10 18:07:19 +00:00
*/
2014-11-14 17:18:02 +00:00
private function validate_exists() {
2016-02-23 16:01:40 +00:00
if ( ! $this->get_id() ) {
2014-11-14 17:18:02 +00:00
throw new Exception( self::E_WC_COUPON_NOT_EXIST );
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon usage limit is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_usage_limit() {
2016-02-23 16:01:40 +00:00
if ( $this->get_usage_limit() > 0 && $this->get_usage_count() >= $this->get_usage_limit() ) {
2014-11-14 17:18:02 +00:00
throw new Exception( self::E_WC_COUPON_USAGE_LIMIT_REACHED );
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon user usage limit is valid or throw exception.
2014-11-14 17:18:02 +00:00
*
2015-11-03 13:31:20 +00:00
* Per user usage limit - check here if user is logged in (against user IDs).
* Checked again for emails later on in WC_Cart::check_customer_coupons().
*
* @param int $user_id
2015-11-17 12:51:42 +00:00
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_user_usage_limit( $user_id = null ) {
if ( ! $user_id ) {
$user_id = get_current_user_id();
}
if ( $this->get_usage_limit_per_user() > 0 && is_user_logged_in() && $this->get_id() ) {
global $wpdb;
2016-02-23 16:01:40 +00:00
$usage_count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( meta_id ) FROM {$wpdb->postmeta} WHERE post_id = %d AND meta_key = '_used_by' AND meta_value = %d;", $this->get_id(), $user_id ) );
2012-08-14 19:42:38 +00:00
2016-02-23 16:01:40 +00:00
if ( $usage_count >= $this->get_usage_limit_per_user() ) {
2014-11-14 17:18:02 +00:00
throw new Exception( self::E_WC_COUPON_USAGE_LIMIT_REACHED );
}
2014-11-14 17:18:02 +00:00
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon date is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_expiry_date() {
2016-02-23 16:01:40 +00:00
if ( $this->get_expiry_date() && current_time( 'timestamp' ) > $this->get_expiry_date() ) {
2014-11-14 17:18:02 +00:00
throw new Exception( $error_code = self::E_WC_COUPON_EXPIRED );
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon amount is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_minimum_amount() {
2016-02-23 16:01:40 +00:00
if ( $this->get_minimum_amount() > 0 && wc_format_decimal( $this->get_minimum_amount() ) > wc_format_decimal( WC()->cart->subtotal ) ) {
2014-11-14 17:18:02 +00:00
throw new Exception( self::E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET );
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon amount is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_maximum_amount() {
2016-02-23 16:01:40 +00:00
if ( $this->get_maximum_amount() > 0 && wc_format_decimal( $this->get_maximum_amount() ) < wc_format_decimal( WC()->cart->subtotal ) ) {
2014-11-14 17:18:02 +00:00
throw new Exception( self::E_WC_COUPON_MAX_SPEND_LIMIT_MET );
}
}
2012-11-27 16:22:47 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for products in the cart is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_product_ids() {
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_product_ids() ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
2016-02-23 16:01:40 +00:00
if ( in_array( $cart_item['product_id'], $this->get_product_ids() ) || in_array( $cart_item['variation_id'], $this->get_product_ids() ) || in_array( $cart_item['data']->get_parent(), $this->get_product_ids() ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for product categories in the cart is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_product_categories() {
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_product_categories() ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$product_cats = wc_get_product_cat_ids( $cart_item['product_id'] );
// If we find an item with a cat in our allowed cat list, the coupon is valid
2016-02-23 16:01:40 +00:00
if ( sizeof( array_intersect( $product_cats, $this->get_product_categories() ) ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2012-08-14 19:42:38 +00:00
/**
* Ensure coupon is valid for product categories in the cart is valid or throw exception.
*
* @throws Exception
*/
private function validate_excluded_product_categories() {
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_excluded_product_categories() ) > 0 ) {
$valid_for_cart = false;
if ( ! WC()->cart->is_empty() ) {
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$product_cats = wc_get_product_cat_ids( $cart_item['product_id'] );
// If we find an item with a cat NOT in our disallowed cat list, the coupon is valid
2016-02-23 16:01:40 +00:00
if ( empty( $product_cats ) || sizeof( array_diff( $product_cats, $this->get_excluded_product_categories() ) ) > 0 ) {
$valid_for_cart = true;
}
}
}
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_NOT_APPLICABLE );
}
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Ensure coupon is valid for sale items in the cart is valid or throw exception.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_sale_items() {
if ( $this->get_exclude_sale_items() && $this->is_type( wc_get_product_coupon_types() ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
$product_ids_on_sale = wc_get_product_ids_on_sale();
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
if ( ! empty( $cart_item['variation_id'] ) ) {
if ( ! in_array( $cart_item['variation_id'], $product_ids_on_sale, true ) ) {
$valid_for_cart = true;
}
} elseif ( ! in_array( $cart_item['product_id'], $product_ids_on_sale, true ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_NOT_VALID_SALE_ITEMS );
}
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Cart discounts cannot be added if non-eligble product is found in cart.
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_items() {
if ( ! $this->is_type( wc_get_product_coupon_types() ) ) {
2014-11-14 17:18:02 +00:00
$this->validate_cart_excluded_product_ids();
$this->validate_cart_excluded_product_categories();
$this->validate_cart_excluded_sale_items();
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude products from cart.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_product_ids() {
// Exclude Products
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_excluded_product_ids() ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
2016-02-23 16:01:40 +00:00
if ( in_array( $cart_item['product_id'], $this->get_excluded_product_ids() ) || in_array( $cart_item['variation_id'], $this->get_excluded_product_ids() ) || in_array( $cart_item['data']->get_parent(), $this->get_excluded_product_ids() ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
}
}
2014-11-14 17:18:02 +00:00
}
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_EXCLUDED_PRODUCTS );
}
}
}
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude categories from cart.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_product_categories() {
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_excluded_product_categories() ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$product_cats = wc_get_product_cat_ids( $cart_item['product_id'] );
2016-02-23 16:01:40 +00:00
if ( sizeof( array_intersect( $product_cats, $this->get_excluded_product_categories() ) ) > 0 ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
2012-08-31 08:45:50 +00:00
}
}
}
2014-11-14 17:18:02 +00:00
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_EXCLUDED_CATEGORIES );
}
2014-11-14 17:18:02 +00:00
}
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
2015-11-03 13:31:20 +00:00
* Exclude sale items from cart.
*
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
private function validate_cart_excluded_sale_items() {
if ( $this->get_exclude_sale_items() ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = true;
$product_ids_on_sale = wc_get_product_ids_on_sale();
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
2014-11-14 17:18:02 +00:00
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
if ( ! empty( $cart_item['variation_id'] ) ) {
if ( in_array( $cart_item['variation_id'], $product_ids_on_sale, true ) ) {
$valid_for_cart = false;
}
} elseif ( in_array( $cart_item['product_id'], $product_ids_on_sale, true ) ) {
2014-11-14 17:18:02 +00:00
$valid_for_cart = false;
}
}
}
if ( ! $valid_for_cart ) {
throw new Exception( self::E_WC_COUPON_NOT_VALID_SALE_ITEMS );
}
2012-07-31 12:28:03 +00:00
}
2014-11-14 17:18:02 +00:00
}
2012-08-14 19:42:38 +00:00
2014-11-14 17:18:02 +00:00
/**
* Check if a coupon is valid.
*
* @return boolean validity
* @throws Exception
2014-11-14 17:18:02 +00:00
*/
public function is_valid() {
try {
$this->validate_exists();
$this->validate_usage_limit();
$this->validate_user_usage_limit();
$this->validate_expiry_date();
$this->validate_minimum_amount();
$this->validate_maximum_amount();
$this->validate_product_ids();
$this->validate_product_categories();
$this->validate_excluded_product_categories();
2014-11-14 17:18:02 +00:00
$this->validate_sale_items();
$this->validate_cart_excluded_items();
if ( ! apply_filters( 'woocommerce_coupon_is_valid', true, $this ) ) {
throw new Exception( self::E_WC_COUPON_INVALID_FILTERED );
}
} catch ( Exception $e ) {
$this->error_message = $this->get_coupon_error( $e->getMessage() );
return false;
}
2014-11-14 17:18:02 +00:00
return true;
2011-08-10 17:11:11 +00:00
}
2013-02-15 03:56:35 +00:00
2013-11-25 15:00:54 +00:00
/**
2015-11-03 13:31:20 +00:00
* Check if a coupon is valid.
2013-11-25 15:00:54 +00:00
*
* @return bool
*/
public function is_valid_for_cart() {
return apply_filters( 'woocommerce_coupon_is_valid_for_cart', $this->is_type( wc_get_cart_coupon_types() ), $this );
}
/**
2015-11-03 13:31:20 +00:00
* Check if a coupon is valid for a product.
*
* @param WC_Product $product
* @return boolean
*/
2014-10-13 08:32:40 +00:00
public function is_valid_for_product( $product, $values = array() ) {
if ( ! $this->is_type( wc_get_product_coupon_types() ) ) {
return apply_filters( 'woocommerce_coupon_is_valid_for_product', false, $product, $this, $values );
}
$valid = false;
$product_cats = wc_get_product_cat_ids( $product->id );
// Specific products get the discount
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_product_ids() ) > 0 ) {
if ( in_array( $product->id, $this->get_product_ids() ) || ( isset( $product->variation_id ) && in_array( $product->variation_id, $this->get_product_ids() ) ) || in_array( $product->get_parent(), $this->get_product_ids() ) ) {
$valid = true;
}
}
// Category discounts
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_product_categories() ) > 0 ) {
if ( sizeof( array_intersect( $product_cats, $this->get_product_categories() ) ) > 0 ) {
$valid = true;
}
}
2016-02-23 16:01:40 +00:00
if ( ! sizeof( $this->get_product_ids() ) && ! sizeof( $this->get_product_categories() ) ) {
// No product ids - all items discounted
$valid = true;
}
// Specific product ID's excluded from the discount
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_excluded_product_ids() ) > 0 ) {
if ( in_array( $product->id, $this->get_excluded_product_ids() ) || ( isset( $product->variation_id ) && in_array( $product->variation_id, $this->get_excluded_product_ids() ) ) || in_array( $product->get_parent(), $this->get_excluded_product_ids() ) ) {
$valid = false;
}
}
// Specific categories excluded from the discount
2016-02-23 16:01:40 +00:00
if ( sizeof( $this->get_excluded_product_categories() ) > 0 ) {
if ( sizeof( array_intersect( $product_cats, $this->get_excluded_product_categories() ) ) > 0 ) {
$valid = false;
}
}
// Sale Items excluded from discount
if ( $this->get_exclude_sale_items() ) {
2013-11-25 13:56:59 +00:00
$product_ids_on_sale = wc_get_product_ids_on_sale();
if ( isset( $product->variation_id ) ) {
if ( in_array( $product->variation_id, $product_ids_on_sale, true ) ) {
$valid = false;
}
} elseif ( in_array( $product->id, $product_ids_on_sale, true ) ) {
$valid = false;
}
}
return apply_filters( 'woocommerce_coupon_is_valid_for_product', $valid, $product, $this, $values );
}
2013-02-15 00:29:55 +00:00
/**
2015-11-03 13:31:20 +00:00
* Converts one of the WC_Coupon message/error codes to a message string and.
2013-02-15 03:56:35 +00:00
* displays the message/error.
2013-02-15 00:29:55 +00:00
*
2013-02-15 03:56:35 +00:00
* @param int $msg_code Message/error code.
2013-02-15 00:29:55 +00:00
*/
2013-02-15 03:56:35 +00:00
public function add_coupon_message( $msg_code ) {
2015-03-06 16:36:34 +00:00
$msg = $msg_code < 200 ? $this->get_coupon_error( $msg_code ) : $this->get_coupon_message( $msg_code );
if ( ! $msg ) {
return;
}
if ( $msg_code < 200 ) {
wc_add_notice( $msg, 'error' );
} else {
wc_add_notice( $msg );
}
2013-02-15 03:56:35 +00:00
}
2013-02-15 00:29:55 +00:00
2013-02-15 03:56:35 +00:00
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon message codes to a message string.
2013-02-15 03:56:35 +00:00
*
2014-09-07 23:37:55 +00:00
* @param integer $msg_code
2013-02-15 03:56:35 +00:00
* @return string| Message/error string
*/
public function get_coupon_message( $msg_code ) {
switch ( $msg_code ) {
case self::WC_COUPON_SUCCESS :
2013-02-15 03:56:35 +00:00
$msg = __( 'Coupon code applied successfully.', 'woocommerce' );
break;
case self::WC_COUPON_REMOVED :
$msg = __( 'Coupon code removed successfully.', 'woocommerce' );
break;
2013-02-15 03:56:35 +00:00
default:
$msg = '';
break;
2013-02-15 03:56:35 +00:00
}
return apply_filters( 'woocommerce_coupon_message', $msg, $msg_code, $this );
2013-02-15 00:29:55 +00:00
}
2013-02-15 03:56:35 +00:00
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon error codes to a message string.
*
* @param int $err_code Message/error code.
* @return string| Message/error string
*/
public function get_coupon_error( $err_code ) {
switch ( $err_code ) {
case self::E_WC_COUPON_INVALID_FILTERED:
$err = __( 'Coupon is not valid.', 'woocommerce' );
break;
case self::E_WC_COUPON_NOT_EXIST:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'Coupon "%s" does not exist!', 'woocommerce' ), $this->get_code() );
break;
case self::E_WC_COUPON_INVALID_REMOVED:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'Sorry, it seems the coupon "%s" is invalid - it has now been removed from your order.', 'woocommerce' ), $this->get_code() );
break;
case self::E_WC_COUPON_NOT_YOURS_REMOVED:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'Sorry, it seems the coupon "%s" is not yours - it has now been removed from your order.', 'woocommerce' ), $this->get_code() );
break;
case self::E_WC_COUPON_ALREADY_APPLIED:
$err = __( 'Coupon code already applied!', 'woocommerce' );
break;
case self::E_WC_COUPON_ALREADY_APPLIED_INDIV_USE_ONLY:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'Sorry, coupon "%s" has already been applied and cannot be used in conjunction with other coupons.', 'woocommerce' ), $this->get_code() );
break;
case self::E_WC_COUPON_USAGE_LIMIT_REACHED:
$err = __( 'Coupon usage limit has been reached.', 'woocommerce' );
break;
case self::E_WC_COUPON_EXPIRED:
$err = __( 'This coupon has expired.', 'woocommerce' );
break;
case self::E_WC_COUPON_MIN_SPEND_LIMIT_NOT_MET:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'The minimum spend for this coupon is %s.', 'woocommerce' ), wc_price( $this->get_minimum_amount() ) );
break;
case self::E_WC_COUPON_MAX_SPEND_LIMIT_MET:
2016-02-23 16:01:40 +00:00
$err = sprintf( __( 'The maximum spend for this coupon is %s.', 'woocommerce' ), wc_price( $this->get_maximum_amount() ) );
break;
case self::E_WC_COUPON_NOT_APPLICABLE:
$err = __( 'Sorry, this coupon is not applicable to your cart contents.', 'woocommerce' );
break;
case self::E_WC_COUPON_EXCLUDED_PRODUCTS:
// Store excluded products that are in cart in $products
$products = array();
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
2016-02-23 16:01:40 +00:00
if ( in_array( $cart_item['product_id'], $this->get_excluded_product_ids() ) || in_array( $cart_item['variation_id'], $this->get_excluded_product_ids() ) || in_array( $cart_item['data']->get_parent(), $this->get_excluded_product_ids() ) ) {
$products[] = $cart_item['data']->get_title();
}
}
}
$err = sprintf( __( 'Sorry, this coupon is not applicable to the products: %s.', 'woocommerce' ), implode( ', ', $products ) );
break;
case self::E_WC_COUPON_EXCLUDED_CATEGORIES:
// Store excluded categories that are in cart in $categories
$categories = array();
2015-05-14 21:18:53 +00:00
if ( ! WC()->cart->is_empty() ) {
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$product_cats = wc_get_product_cat_ids( $cart_item['product_id'] );
2016-02-23 16:01:40 +00:00
if ( sizeof( $intersect = array_intersect( $product_cats, $this->get_excluded_product_categories() ) ) > 0 ) {
foreach( $intersect as $cat_id) {
$cat = get_term( $cat_id, 'product_cat' );
$categories[] = $cat->name;
}
}
}
}
$err = sprintf( __( 'Sorry, this coupon is not applicable to the categories: %s.', 'woocommerce' ), implode( ', ', array_unique( $categories ) ) );
break;
case self::E_WC_COUPON_NOT_VALID_SALE_ITEMS:
$err = __( 'Sorry, this coupon is not valid for sale items.', 'woocommerce' );
break;
default:
$err = '';
break;
}
return apply_filters( 'woocommerce_coupon_error', $err, $err_code, $this );
}
/**
2015-11-03 13:31:20 +00:00
* Map one of the WC_Coupon error codes to an error string.
2013-02-15 03:56:35 +00:00
* No coupon instance will be available where a coupon does not exist,
* so this static method exists.
*
* @param int $err_code Error code
* @return string| Error string
*/
public static function get_generic_coupon_error( $err_code ) {
switch ( $err_code ) {
case self::E_WC_COUPON_NOT_EXIST:
$err = __( 'Coupon does not exist!', 'woocommerce' );
break;
case self::E_WC_COUPON_PLEASE_ENTER:
$err = __( 'Please enter a coupon code.', 'woocommerce' );
break;
2013-02-15 03:56:35 +00:00
default:
$err = '';
break;
2013-02-15 03:56:35 +00:00
}
// When using this static method, there is no $this to pass to filter
return apply_filters( 'woocommerce_coupon_error', $err, $err_code, null );
2013-02-15 03:56:35 +00:00
}
2013-01-29 13:23:52 +00:00
}