woocommerce/classes/shipping/class-wc-shipping.php

406 lines
11 KiB
PHP
Raw Normal View History

2012-08-12 14:12:52 +00:00
<?php
2011-08-10 17:11:11 +00:00
/**
* WooCommerce Shipping Class
2012-08-12 14:12:52 +00:00
*
2011-08-10 17:11:11 +00:00
* Handles shipping and loads shipping methods via hooks.
*
2012-01-27 16:38:39 +00:00
* @class WC_Shipping
2012-08-14 22:43:48 +00:00
* @version 1.6.4
* @package WooCommerce/Classes/Shipping
* @author WooThemes
2012-08-12 14:12:52 +00:00
*/
2012-01-27 16:38:39 +00:00
class WC_Shipping {
2012-08-12 14:12:52 +00:00
2012-08-15 17:08:42 +00:00
/** @var bool True if shipping is enabled. */
var $enabled = false;
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Stores methods loaded into woocommerce. */
2012-08-14 22:43:48 +00:00
var $shipping_methods = array();
2012-08-15 17:08:42 +00:00
/** @var array Stores available shipping method instances. */
2012-08-14 22:43:48 +00:00
var $available_shipping_methods = array();
2012-08-15 17:08:42 +00:00
/** @var string Stores the customers chosen shipping method. */
var $chosen_method = null;
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var float Stores the cost of shipping */
var $shipping_total = 0;
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Stores an array of shipping taxes. */
var $shipping_taxes = array();
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var string Stores the label for the chosen method. */
var $shipping_label = null;
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Stores the shipping classes. */
var $shipping_classes = array();
2012-08-14 22:43:48 +00:00
2012-08-15 17:08:42 +00:00
/** @var array Stores packages to ship and to get quotes for. */
var $packages = array();
2011-12-19 14:05:32 +00:00
/**
* init function.
*
* @access public
*/
function init() {
do_action( 'woocommerce_shipping_init' );
2012-08-12 14:12:52 +00:00
$this->enabled = ( get_option('woocommerce_calc_shipping') == 'no' ) ? false : true;
2012-08-12 14:12:52 +00:00
add_action( 'woocommerce_update_options_shipping', array( &$this, 'process_admin_options' ) );
}
2012-08-12 14:12:52 +00:00
/**
* load_shipping_methods function.
*
* Loads all shipping methods which are hooked in. If a $package is passed some methods may add themselves conditionally.
*
* Methods are sorted into their user-defined order after being loaded.
2012-08-12 14:12:52 +00:00
*
* @access public
* @return array
*/
function load_shipping_methods( $package = false ) {
2012-08-12 14:12:52 +00:00
$this->unregister_shipping_methods();
2012-08-12 14:12:52 +00:00
// Methods can register themselves through this hook
do_action( 'woocommerce_load_shipping_methods', $package );
2012-08-12 14:12:52 +00:00
// Register methods through a filter
$shipping_methods_to_load = apply_filters( 'woocommerce_shipping_methods', array() );
2012-08-12 14:12:52 +00:00
foreach ( $shipping_methods_to_load as $method )
2012-08-12 14:12:52 +00:00
$this->register_shipping_method( $method );
2012-06-03 12:13:52 +00:00
$this->sort_shipping_methods();
2012-08-12 14:12:52 +00:00
return $this->shipping_methods;
}
2012-08-12 14:12:52 +00:00
/**
* Register a shipping method for use in calculations.
2012-08-12 14:12:52 +00:00
*
* @access public
* @return void
*/
2012-06-03 12:13:52 +00:00
function register_shipping_method( $method ) {
2012-08-12 14:12:52 +00:00
2012-06-03 12:13:52 +00:00
if ( ! is_object( $method ) )
$method = new $method();
2012-08-12 14:12:52 +00:00
2012-06-03 12:13:52 +00:00
$id = empty( $method->instance_id ) ? $method->id : $method->instance_id;
2012-08-12 14:12:52 +00:00
2012-06-03 12:13:52 +00:00
$this->shipping_methods[ $id ] = $method;
}
2012-08-12 14:12:52 +00:00
/**
* unregister_shipping_methods function.
2012-08-12 14:12:52 +00:00
*
* @access public
* @return void
*/
function unregister_shipping_methods() {
unset( $this->shipping_methods );
}
/**
* sort_shipping_methods function.
2012-08-12 14:12:52 +00:00
*
* Sorts shipping methods into the user defined order.
*
* @access public
* @return array
*/
function sort_shipping_methods() {
2012-08-12 14:12:52 +00:00
$sorted_shipping_methods = array();
2012-08-12 14:12:52 +00:00
2011-12-19 14:05:32 +00:00
// Get order option
$ordering = (array) get_option('woocommerce_shipping_method_order');
$order_end = 999;
2012-08-12 14:12:52 +00:00
// Load shipping methods in order
foreach ( $this->shipping_methods as $method ) {
if ( isset( $ordering[ $method->id ] ) && is_numeric( $ordering[ $method->id ] ) ) {
2011-12-19 14:05:32 +00:00
// Add in position
$sorted_shipping_methods[ $ordering[ $method->id ] ][] = $method;
} else {
2011-12-19 14:05:32 +00:00
// Add to end of the array
$sorted_shipping_methods[ $order_end ][] = $method;
}
}
2012-08-12 14:12:52 +00:00
ksort( $sorted_shipping_methods );
2012-08-12 14:12:52 +00:00
$this->shipping_methods = array();
2012-08-12 14:12:52 +00:00
foreach ( $sorted_shipping_methods as $methods )
2012-06-03 12:13:52 +00:00
foreach ( $methods as $method ) {
$id = empty( $method->instance_id ) ? $method->id : $method->instance_id;
$this->shipping_methods[ $id ] = $method;
2012-08-12 14:12:52 +00:00
}
return $this->shipping_methods;
2012-08-12 14:12:52 +00:00
}
/**
* get_shipping_methods function.
2012-08-12 14:12:52 +00:00
*
* Returns all registered shipping methods for usage.
*
* @access public
* @param mixed $package
* @return void
*/
function get_shipping_methods() {
return $this->shipping_methods;
2012-08-12 14:12:52 +00:00
}
/**
* get_shipping_classes function.
2012-08-12 14:12:52 +00:00
*
* Load shipping classes taxonomy terms.
*
* @access public
* @return array
*/
function get_shipping_classes() {
2012-08-12 14:12:52 +00:00
if ( empty( $this->shipping_classes ) )
$this->shipping_classes = ( $classes = get_terms( 'product_shipping_class', array( 'hide_empty' => '0' ) ) ) ? $classes : array();
2012-08-12 14:12:52 +00:00
return $this->shipping_classes;
2012-08-12 14:12:52 +00:00
}
/**
* calculate_shipping function.
*
2012-08-12 14:12:52 +00:00
* Calculate shipping for (multiple) packages of cart items.
*
* @access public
* @param array $packages multi-dimentional array of cart items to calc shipping for
*/
function calculate_shipping( $packages = array() ) {
2012-09-07 18:28:27 +00:00
global $woocommerce;
if ( ! $this->enabled || empty( $packages ) )
return;
2012-08-12 14:12:52 +00:00
$this->shipping_total = 0;
$this->shipping_taxes = array();
$this->shipping_label = null;
$this->packages = array();
$_cheapest_cost = $_cheapest_method = $chosen_method = '';
2012-08-12 14:12:52 +00:00
// Calculate costs for passed packages
$package_keys = array_keys( $packages );
$package_keys_size = sizeof( $package_keys );
2012-08-12 14:12:52 +00:00
for ( $i = 0; $i < $package_keys_size; $i ++ )
$this->packages[ $package_keys[ $i ] ] = $this->calculate_shipping_for_package( $packages[ $package_keys[ $i ] ] );
2012-08-12 14:12:52 +00:00
// Get available methods (in this case methods for all packages)
$_available_methods = $this->get_available_shipping_methods();
2012-08-12 14:12:52 +00:00
// Get chosen method
2012-09-07 18:28:27 +00:00
if ( ! empty( $woocommerce->session->chosen_shipping_method ) && isset( $woocommerce->session->available_methods_count ) && $woocommerce->session->available_methods_count == sizeof( $_available_methods ) )
$chosen_method = $woocommerce->session->chosen_shipping_method;
2012-08-12 14:12:52 +00:00
2012-09-07 18:28:27 +00:00
$woocommerce->session->available_methods_count = sizeof( $_available_methods );
if ( sizeof( $_available_methods ) > 0 ) {
2012-08-12 14:12:52 +00:00
// If not set, set a default
2012-06-18 11:36:42 +00:00
if ( empty( $chosen_method ) || ! isset( $_available_methods[ $chosen_method ] ) ) {
2012-08-12 14:12:52 +00:00
$chosen_method = apply_filters( 'woocommerce_shipping_chosen_method', get_option('woocommerce_default_shipping_method'), $_available_methods );
2012-08-12 14:12:52 +00:00
2012-05-21 13:36:25 +00:00
// Loops methods and find a match
2012-06-18 11:36:42 +00:00
if ( ! empty( $chosen_method ) && ! isset( $_available_methods[ $chosen_method ] ) ) {
2012-05-21 13:36:25 +00:00
foreach ( $_available_methods as $method_id => $method ) {
if ( strpos( $method->id, $chosen_method ) === 0 ) {
$chosen_method = $method->id;
break;
}
}
}
2012-08-12 14:12:52 +00:00
if ( empty( $chosen_method ) || ! isset( $_available_methods[$chosen_method] ) ) {
2012-08-12 14:12:52 +00:00
// Default to cheapest
foreach ( $_available_methods as $method_id => $method ) {
if ( $method->cost < $_cheapest_cost || ! is_numeric( $_cheapest_cost ) ) {
$_cheapest_cost = $method->cost;
$_cheapest_method = $method_id;
}
}
$chosen_method = $_cheapest_method;
}
// Store chosen method
$woocommerce->session->chosen_shipping_method = $chosen_method;
// Do action for this chosen method
do_action( 'woocommerce_shipping_method_chosen', $chosen_method );
}
if ( $chosen_method ) {
$this->shipping_total = $_available_methods[ $chosen_method ]->cost;
$this->shipping_taxes = $_available_methods[ $chosen_method ]->taxes;
$this->shipping_label = $_available_methods[ $chosen_method ]->label;
}
}
}
/**
* calculate_shipping_for_package function.
*
* Calculates each shipping methods cost. Rates are cached based on the package to speed up calculations.
2012-08-12 14:12:52 +00:00
*
* @access public
* @param array $package cart items
*/
function calculate_shipping_for_package( $package = array() ) {
if ( ! $this->enabled ) return false;
if ( ! $package ) return false;
2012-08-12 14:12:52 +00:00
// Check if we need to recalculate shipping for this package
$package_hash = 'wc_ship_' . md5( json_encode( $package ) );
2012-08-12 14:12:52 +00:00
if ( false === ( $stored_rates = get_transient( $package_hash ) ) ) {
2012-08-12 14:12:52 +00:00
// Calculate shipping method rates
$package['rates'] = array();
2012-08-12 14:12:52 +00:00
foreach ( $this->load_shipping_methods( $package ) as $shipping_method ) {
2012-08-12 14:12:52 +00:00
if ( $shipping_method->is_available( $package ) ) {
2012-08-12 14:12:52 +00:00
// Reset Rates
$shipping_method->rates = array();
2012-08-12 14:12:52 +00:00
// Calculate Shipping for package
$shipping_method->calculate_shipping( $package );
2012-08-12 14:12:52 +00:00
// Place rates in package array
if ( ! empty( $shipping_method->rates ) && is_array( $shipping_method->rates ) )
2012-08-12 14:12:52 +00:00
foreach ( $shipping_method->rates as $rate )
$package['rates'][$rate->id] = $rate;
}
2012-08-12 14:12:52 +00:00
}
2012-08-12 14:12:52 +00:00
// Store
set_transient( $package_hash, $package['rates'], 60 * 60 ); // Cached for an hour
2012-08-12 14:12:52 +00:00
} else {
2012-08-12 14:12:52 +00:00
$package['rates'] = $stored_rates;
2012-08-12 14:12:52 +00:00
}
2012-08-12 14:12:52 +00:00
return $package;
2011-08-09 15:16:18 +00:00
}
2012-08-12 14:12:52 +00:00
/**
* get_available_shipping_methods function.
*
2012-08-12 14:12:52 +00:00
* Gets all available shipping methods which have rates.
*
* @todo Currently we support 1 shipping method per order so this function merges rates - in the future we should offer
* 1 rate per package and list them accordinly for user selection
2012-08-12 14:12:52 +00:00
*
* @access public
* @return array
*/
function get_available_shipping_methods() {
if ( ! $this->enabled ) return;
if ( empty( $this->packages ) ) return;
2012-08-12 14:12:52 +00:00
// Loop packages and merge rates to get a total for each shipping method
$available_methods = array();
foreach ( $this->packages as $package ) {
if ( ! $package['rates'] ) continue;
2012-08-12 14:12:52 +00:00
foreach ( $package['rates'] as $id => $rate ) {
2012-08-12 14:12:52 +00:00
if ( isset( $available_methods[$id] ) ) {
// Merge cost and taxes - label and ID will be the same
$available_methods[$id]->cost += $rate->cost;
2012-08-12 14:12:52 +00:00
foreach ( array_keys( $available_methods[$id]->taxes + $rate->taxes ) as $key ) {
$available_methods[$id]->taxes[$key] = ( isset( $rate->taxes[$key] ) ? $rate->taxes[$key] : 0 ) + ( isset( $available_methods[$id]->taxes[$key] ) ? $available_methods[$id]->taxes[$key] : 0 );
}
} else {
$available_methods[$id] = new WC_Shipping_Rate( $rate->id, $rate->label, $rate->cost, $rate->taxes );
}
2012-08-12 14:12:52 +00:00
}
2012-08-12 14:12:52 +00:00
}
2012-08-12 14:12:52 +00:00
return apply_filters( 'woocommerce_available_shipping_methods', $available_methods );
}
2012-01-06 14:28:08 +00:00
2011-08-09 15:16:18 +00:00
/**
* reset_shipping function.
2012-08-12 14:12:52 +00:00
*
* Reset the totals for shipping as a whole.
*
* @access public
* @return void
*/
2011-08-09 15:16:18 +00:00
function reset_shipping() {
2012-09-07 18:28:27 +00:00
global $woocommerce;
unset( $woocommerce->session->chosen_shipping_method );
$this->shipping_total = 0;
$this->shipping_taxes = array();
$this->shipping_label = null;
$this->packages = array();
2011-08-09 15:16:18 +00:00
}
2012-08-12 14:12:52 +00:00
/**
* process_admin_options function.
2012-08-12 14:12:52 +00:00
*
* Saves options on the shipping setting page.
*
* @access public
* @return void
*/
2011-12-19 14:05:32 +00:00
function process_admin_options() {
2012-08-12 14:12:52 +00:00
$default_shipping_method = ( isset( $_POST['default_shipping_method'] ) ) ? esc_attr( $_POST['default_shipping_method'] ) : '';
$method_order = ( isset( $_POST['method_order'] ) ) ? $_POST['method_order'] : '';
2012-08-12 14:12:52 +00:00
2011-12-19 14:05:32 +00:00
$order = array();
2012-08-12 14:12:52 +00:00
if ( is_array( $method_order ) && sizeof( $method_order ) > 0 ) {
2011-12-19 14:05:32 +00:00
$loop = 0;
foreach ($method_order as $method_id) {
2011-12-19 14:05:32 +00:00
$order[$method_id] = $loop;
$loop++;
}
}
2012-08-12 14:12:52 +00:00
2012-01-06 14:28:08 +00:00
update_option( 'woocommerce_default_shipping_method', $default_shipping_method );
2011-12-19 14:05:32 +00:00
update_option( 'woocommerce_shipping_method_order', $order );
}
2012-08-12 14:12:52 +00:00
}
/**
* Register a shipping method
*
* Registers a shipping method ready to be loaded. Accepts a class name (string) or a class object.
*
2012-08-15 18:15:06 +00:00
* @package WooCommerce/Classes/Shipping
* @since 1.5.7
*/
function woocommerce_register_shipping_method( $shipping_method ) {
$GLOBALS['woocommerce']->shipping->register_shipping_method( $shipping_method );
2012-08-14 22:43:48 +00:00
}