woocommerce/includes/class-wc-customer.php

1074 lines
25 KiB
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php
include_once( 'legacy/class-wc-legacy-customer.php' );
2015-11-06 09:22:19 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
2015-11-06 09:22:19 +00:00
}
2011-08-09 15:16:18 +00:00
/**
* The WooCommerce customer class handles storage of the current customer's data, such as location.
2011-08-09 15:16:18 +00:00
*
* @class WC_Customer
* @version 2.7.0
* @package WooCommerce/Classes
* @category Class
* @author WooThemes
2011-08-09 15:16:18 +00:00
*/
class WC_Customer extends WC_Legacy_Customer {
2012-11-27 16:22:47 +00:00
/**
2015-11-03 13:31:20 +00:00
* Stores customer data.
2016-11-14 18:18:08 +00:00
*
* @var array
*/
protected $data = array(
'date_created' => '',
'date_modified' => '',
'email' => '',
'first_name' => '',
'last_name' => '',
'role' => 'customer',
'username' => '',
'billing' => array(
'first_name' => '',
'last_name' => '',
'company' => '',
'address_1' => '',
'address_2' => '',
'city' => '',
'state' => '',
'postcode' => '',
'country' => '',
'email' => '',
'phone' => '',
),
'shipping' => array(
'first_name' => '',
'last_name' => '',
'company' => '',
'address_1' => '',
'address_2' => '',
'city' => '',
'state' => '',
'postcode' => '',
'country' => '',
),
'is_paying_customer' => false,
);
/**
* Stores a password if this needs to be changed. Write-only and hidden from _data.
2016-11-14 18:18:08 +00:00
*
* @var string
*/
protected $password = '';
/**
* Stores if user is VAT exempt for this session.
2016-11-14 18:18:08 +00:00
*
* @var string
*/
protected $is_vat_exempt = false;
/**
* Stores if user has calculated shipping in this session.
2016-11-14 18:18:08 +00:00
*
* @var string
*/
protected $calculated_shipping = false;
/**
* Load customer data based on how WC_Customer is called.
*
* If $customer is 'new', you can build a new WC_Customer object. If it's empty, some
* data will be pulled from the session for the current user/customer.
*
2016-11-14 18:18:08 +00:00
* @param WC_Customer|int $data Customer ID or data.
* @param bool $is_session True if this is the customer session
2016-11-14 18:18:08 +00:00
* @throws Exception if customer cannot be read/found and $data is set.
*/
2016-11-14 18:18:08 +00:00
public function __construct( $data = 0, $is_session = false ) {
parent::__construct( $data );
2016-11-14 18:18:08 +00:00
if ( $data instanceof WC_Customer ) {
$this->set_id( absint( $data->get_id() ) );
} elseif ( is_numeric( $data ) ) {
$this->set_id( $data );
}
2016-11-14 18:18:08 +00:00
$this->data_store = WC_Data_Store::load( 'customer' );
2016-11-14 18:18:08 +00:00
// If we have an ID, load the user from the DB.
if ( $this->get_id() ) {
$this->data_store->read( $this );
} else {
$this->set_object_read( true );
}
2016-11-14 18:18:08 +00:00
// If this is a session, set or change the data store to sessions. Changes do not persist in the database.
if ( $is_session ) {
$this->data_store = WC_Data_Store::load( 'customer-session' );
$this->data_store->read( $this );
}
}
/**
2016-11-14 18:18:08 +00:00
* Callback to remove unwanted meta data.
*
* @param object $meta
* @return bool
*/
2016-11-14 18:18:08 +00:00
protected function exclude_internal_meta_keys( $meta ) {
global $wpdb;
2016-11-14 18:18:08 +00:00
return ! in_array( $meta->meta_key, $this->get_internal_meta_keys() )
&& 0 !== strpos( $meta->meta_key, 'closedpostboxes_' )
&& 0 !== strpos( $meta->meta_key, 'metaboxhidden_' )
&& 0 !== strpos( $meta->meta_key, 'manageedit-' )
&& ! strstr( $meta->meta_key, $wpdb->prefix );
}
/**
2016-11-14 18:18:08 +00:00
* Delete a customer and reassign posts..
*
* @param int $reassign Reassign posts and links to new User ID.
* @since 2.7.0
2016-11-14 18:18:08 +00:00
* @return bool
*/
2016-11-14 18:18:08 +00:00
public function delete_and_reassign( $reassign = null ) {
if ( $this->data_store ) {
2016-11-15 19:35:10 +00:00
$this->data_store->delete( $this, array( 'force_delete' => true, 'reassign' => $reassign ) );
2016-11-14 18:18:08 +00:00
$this->set_id( 0 );
return true;
}
2016-11-14 18:18:08 +00:00
return false;
}
/**
* Is customer outside base country (for tax purposes)?
2016-11-14 18:18:08 +00:00
*
* @return bool
*/
public function is_customer_outside_base() {
list( $country, $state ) = $this->get_taxable_address();
if ( $country ) {
$default = wc_get_base_location();
if ( $default['country'] !== $country ) {
return true;
}
if ( $default['state'] && $default['state'] !== $state ) {
return true;
}
}
return false;
}
2016-11-14 18:18:08 +00:00
/**
* Return this customer's avatar.
*
* @since 2.7.0
* @return string
*/
public function get_avatar_url() {
$avatar_html = get_avatar( $this->get_email() );
// Get the URL of the avatar from the provided HTML
preg_match( '/src=["|\'](.+)[\&|"|\']/U', $avatar_html, $matches );
if ( isset( $matches[1] ) && ! empty( $matches[1] ) ) {
return esc_url( $matches[1] );
}
return '';
}
/**
* Get taxable address.
* @return array
*/
public function get_taxable_address() {
$tax_based_on = get_option( 'woocommerce_tax_based_on' );
// Check shipping method at this point to see if we need special handling
if ( true === apply_filters( 'woocommerce_apply_base_tax_for_local_pickup', true ) && sizeof( array_intersect( wc_get_chosen_shipping_method_ids(), apply_filters( 'woocommerce_local_pickup_methods', array( 'legacy_local_pickup', 'local_pickup' ) ) ) ) > 0 ) {
$tax_based_on = 'base';
}
if ( 'base' === $tax_based_on ) {
$country = WC()->countries->get_base_country();
$state = WC()->countries->get_base_state();
$postcode = WC()->countries->get_base_postcode();
$city = WC()->countries->get_base_city();
} elseif ( 'billing' === $tax_based_on ) {
$country = $this->get_billing_country();
$state = $this->get_billing_state();
$postcode = $this->get_billing_postcode();
$city = $this->get_billing_city();
} else {
$country = $this->get_shipping_country();
$state = $this->get_shipping_state();
$postcode = $this->get_shipping_postcode();
$city = $this->get_shipping_city();
}
return apply_filters( 'woocommerce_customer_taxable_address', array( $country, $state, $postcode, $city ) );
}
/**
* Gets a customer's downloadable products.
*
* @return array Array of downloadable products
*/
public function get_downloadable_products() {
$downloads = array();
if ( $this->get_id() ) {
$downloads = wc_get_customer_available_downloads( $this->get_id() );
}
return apply_filters( 'woocommerce_customer_get_downloadable_products', $downloads );
}
/**
* Is customer VAT exempt?
2016-11-14 18:18:08 +00:00
*
* @return bool
*/
public function is_vat_exempt() {
return $this->get_is_vat_exempt();
}
/**
* Has calculated shipping?
2016-11-14 18:18:08 +00:00
*
* @return bool
*/
public function has_calculated_shipping() {
return $this->get_calculated_shipping();
}
2016-11-14 18:18:08 +00:00
/**
* Get if customer is VAT exempt?
*
* @since 2.7.0
* @return bool
*/
public function get_is_vat_exempt() {
return $this->is_vat_exempt;
}
/**
* Get password (only used when updating the user object).
*
* @return string
*/
public function get_password() {
return $this->password;
}
/**
* Has customer calculated shipping?
*
* @param string $context
* @return bool
*/
public function get_calculated_shipping() {
return $this->calculated_shipping;
}
/**
* Set if customer has tax exemption.
*
* @param bool $is_vat_exempt
*/
public function set_is_vat_exempt( $is_vat_exempt ) {
$this->is_vat_exempt = (bool) $is_vat_exempt;
}
/**
* Calculated shipping?
*
* @param boolean $calculated
*/
public function set_calculated_shipping( $calculated = true ) {
$this->calculated_shipping = (bool) $calculated;
}
/**
* Set customer's password.
*
* @since 2.7.0
* @param string $password
* @throws WC_Data_Exception
*/
public function set_password( $password ) {
$this->password = wc_clean( $password );
}
/**
* Gets the customers last order.
*
* @param WC_Customer
* @return WC_Order|false
*/
public function get_last_order() {
return $this->data_store->get_last_order( $this );
}
/**
* Return the number of orders this customer has.
*
* @param WC_Customer
* @return integer
*/
public function get_order_count() {
return $this->data_store->get_order_count( $this );
}
/**
* Return how much money this customer has spent.
*
* @param WC_Customer
* @return float
*/
public function get_total_spent() {
return $this->data_store->get_total_spent( $this );
}
/*
|--------------------------------------------------------------------------
| Getters
|--------------------------------------------------------------------------
*/
/**
* Return the customer's username.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_username( $context = 'view' ) {
return $this->get_prop( 'username', $context );
}
/**
* Return the customer's email.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_email( $context = 'view' ) {
return $this->get_prop( 'email', $context );
}
2012-08-14 19:42:38 +00:00
/**
* Return customer's first name.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_first_name( $context = 'view' ) {
return $this->get_prop( 'first_name', $context );
}
/**
* Return customer's last name.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_last_name( $context = 'view' ) {
return $this->get_prop( 'last_name', $context );
}
/**
* Return customer's user role.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_role( $context = 'view' ) {
return $this->get_prop( 'role', $context );
}
/**
* Return the date this customer was created.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return integer
*/
2016-11-14 18:18:08 +00:00
public function get_date_created( $context = 'view' ) {
return $this->get_prop( 'date_created', $context );
}
/**
* Return the date this customer was last updated.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $context
* @return integer
*/
2016-11-14 18:18:08 +00:00
public function get_date_modified( $context = 'view' ) {
return $this->get_prop( 'date_modified', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Gets a prop for a getter method.
*
* @since 2.7.0
* @param string $prop Name of prop to get.
* @param string $address billing or shipping.
* @param string $context What the value is for. Valid values are view and edit.
* @return mixed
*/
protected function get_address_prop( $prop, $address = 'billing', $context = 'view' ) {
$value = null;
if ( array_key_exists( $prop, $this->data[ $address ] ) ) {
$value = isset( $this->changes[ $address ][ $prop ] ) ? $this->changes[ $address ][ $prop ] : $this->data[ $address ][ $prop ];
if ( 'view' === $context ) {
$value = apply_filters( $this->get_hook_prefix() . $address . '_' . $prop, $value, $this );
}
}
return $value;
}
/**
* Get billing_first_name.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_billing_first_name( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'first_name', 'billing', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get billing_last_name.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_billing_last_name( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'last_name', 'billing', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get billing_company.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_billing_company( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'company', 'billing', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get billing_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_address( $context = 'view' ) {
return $this->get_billing_address_1( $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get billing_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_address_1( $context = 'view' ) {
return $this->get_address_prop( 'address_1', 'billing', $context );
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_address_2.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2016-11-17 15:05:40 +00:00
* @return string $value
2012-08-14 19:42:38 +00:00
*/
2016-11-17 15:05:40 +00:00
public function get_billing_address_2( $context = 'view' ) {
return $this->get_address_prop( 'address_2', 'billing', $context );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_city.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2016-11-17 15:05:40 +00:00
* @return string $value
2012-08-14 19:42:38 +00:00
*/
2016-11-14 18:18:08 +00:00
public function get_billing_city( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'city', 'billing', $context );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_state.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2012-08-14 19:42:38 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_state( $context = 'view' ) {
return $this->get_address_prop( 'state', 'billing', $context );
2012-09-23 16:16:39 +00:00
}
2012-11-27 16:22:47 +00:00
2016-03-15 18:37:42 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_postcode.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2016-03-15 18:37:42 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_postcode( $context = 'view' ) {
return $this->get_address_prop( 'postcode', 'billing', $context );
2016-03-15 18:37:42 +00:00
}
2012-09-23 16:16:39 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_country.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
2012-09-23 16:16:39 +00:00
*/
2016-11-17 15:05:40 +00:00
public function get_billing_country( $context = 'view' ) {
return $this->get_address_prop( 'country', 'billing', $context );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_email.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_email( $context = 'view' ) {
return $this->get_address_prop( 'email', 'billing', $context );
}
2012-11-27 16:22:47 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get billing_phone.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_billing_phone( $context = 'view' ) {
return $this->get_address_prop( 'phone', 'billing', $context );
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_first_name.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_shipping_first_name( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'first_name', 'shipping', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get shipping_last_name.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_shipping_last_name( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'last_name', 'shipping', $context );
}
/**
2016-11-17 15:05:40 +00:00
* Get shipping_company.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-14 18:18:08 +00:00
public function get_shipping_company( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'company', 'shipping', $context );
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2012-08-14 19:42:38 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_address( $context = 'view' ) {
return $this->get_shipping_address_1( $context );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2012-08-14 19:42:38 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_address_1( $context = 'view' ) {
return $this->get_address_prop( 'address_1', 'shipping', $context );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_address_2.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2012-08-14 19:42:38 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_address_2( $context = 'view' ) {
return $this->get_address_prop( 'address_2', 'shipping', $context );
2012-09-23 16:16:39 +00:00
}
2012-11-27 16:22:47 +00:00
2012-09-23 16:16:39 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_city.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
2012-09-23 16:16:39 +00:00
*/
2016-11-14 18:18:08 +00:00
public function get_shipping_city( $context = 'view' ) {
2016-11-17 15:05:40 +00:00
return $this->get_address_prop( 'city', 'shipping', $context );
2011-08-09 15:16:18 +00:00
}
2012-11-27 16:22:47 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_state.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_state( $context = 'view' ) {
return $this->get_address_prop( 'state', 'shipping', $context );
}
2012-11-27 16:22:47 +00:00
2016-03-15 18:37:42 +00:00
/**
2016-11-17 15:05:40 +00:00
* Get shipping_postcode.
2016-11-14 18:18:08 +00:00
*
* @param string $context
2016-03-15 18:37:42 +00:00
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_postcode( $context = 'view' ) {
return $this->get_address_prop( 'postcode', 'shipping', $context );
2016-03-15 18:37:42 +00:00
}
/**
2016-11-17 15:05:40 +00:00
* Get shipping_country.
2016-11-14 18:18:08 +00:00
*
* @param string $context
* @return string
*/
2016-11-17 15:05:40 +00:00
public function get_shipping_country( $context = 'view' ) {
return $this->get_address_prop( 'country', 'shipping', $context );
}
2015-03-27 16:43:04 +00:00
/**
* Is the user a paying customer?
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
2016-11-14 18:18:08 +00:00
* @param string $context
* @return bool
*/
2016-11-14 18:18:08 +00:00
function get_is_paying_customer( $context = 'view' ) {
return $this->get_prop( 'is_paying_customer', $context );
}
2015-03-27 16:52:21 +00:00
/*
|--------------------------------------------------------------------------
| Setters
|--------------------------------------------------------------------------
*/
2015-03-27 16:52:21 +00:00
/**
* Set customer's username.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $username
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_username( $username ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'username', $username );
}
/**
* Set customer's email.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
2016-08-30 13:34:58 +00:00
* @param string $value
* @throws WC_Data_Exception
*/
2016-08-30 13:34:58 +00:00
public function set_email( $value ) {
if ( $value && ! is_email( $value ) ) {
$this->error( 'customer_invalid_email', __( 'Invalid email address', 'woocommerce' ) );
}
2016-11-14 18:18:08 +00:00
$this->set_prop( 'email', sanitize_email( $value ) );
}
/**
* Set customer's first name.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $first_name
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_first_name( $first_name ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'first_name', $first_name );
}
/**
* Set customer's last name.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param string $last_name
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_last_name( $last_name ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'last_name', $last_name );
}
/**
* Set customer's user role(s).
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param mixed $role
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_role( $role ) {
2016-08-30 13:34:58 +00:00
global $wp_roles;
if ( $role && ! empty( $wp_roles->roles ) && ! in_array( $role, array_keys( $wp_roles->roles ) ) ) {
$this->error( 'customer_invalid_role', __( 'Invalid role', 'woocommerce' ) );
}
2016-11-14 18:18:08 +00:00
$this->set_prop( 'role', $role );
}
/**
2016-03-15 18:37:42 +00:00
* Set the date this customer was last updated.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param integer $timestamp
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-03-15 18:37:42 +00:00
public function set_date_modified( $timestamp ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'date_modified', is_numeric( $timestamp ) ? $timestamp : strtotime( $timestamp ) );
}
/**
2016-03-15 18:37:42 +00:00
* Set the date this customer was last updated.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
* @param integer $timestamp
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-03-15 18:37:42 +00:00
public function set_date_created( $timestamp ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'date_created', is_numeric( $timestamp ) ? $timestamp : strtotime( $timestamp ) );
}
/**
* Set customer address to match shop base address.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_billing_address_to_base() {
$base = wc_get_customer_default_location();
2016-11-14 18:18:08 +00:00
$this->set_billing_location( $base['country'], $base['state'], '', '' );
}
/**
* Set customer shipping address to base address.
2016-11-14 18:18:08 +00:00
*
* @since 2.7.0
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-03-15 18:37:42 +00:00
public function set_shipping_address_to_base() {
$base = wc_get_customer_default_location();
2016-11-14 18:18:08 +00:00
$this->set_shipping_location( $base['country'], $base['state'], '', '' );
}
/**
2016-11-14 18:18:08 +00:00
* Sets all address info at once.
*
* @param string $country
* @param string $state
* @param string $postcode
* @param string $city
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-14 18:18:08 +00:00
public function set_billing_location( $country, $state, $postcode = '', $city = '' ) {
$billing = $this->get_prop( 'billing', 'edit' );
$billing['country'] = $country;
$billing['state'] = $state;
$billing['postcode'] = $postcode;
$billing['city'] = $city;
$this->set_prop( 'billing', $billing );
2015-03-27 16:43:04 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-14 18:18:08 +00:00
* Sets all shipping info at once.
*
2014-09-07 23:37:55 +00:00
* @param string $country
* @param string $state
* @param string $postcode
* @param string $city
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
2016-11-14 18:18:08 +00:00
public function set_shipping_location( $country, $state = '', $postcode = '', $city = '' ) {
$shipping = $this->get_prop( 'shipping', 'edit' );
$shipping['country'] = $country;
$shipping['state'] = $state;
$shipping['postcode'] = $postcode;
$shipping['city'] = $city;
$this->set_prop( 'shipping', $shipping );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Sets a prop for a setter method.
*
* @since 2.7.0
* @param string $prop Name of prop to set.
* @param string $address Name of address to set. billing or shipping.
* @param mixed $value Value of the prop.
*/
protected function set_address_prop( $prop, $address = 'billing', $value ) {
if ( array_key_exists( $prop, $this->data[ $address ] ) ) {
if ( true === $this->object_read ) {
2016-11-17 16:02:09 +00:00
if ( $value !== $this->data[ $address ][ $prop ] || ( isset( $this->changes[ $address ] ) && array_key_exists( $prop, $this->changes[ $address ] ) ) ) {
2016-11-17 15:17:23 +00:00
$this->changes[ $address ][ $prop ] = $value;
}
} else {
$this->data[ $address ][ $prop ] = $value;
}
}
}
/**
* Set billing_first_name.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
public function set_billing_first_name( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'first_name', 'billing', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set billing_last_name.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
public function set_billing_last_name( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'last_name', 'billing', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set billing_company.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
public function set_billing_company( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'company', 'billing', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_address( $value ) {
$this->set_billing_address_1( $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_address_1.
2016-11-14 18:18:08 +00:00
*
2016-08-30 13:34:58 +00:00
* @param string $value
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_address_1( $value ) {
$this->set_address_prop( 'address_1', 'billing', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_address_2.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_address_2( $value ) {
$this->set_address_prop( 'address_2', 'billing', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_city.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_city( $value ) {
$this->set_address_prop( 'city', 'billing', $value );
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set billing_state.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
2016-11-17 15:17:23 +00:00
public function set_billing_state( $value ) {
$this->set_address_prop( 'state', 'billing', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
2012-09-23 16:16:39 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set billing_postcode.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-09-23 16:16:39 +00:00
*/
2016-11-17 15:17:23 +00:00
public function set_billing_postcode( $value ) {
$this->set_address_prop( 'postcode', 'billing', $value );
2012-09-23 16:16:39 +00:00
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_country.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_country( $value ) {
$this->set_address_prop( 'country', 'billing', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_email.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_email( $value ) {
if ( $value && ! is_email( $value ) ) {
$this->error( 'customer_invalid_billing_email', __( 'Invalid billing email address', 'woocommerce' ) );
}
$this->set_address_prop( 'email', 'billing', sanitize_email( $value ) );
}
/**
2016-11-17 15:17:23 +00:00
* Set billing_phone.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_billing_phone( $value ) {
$this->set_address_prop( 'phone', 'billing', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set shipping_first_name.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-14 18:18:08 +00:00
public function set_shipping_first_name( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'first_name', 'shipping', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set shipping_last_name.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-14 18:18:08 +00:00
public function set_shipping_last_name( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'last_name', 'shipping', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set shipping_company.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-14 18:18:08 +00:00
public function set_shipping_company( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'company', 'shipping', $value );
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set shipping_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_address( $value ) {
$this->set_shipping_address_1( $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set shipping_address_1.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_address_1( $value ) {
$this->set_address_prop( 'address_1', 'shipping', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set shipping_address_2.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-08-14 19:42:38 +00:00
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_address_2( $value ) {
$this->set_address_prop( 'address_2', 'shipping', $value );
2012-09-23 16:16:39 +00:00
}
/**
2016-11-17 15:17:23 +00:00
* Set shipping_city.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
2012-09-23 16:16:39 +00:00
*/
2016-11-14 18:18:08 +00:00
public function set_shipping_city( $value ) {
2016-11-17 15:17:23 +00:00
$this->set_address_prop( 'city', 'shipping', $value );
2011-08-09 15:16:18 +00:00
}
2012-08-14 19:42:38 +00:00
/**
2016-11-17 15:17:23 +00:00
* Set shipping_state.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_state( $value ) {
$this->set_address_prop( 'state', 'shipping', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set shipping_postcode.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_postcode( $value ) {
$this->set_address_prop( 'postcode', 'shipping', $value );
}
/**
2016-11-17 15:17:23 +00:00
* Set shipping_country.
2016-11-14 18:18:08 +00:00
*
* @param string $value
2016-08-30 13:34:58 +00:00
* @throws WC_Data_Exception
*/
2016-11-17 15:17:23 +00:00
public function set_shipping_country( $value ) {
$this->set_address_prop( 'country', 'shipping', $value );
}
2016-08-30 16:59:41 +00:00
/**
* Set if the user a paying customer.
2016-11-14 18:18:08 +00:00
*
2016-08-30 16:59:41 +00:00
* @since 2.7.0
2016-11-14 18:18:08 +00:00
* @param bool $is_paying_customer
2016-08-30 16:59:41 +00:00
* @throws WC_Data_Exception
*/
function set_is_paying_customer( $is_paying_customer ) {
2016-11-14 18:18:08 +00:00
$this->set_prop( 'is_paying_customer', (bool) $is_paying_customer );
}
}