2015-12-10 11:55:03 +00:00
< ? php
/**
* Represents a single shipping zone
*
2018-03-21 23:53:59 +00:00
* @ since 2.6 . 0
2018-01-22 12:06:31 +00:00
* @ version 3.0 . 0
* @ package WooCommerce / Classes
*/
defined ( 'ABSPATH' ) || exit ;
require_once 'legacy/class-wc-legacy-shipping-zone.php' ;
/**
* WC_Shipping_Zone class .
2015-12-10 11:55:03 +00:00
*/
2016-11-15 21:53:11 +00:00
class WC_Shipping_Zone extends WC_Legacy_Shipping_Zone {
2015-12-10 11:55:03 +00:00
2016-11-15 22:55:14 +00:00
/**
* Zone ID
2018-01-22 12:06:31 +00:00
*
2016-11-15 22:55:14 +00:00
* @ var int | null
*/
2016-09-09 12:34:49 +00:00
protected $id = null ;
2016-12-19 17:09:52 +00:00
/**
* This is the name of this object type .
2018-01-22 12:06:31 +00:00
*
2016-12-19 17:09:52 +00:00
* @ var string
*/
protected $object_type = 'shipping_zone' ;
2015-12-10 11:55:03 +00:00
/**
2018-01-22 12:06:31 +00:00
* Zone Data .
*
2015-12-10 11:55:03 +00:00
* @ var array
*/
2016-09-09 12:34:49 +00:00
protected $data = array (
2015-12-10 11:55:03 +00:00
'zone_name' => '' ,
'zone_order' => 0 ,
2016-08-27 01:46:45 +00:00
'zone_locations' => array (),
2015-12-10 11:55:03 +00:00
);
/**
2016-11-15 22:55:14 +00:00
* Constructor for zones .
*
* @ param int | object $zone Zone ID to load from the DB or zone object .
2015-12-10 11:55:03 +00:00
*/
2016-08-25 14:41:47 +00:00
public function __construct ( $zone = null ) {
2015-12-10 11:55:03 +00:00
if ( is_numeric ( $zone ) && ! empty ( $zone ) ) {
2016-11-15 21:53:11 +00:00
$this -> set_id ( $zone );
2015-12-10 11:55:03 +00:00
} elseif ( is_object ( $zone ) ) {
2016-08-25 14:41:47 +00:00
$this -> set_id ( $zone -> zone_id );
2018-01-22 12:06:31 +00:00
} elseif ( 0 === $zone || '0' === $zone ) {
2016-08-25 14:41:47 +00:00
$this -> set_id ( 0 );
2016-04-22 11:24:18 +00:00
} else {
2016-11-15 21:53:11 +00:00
$this -> set_object_read ( true );
}
$this -> data_store = WC_Data_Store :: load ( 'shipping-zone' );
2016-11-16 11:24:46 +00:00
if ( false === $this -> get_object_read () ) {
2016-11-15 21:53:11 +00:00
$this -> data_store -> read ( $this );
2015-12-10 11:55:03 +00:00
}
2016-05-24 17:59:35 +00:00
}
2015-12-10 11:55:03 +00:00
2018-01-22 12:06:31 +00:00
/**
* --------------------------------------------------------------------------
* Getters
* --------------------------------------------------------------------------
2016-09-12 21:16:32 +00:00
*/
2016-02-05 15:20:17 +00:00
/**
2016-11-15 22:55:14 +00:00
* Get zone name .
2016-11-15 21:53:11 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $context View or edit context .
2015-12-10 11:55:03 +00:00
* @ return string
*/
2016-11-15 21:53:11 +00:00
public function get_zone_name ( $context = 'view' ) {
return $this -> get_prop ( 'zone_name' , $context );
2016-05-24 17:59:35 +00:00
}
2015-12-10 11:55:03 +00:00
/**
2016-11-15 22:55:14 +00:00
* Get zone order .
2016-11-15 21:53:11 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $context View or edit context .
2015-12-10 11:55:03 +00:00
* @ return int
*/
2016-11-15 21:53:11 +00:00
public function get_zone_order ( $context = 'view' ) {
return $this -> get_prop ( 'zone_order' , $context );
2016-05-24 17:59:35 +00:00
}
2015-12-10 11:55:03 +00:00
/**
2016-11-15 22:55:14 +00:00
* Get zone locations .
2016-11-15 21:53:11 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $context View or edit context .
2015-12-10 11:55:03 +00:00
* @ return array of zone objects
*/
2016-11-15 21:53:11 +00:00
public function get_zone_locations ( $context = 'view' ) {
return $this -> get_prop ( 'zone_locations' , $context );
2016-05-24 17:59:35 +00:00
}
2015-12-10 17:07:18 +00:00
/**
* Return a text string representing what this zone is for .
2016-11-15 21:53:11 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param int $max Max locations to return .
* @ param string $context View or edit context .
2015-12-10 17:07:18 +00:00
* @ return string
*/
2016-11-15 21:53:11 +00:00
public function get_formatted_location ( $max = 10 , $context = 'view' ) {
2015-12-10 17:07:18 +00:00
$location_parts = array ();
$all_continents = WC () -> countries -> get_continents ();
$all_countries = WC () -> countries -> get_countries ();
$all_states = WC () -> countries -> get_states ();
2016-11-15 23:02:21 +00:00
$locations = $this -> get_zone_locations ( $context );
2015-12-10 17:07:18 +00:00
$continents = array_filter ( $locations , array ( $this , 'location_is_continent' ) );
$countries = array_filter ( $locations , array ( $this , 'location_is_country' ) );
$states = array_filter ( $locations , array ( $this , 'location_is_state' ) );
$postcodes = array_filter ( $locations , array ( $this , 'location_is_postcode' ) );
foreach ( $continents as $location ) {
$location_parts [] = $all_continents [ $location -> code ][ 'name' ];
}
foreach ( $countries as $location ) {
$location_parts [] = $all_countries [ $location -> code ];
}
foreach ( $states as $location ) {
2018-01-22 12:06:31 +00:00
$location_codes = explode ( ':' , $location -> code );
2016-08-27 03:23:21 +00:00
$location_parts [] = $all_states [ $location_codes [ 0 ] ][ $location_codes [ 1 ] ];
2015-12-10 17:07:18 +00:00
}
2015-12-10 18:33:59 +00:00
foreach ( $postcodes as $location ) {
$location_parts [] = $location -> code ;
}
2016-01-19 18:21:08 +00:00
// Fix display of encoded characters.
$location_parts = array_map ( 'html_entity_decode' , $location_parts );
2018-01-22 12:06:31 +00:00
if ( count ( $location_parts ) > $max ) {
$remaining = count ( $location_parts ) - $max ;
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreStart
2015-12-10 17:07:18 +00:00
return sprintf ( _n ( '%s and %d other region' , '%s and %d other regions' , $remaining , 'woocommerce' ), implode ( ', ' , array_splice ( $location_parts , 0 , $max ) ), $remaining );
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreEnd
2016-06-20 12:22:58 +00:00
} elseif ( ! empty ( $location_parts ) ) {
2015-12-10 17:07:18 +00:00
return implode ( ', ' , $location_parts );
2016-06-20 12:22:58 +00:00
} else {
return __ ( 'Everywhere' , 'woocommerce' );
2015-12-10 17:07:18 +00:00
}
}
2015-12-11 14:11:12 +00:00
/**
2016-11-15 22:55:14 +00:00
* Get shipping methods linked to this zone .
*
2018-03-14 20:54:42 +00:00
* @ param bool $enabled_only Only return enabled methods .
2018-01-22 14:11:43 +00:00
* @ param string $context Getting shipping methods for what context . Valid values , admin , json .
2015-12-11 14:11:12 +00:00
* @ return array of objects
*/
2018-01-22 14:11:43 +00:00
public function get_shipping_methods ( $enabled_only = false , $context = 'admin' ) {
2016-08-25 14:41:47 +00:00
if ( null === $this -> get_id () ) {
return array ();
}
2016-11-15 22:55:14 +00:00
$raw_methods = $this -> data_store -> get_methods ( $this -> get_id (), $enabled_only );
2015-12-11 14:11:12 +00:00
$wc_shipping = WC_Shipping :: instance ();
$allowed_classes = $wc_shipping -> get_shipping_method_class_names ();
$methods = array ();
foreach ( $raw_methods as $raw_method ) {
2016-07-08 12:30:38 +00:00
if ( in_array ( $raw_method -> method_id , array_keys ( $allowed_classes ), true ) ) {
2018-01-22 14:11:43 +00:00
$class_name = $allowed_classes [ $raw_method -> method_id ];
$instance_id = $raw_method -> instance_id ;
2016-02-10 23:18:18 +00:00
// The returned array may contain instances of shipping methods, as well
// as classes. If the "class" is an instance, just use it. If not,
// create an instance.
2016-02-11 13:16:21 +00:00
if ( is_object ( $class_name ) ) {
2018-01-22 14:11:43 +00:00
$class_name_of_instance = get_class ( $class_name );
$methods [ $instance_id ] = new $class_name_of_instance ( $instance_id );
2016-02-11 13:16:21 +00:00
} else {
2016-02-10 23:18:18 +00:00
// If the class is not an object, it should be a string. It's better
// to double check, to be sure (a class must be a string, anything)
2018-01-22 12:06:31 +00:00
// else would be useless.
2016-02-11 13:16:21 +00:00
if ( is_string ( $class_name ) && class_exists ( $class_name ) ) {
2018-01-22 14:11:43 +00:00
$methods [ $instance_id ] = new $class_name ( $instance_id );
2016-02-10 23:18:18 +00:00
}
}
2018-01-22 12:06:31 +00:00
// Let's make sure that we have an instance before setting its attributes.
2018-01-22 14:11:43 +00:00
if ( is_object ( $methods [ $instance_id ] ) ) {
$methods [ $instance_id ] -> method_order = absint ( $raw_method -> method_order );
$methods [ $instance_id ] -> enabled = $raw_method -> is_enabled ? 'yes' : 'no' ;
$methods [ $instance_id ] -> has_settings = $methods [ $instance_id ] -> has_settings ();
2018-03-14 20:54:42 +00:00
$methods [ $instance_id ] -> settings_html = $methods [ $instance_id ] -> supports ( 'instance-settings-modal' ) ? $methods [ $instance_id ] -> get_admin_options_html () : false ;
2018-01-22 14:11:43 +00:00
$methods [ $instance_id ] -> method_description = wp_kses_post ( wpautop ( $methods [ $instance_id ] -> method_description ) );
}
if ( 'json' === $context ) {
// We don't want the entire object in this context, just the public props.
$methods [ $instance_id ] = ( object ) get_object_vars ( $methods [ $instance_id ] );
unset ( $methods [ $instance_id ] -> instance_form_fields , $methods [ $instance_id ] -> form_fields );
2015-12-16 16:24:58 +00:00
}
2015-12-11 14:11:12 +00:00
}
}
2016-10-20 09:58:44 +00:00
uasort ( $methods , 'wc_shipping_zone_method_order_uasort_comparison' );
2016-02-13 23:23:10 +00:00
return apply_filters ( 'woocommerce_shipping_zone_shipping_methods' , $methods , $raw_methods , $allowed_classes , $this );
2015-12-11 14:11:12 +00:00
}
2018-01-22 12:06:31 +00:00
/**
* --------------------------------------------------------------------------
* Setters
* --------------------------------------------------------------------------
2016-11-15 22:55:14 +00:00
*/
/**
* Set zone name .
*
2018-01-22 12:06:31 +00:00
* @ param string $set Value to set .
2016-11-15 22:55:14 +00:00
*/
public function set_zone_name ( $set ) {
$this -> set_prop ( 'zone_name' , wc_clean ( $set ) );
}
2015-12-10 17:07:18 +00:00
/**
2018-01-22 12:06:31 +00:00
* Set zone order . Value to set .
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param int $set Value to set .
2016-11-15 22:55:14 +00:00
*/
public function set_zone_order ( $set ) {
$this -> set_prop ( 'zone_order' , absint ( $set ) );
}
/**
* Set zone locations .
*
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2018-01-22 12:06:31 +00:00
* @ param array $locations Value to set .
2016-11-15 22:55:14 +00:00
*/
public function set_zone_locations ( $locations ) {
2017-05-22 14:19:15 +00:00
if ( 0 !== $this -> get_id () ) {
$this -> set_prop ( 'zone_locations' , $locations );
}
2016-11-15 22:55:14 +00:00
}
2018-01-22 12:06:31 +00:00
/**
* --------------------------------------------------------------------------
* Other
* --------------------------------------------------------------------------
2016-11-15 22:55:14 +00:00
*/
/**
* Save zone data to the database .
*
* @ return int
*/
public function save () {
2016-12-19 17:09:52 +00:00
if ( ! $this -> get_zone_name () ) {
2016-11-15 22:55:14 +00:00
$this -> set_zone_name ( $this -> generate_zone_name () );
}
if ( $this -> data_store ) {
2016-12-22 17:41:23 +00:00
// Trigger action before saving to the DB. Allows you to adjust object props before save.
2016-12-19 17:09:52 +00:00
do_action ( 'woocommerce_before_' . $this -> object_type . '_object_save' , $this , $this -> data_store );
2016-11-15 22:55:14 +00:00
if ( null === $this -> get_id () ) {
$this -> data_store -> create ( $this );
} else {
$this -> data_store -> update ( $this );
}
return $this -> get_id ();
}
}
/**
* Generate a zone name based on location .
*
* @ return string
*/
protected function generate_zone_name () {
$zone_name = $this -> get_formatted_location ();
if ( empty ( $zone_name ) ) {
$zone_name = __ ( 'Zone' , 'woocommerce' );
}
return $zone_name ;
}
/**
* Location type detection .
*
2018-01-22 12:06:31 +00:00
* @ param object $location Location to check .
2015-12-10 17:07:18 +00:00
* @ return boolean
*/
private function location_is_continent ( $location ) {
return 'continent' === $location -> type ;
}
/**
2016-11-15 22:55:14 +00:00
* Location type detection .
*
2018-01-22 12:06:31 +00:00
* @ param object $location Location to check .
2015-12-10 17:07:18 +00:00
* @ return boolean
*/
private function location_is_country ( $location ) {
return 'country' === $location -> type ;
}
/**
2016-11-15 22:55:14 +00:00
* Location type detection .
*
2018-01-22 12:06:31 +00:00
* @ param object $location Location to check .
2015-12-10 17:07:18 +00:00
* @ return boolean
*/
private function location_is_state ( $location ) {
return 'state' === $location -> type ;
}
/**
2016-11-15 22:55:14 +00:00
* Location type detection .
*
2018-01-22 12:06:31 +00:00
* @ param object $location Location to check .
2015-12-10 17:07:18 +00:00
* @ return boolean
*/
private function location_is_postcode ( $location ) {
return 'postcode' === $location -> type ;
}
2015-12-10 11:55:03 +00:00
/**
* Is passed location type valid ?
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $type Type to check .
2015-12-10 11:55:03 +00:00
* @ return boolean
*/
public function is_valid_location_type ( $type ) {
2018-01-22 12:06:31 +00:00
return in_array ( $type , array ( 'postcode' , 'state' , 'country' , 'continent' ), true );
2015-12-10 11:55:03 +00:00
}
/**
* Add location ( state or postcode ) to a zone .
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $code Location code .
* @ param string $type state or postcode .
2015-12-10 11:55:03 +00:00
*/
public function add_location ( $code , $type ) {
2017-05-22 14:19:15 +00:00
if ( 0 !== $this -> get_id () && $this -> is_valid_location_type ( $type ) ) {
2016-06-06 15:17:15 +00:00
if ( 'postcode' === $type ) {
2016-06-21 09:57:03 +00:00
$code = trim ( strtoupper ( str_replace ( chr ( 226 ) . chr ( 128 ) . chr ( 166 ), '...' , $code ) ) ); // No normalization - postcodes are matched against both normal and formatted versions to support wildcards.
2016-06-06 15:17:15 +00:00
}
2018-01-22 12:06:31 +00:00
$location = array (
2015-12-10 11:55:03 +00:00
'code' => wc_clean ( $code ),
2016-08-27 01:46:45 +00:00
'type' => wc_clean ( $type ),
2015-12-10 11:55:03 +00:00
);
2018-01-22 12:06:31 +00:00
$zone_locations = $this -> get_prop ( 'zone_locations' , 'edit' );
2016-11-15 21:53:11 +00:00
$zone_locations [] = ( object ) $location ;
$this -> set_prop ( 'zone_locations' , $zone_locations );
2015-12-10 11:55:03 +00:00
}
}
2016-11-15 21:53:11 +00:00
2015-12-10 15:09:37 +00:00
/**
* Clear all locations for this zone .
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param array | string $types of location to clear .
2015-12-10 15:09:37 +00:00
*/
2015-12-16 16:09:52 +00:00
public function clear_locations ( $types = array ( 'postcode' , 'state' , 'country' , 'continent' ) ) {
if ( ! is_array ( $types ) ) {
$types = array ( $types );
}
2016-11-15 21:53:11 +00:00
$zone_locations = $this -> get_prop ( 'zone_locations' , 'edit' );
foreach ( $zone_locations as $key => $values ) {
2018-01-22 12:06:31 +00:00
if ( in_array ( $values -> type , $types , true ) ) {
2016-11-15 21:53:11 +00:00
unset ( $zone_locations [ $key ] );
2015-12-16 16:09:52 +00:00
}
}
2016-12-05 13:06:14 +00:00
$zone_locations = array_values ( $zone_locations ); // reindex.
2016-11-15 21:53:11 +00:00
$this -> set_prop ( 'zone_locations' , $zone_locations );
2015-12-10 15:09:37 +00:00
}
2015-12-10 11:55:03 +00:00
/**
2016-11-15 22:55:14 +00:00
* Set locations .
*
2018-01-22 12:06:31 +00:00
* @ param array $locations Array of locations .
2015-12-10 11:55:03 +00:00
*/
public function set_locations ( $locations = array () ) {
2015-12-10 15:09:37 +00:00
$this -> clear_locations ();
2015-12-10 11:55:03 +00:00
foreach ( $locations as $location ) {
$this -> add_location ( $location [ 'code' ], $location [ 'type' ] );
}
}
2015-12-16 15:16:52 +00:00
/**
* Add a shipping method to this zone .
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param string $type shipping method type .
2015-12-16 15:16:52 +00:00
* @ return int new instance_id , 0 on failure
*/
public function add_shipping_method ( $type ) {
2016-08-25 14:41:47 +00:00
if ( null === $this -> get_id () ) {
2016-09-24 02:22:57 +00:00
$this -> save ();
2016-08-25 14:41:47 +00:00
}
2015-12-16 15:16:52 +00:00
$instance_id = 0 ;
$wc_shipping = WC_Shipping :: instance ();
$allowed_classes = $wc_shipping -> get_shipping_method_class_names ();
2016-11-15 22:55:14 +00:00
$count = $this -> data_store -> get_method_count ( $this -> get_id () );
2015-12-16 15:16:52 +00:00
2018-01-22 12:06:31 +00:00
if ( in_array ( $type , array_keys ( $allowed_classes ), true ) ) {
2016-11-15 22:55:14 +00:00
$instance_id = $this -> data_store -> add_method ( $this -> get_id (), $type , $count + 1 );
2015-12-16 15:16:52 +00:00
}
2016-05-10 18:43:47 +00:00
if ( $instance_id ) {
2016-08-25 14:41:47 +00:00
do_action ( 'woocommerce_shipping_zone_method_added' , $instance_id , $type , $this -> get_id () );
2016-05-10 18:43:47 +00:00
}
2016-05-25 11:56:51 +00:00
WC_Cache_Helper :: get_transient_version ( 'shipping' , true );
2015-12-16 15:16:52 +00:00
return $instance_id ;
}
2016-08-26 11:57:30 +00:00
/**
* Delete a shipping method from a zone .
2016-11-15 22:55:14 +00:00
*
2018-01-22 12:06:31 +00:00
* @ param int $instance_id Shipping method instance ID .
2016-08-26 11:57:30 +00:00
* @ return True on success , false on failure
*/
public function delete_shipping_method ( $instance_id ) {
if ( null === $this -> get_id () ) {
return false ;
}
2017-06-05 14:11:08 +00:00
// Get method details.
$method = $this -> data_store -> get_method ( $instance_id );
if ( $method ) {
$this -> data_store -> delete_method ( $instance_id );
do_action ( 'woocommerce_shipping_zone_method_deleted' , $instance_id , $method -> method_id , $this -> get_id () );
}
2016-08-26 11:57:30 +00:00
WC_Cache_Helper :: get_transient_version ( 'shipping' , true );
return true ;
}
2015-12-10 11:55:03 +00:00
}