Files
old-experiments/backend/wordpress/wp-content/plugins/woocommerce-services/classes/class-wc-connect-shipping-method.php
2018-06-29 14:40:28 +02:00

543 lines
16 KiB
PHP
Executable File

<?php
if ( ! class_exists( 'WC_Connect_Shipping_Method' ) ) {
class WC_Connect_Shipping_Method extends WC_Shipping_Method {
/**
* @var object A reference to a the fetched properties of the service
*/
protected $service_schema = null;
/**
* @var WC_Connect_Service_Settings_Store
*/
protected $service_settings_store;
/**
* @var WC_Connect_Logger
*/
protected $logger;
/**
* @var WC_Connect_API_Client
*/
protected $api_client;
public function __construct( $id_or_instance_id = null ) {
parent::__construct( $id_or_instance_id );
// If $arg looks like a number, treat it as an instance_id
// Otherwise, treat it as a (method) id (e.g. wc_connect_usps)
if ( is_numeric( $id_or_instance_id ) ) {
$this->instance_id = absint( $id_or_instance_id );
} else {
$this->instance_id = null;
}
/**
* Provide a dependency injection point for each shipping method.
*
* WooCommerce core instantiates shipping method with only a string ID
* or a numeric instance ID. We depend on more than that, so we need
* to provide a hook for our plugin to inject dependencies into each
* shipping method instance.
*
* @param WC_Connect_Shipping_Method $this
* @param int|string $id_or_instance_id
*/
do_action( 'wc_connect_service_init', $this, $id_or_instance_id );
if ( ! $this->service_schema ) {
$this->log_error(
'Error. A WC_Connect_Shipping_Method was constructed without an id or instance_id',
__FUNCTION__
);
$this->id = 'wc_connect_uninitialized_shipping_method';
$this->method_title = '';
$this->method_description = '';
$this->supports = array();
$this->title = '';
} else {
$this->id = $this->service_schema->method_id;
$this->method_title = $this->service_schema->method_title;
$this->method_description = $this->service_schema->method_description;
$this->supports = array(
'shipping-zones',
'instance-settings'
);
// Set title to default value
$this->title = $this->service_schema->method_title;
// Load form values from options, updating title if present
$this->init_form_settings();
// Note - we cannot hook admin_enqueue_scripts here because we need an instance id
// and this constructor is not called with an instance id until after
// admin_enqueue_scripts has already fired. This is why WC_Connect_Loader
// does it instead
}
}
public function get_service_schema() {
return $this->service_schema;
}
public function set_service_schema( $service_schema ) {
$this->service_schema = $service_schema;
}
public function get_service_settings_store() {
return $this->service_settings_store;
}
public function set_service_settings_store( $service_settings_store ) {
$this->service_settings_store = $service_settings_store;
}
public function get_logger() {
return $this->logger;
}
public function set_logger( WC_Connect_Logger $logger ) {
$this->logger = $logger;
}
public function get_api_client() {
return $this->api_client;
}
public function set_api_client( WC_Connect_API_Client $api_client ) {
$this->api_client = $api_client;
}
/**
* Logging helper.
*
* Avoids calling methods on an undefined object if no logger was
* injected during the init action in the constructor.
*
* @see WC_Connect_Logger::debug()
* @param string|WP_Error $message
* @param string $context
*/
protected function log( $message, $context = '' ) {
$logger = $this->get_logger();
if ( is_a( $logger, 'WC_Connect_Logger' ) ) {
$logger->log( $message, $context );
}
}
protected function log_error( $message, $context = '' ) {
$logger = $this->get_logger();
if ( is_a( $logger, 'WC_Connect_Logger' ) ) {
$logger->error( $message, $context );
}
}
/**
* Restores any values persisted to the DB for this service instance
* and sets up title for WC core to work properly
*
*/
protected function init_form_settings() {
$form_settings = $this->get_service_settings();
// We need to initialize the instance title ($this->title)
// from the settings blob
if ( property_exists( $form_settings, 'title' ) ) {
$this->title = $form_settings->title;
}
}
/**
* Returns the settings for this service (e.g. for use in the form or for
* sending to the rate request endpoint
*
* Used by WC_Connect_Loader to embed the form schema in the page for JS to consume
*
* @return object
*/
public function get_service_settings() {
$service_settings = $this->service_settings_store->get_service_settings( $this->id, $this->instance_id );
if ( ! is_object( $service_settings ) ) {
$service_settings = new stdClass();
}
if ( ! property_exists( $service_settings, 'services' ) ) {
return $service_settings;
}
return $service_settings;
}
/**
* Determine if a package's destination is valid enough for a rate quote.
*
* @param array $package
* @return bool
*/
public function is_valid_package_destination( $package ) {
$country = isset( $package['destination']['country'] ) ? $package['destination']['country'] : '';
$postcode = isset( $package['destination']['postcode'] ) ? $package['destination']['postcode'] : '';
$state = isset( $package['destination']['state'] ) ? $package['destination']['state'] : '';
// Ensure that Country is specified
if ( empty( $country ) ) {
$this->debug( 'Skipping rate calculation - missing country', 'error' );
return false;
}
// Validate Postcode
if ( ! WC_Validation::is_postcode( $postcode, $country ) ) {
$this->debug( 'Skipping rate calculation - invalid postcode', 'error' );
return false;
}
// Validate State
$valid_states = WC()->countries->get_states( $country );
if ( $valid_states && ! array_key_exists( $state, $valid_states ) ) {
$this->debug( 'Skipping rate calculation - invalid/unsupported state', 'error' );
return false;
}
return true;
}
private function lookup_product( $package, $product_id ) {
foreach ( $package[ 'contents' ] as $item ) {
if ( $item[ 'product_id' ] === $product_id || $item[ 'variation_id' ] === $product_id ) {
return $item[ 'data' ];
}
}
return false;
}
private function filter_preset_boxes( $preset_id ) {
return is_string( $preset_id );
}
private function check_and_handle_response_error( $response_body, $service_settings ) {
if ( is_wp_error( $response_body ) ) {
$this->debug(
sprintf(
'Request failed: %s',
$response_body->get_error_message()
),
'error'
);
$this->log_error(
sprintf(
'Error. Unable to get shipping rate(s) for %s instance id %d.',
$this->id,
$this->instance_id
),
__FUNCTION__
);
$this->set_last_request_failed();
$this->log_error( $response_body, __FUNCTION__ );
$this->add_fallback_rate( $service_settings );
return true;
}
if ( ! property_exists( $response_body, 'rates' ) ) {
$this->debug( 'Response is missing `rates` property', 'error' );
$this->set_last_request_failed();
$this->add_fallback_rate( $service_settings );
return true;
}
return false;
}
private function add_fallback_rate( $service_settings ) {
if ( ! property_exists( $service_settings, 'fallback_rate' ) || 0 >= $service_settings->fallback_rate ) {
return;
}
$this->debug( 'No rates found, adding fallback.', 'error' );
$rate_to_add = array(
'id' => self::format_rate_id( 'fallback', $this->id, 0 ),
'label' => self::format_rate_title( $this->service_schema->carrier_name ),
'cost' => $service_settings->fallback_rate,
);
$this->add_rate( $rate_to_add );
}
public function calculate_shipping( $package = array() ) {
if ( ! WC_Connect_Functions::should_send_cart_api_request() ) {
return;
}
$this->debug( sprintf(
'WooCommerce Services debug mode is on - to hide these messages, turn debug mode off in the <a href="%s" style="text-decoration: underline;">settings</a>.',
admin_url( 'admin.php?page=wc-status&tab=connect' )
) );
if ( ! $this->is_valid_package_destination( $package ) ) {
return;
}
$service_settings = $this->get_service_settings();
$settings_keys = get_object_vars( $service_settings );
if ( empty( $settings_keys ) ) {
$this->log(
sprintf(
'Service settings empty. Skipping %s rate request (instance id %d).',
$this->id,
$this->instance_id
),
__FUNCTION__
);
return;
}
// TODO: Request rates for all WooCommerce Services powered methods in
// the current shipping zone to avoid each method making an independent request
$services = array(
array(
'id' => $this->service_schema->id,
'instance' => $this->instance_id,
'service_settings' => $service_settings,
),
);
$custom_boxes = $this->service_settings_store->get_packages();
$predefined_boxes = $this->service_settings_store->get_predefined_packages_for_service( $this->service_schema->id );
$predefined_boxes = array_values( array_filter( $predefined_boxes, array( $this, 'filter_preset_boxes' ) ) );
$cache_key = sprintf(
'wcs_rates_%s',
md5( serialize( array( $services, $package, $custom_boxes, $predefined_boxes ) ) )
);
$debug_mode = 'yes' === get_option( 'woocommerce_shipping_debug_mode', 'no' );
$response_body = wp_cache_get( $cache_key );
if ( ! $debug_mode && false !== $response_body ) {
$this->debug( 'Rates response retrieved from cache' );
} else {
$response_body = $this->api_client->get_shipping_rates( $services, $package, $custom_boxes, $predefined_boxes );
if ( $this->check_and_handle_response_error( $response_body, $service_settings ) ) {
return;
}
wp_cache_set( $cache_key, $response_body, '', 3600 );
}
$instances = $response_body->rates;
foreach ( (array) $instances as $instance ) {
if ( property_exists( $instance, 'error' ) ) {
$this->log_error( $instance->error, __FUNCTION__ );
$this->set_last_request_failed();
}
if ( ! property_exists( $instance, 'rates' ) ) {
continue;
}
$packaging_lookup = $this->service_settings_store->get_package_lookup();
foreach ( (array) $instance->rates as $rate_idx => $rate ) {
$package_summaries = array();
$service_ids = array();
$dimension_unit = get_option( 'woocommerce_dimension_unit' );
$weight_unit = get_option( 'woocommerce_weight_unit' );
$measurements_format = '(%s x %s x %s ' . $dimension_unit . ', %s ' . $weight_unit . ')';
foreach ( $rate->packages as $rate_package ) {
$service_ids[] = $rate_package->service_id;
$item_product_ids = array();
$item_by_product = array();
foreach ( $rate_package->items as $package_item ) {
$item_product_ids[] = $package_item->product_id;
$item_by_product[ $package_item->product_id ] = $package_item;
}
$product_summaries = array();
$product_counts = array_count_values( $item_product_ids );
foreach ( $product_counts as $product_id => $count ) {
/** @var WC_Product $product */
$product = $this->lookup_product( $package, $product_id );
if ( $product ) {
$item_name = WC_Connect_Compatibility::instance()->get_product_name( $product );
$item = $item_by_product[ $product_id ];
$item_measurements = sprintf( $measurements_format, $item->length, $item->width, $item->height, $item->weight );
$product_summaries[] =
( $count > 1 ? sprintf( '<em>%s x</em> ', $count ) : '' ) .
sprintf( '<strong>%s</strong> %s', $item_name, $item_measurements );
}
}
$package_measurements = '';
if ( ! property_exists( $rate_package, 'box_id' ) ) {
$package_name = __( 'Unknown package 📦', 'woocommerce-services' );
} else if ( 'individual' === $rate_package->box_id ) {
$package_name = __( 'Individual packaging 📦', 'woocommerce-services' );
} else if (
isset( $packaging_lookup[ $rate_package->box_id ] ) &&
isset( $packaging_lookup[ $rate_package->box_id ]['name'] )
) {
$is_letter = isset( $packaging_lookup[ $rate_package->box_id ]['is_letter'] ) && $packaging_lookup[ $rate_package->box_id ]['is_letter'];
$icon = $is_letter ? '✉️' : '📦';
$package_name = $packaging_lookup[ $rate_package->box_id ]['name'] . ' ' . $icon;
$package_measurements = sprintf(
$measurements_format,
$rate_package->length,
$rate_package->width,
$rate_package->height,
$rate_package->weight
);
}
$package_summaries[] = sprintf( '<strong>%s</strong> %s', $package_name, $package_measurements )
. '<ul><li>' . implode( '</li><li>', $product_summaries ) . '</li></ul>';
}
$packaging_info = implode( ', ', $package_summaries );
$services_list = implode( '-', array_unique( $service_ids ) );
$rate_to_add = array(
// Make sure the rate ID is identifiable for extensions like Conditional Shipping and Payments.
// The new format looks like: `wc_services_usps:1:pri_medium_flat_box_top`.
'id' => self::format_rate_id( $this->id, $instance->instance, $services_list ),
'label' => self::format_rate_title( $rate->title ),
'cost' => $rate->rate,
'meta_data' => array(
'wc_connect_packages' => $rate->packages,
__( 'Packaging', 'woocommerce-services' ) => $packaging_info
),
);
if ( $this->logger->is_debug_enabled() ) {
if ( 'fallback' === $services_list ) {
// Notify the merchant when the fallback rate is added by the WCS server.
$this->debug( 'No rates found, adding fallback.', 'error' );
} else {
$this->debug(
sprintf(
'Received rate: <strong>%s</strong> (%s)<br/><ul><li>%s</li></ul>',
$rate_to_add['label'],
wc_price( $rate->rate ),
implode( '</li><li>', $package_summaries )
),
'success'
);
}
}
$this->add_rate( $rate_to_add );
}
}
if ( 0 === count( $this->rates ) ) {
$this->add_fallback_rate( $service_settings );
} else {
$this->set_last_request_failed( 0 );
}
$this->update_last_rate_request_timestamp();
}
public function update_last_rate_request_timestamp() {
$previous_timestamp = WC_Connect_Options::get_option( 'last_rate_request' );
if ( false === $previous_timestamp ||
( time() - HOUR_IN_SECONDS ) > $previous_timestamp ) {
WC_Connect_Options::update_option( 'last_rate_request', time() );
}
}
public function set_last_request_failed( $timestamp = null ) {
if ( is_null( $timestamp ) ) {
$timestamp = time();
}
WC_Connect_Options::update_shipping_method_option( 'failure_timestamp', $timestamp, $this->id, $this->instance_id );
}
public function admin_options() {
// hide WP native save button on settings page
global $hide_save_button;
$hide_save_button = true;
do_action( 'wc_connect_service_admin_options', $this->id, $this->instance_id );
}
/**
* @param string $method_id
* @param int $instance_id
* @param string $service_ids
*
* @return string
*/
public static function format_rate_id( $method_id, $instance_id, $service_ids ) {
return sprintf( '%s:%d:%s', $method_id, $instance_id, $service_ids );
}
public static function format_rate_title( $rate_title ) {
$formatted_title = wp_kses(
html_entity_decode( $rate_title ),
array(
'sup' => array(),
'del' => array(),
'small' => array(),
'em' => array(),
'i' => array(),
'strong' => array(),
)
);
return $formatted_title;
}
/**
* Log debug by printing it as notice.
*
* @param string $message Debug message.
* @param string $type Notice type.
*/
public function debug( $message, $type = 'notice' ) {
if ( is_cart() || is_checkout() || isset( $_POST['update_cart'] ) ) {
$debug_message = sprintf( '%s (%s:%d)', $message, esc_html( $this->title ), $this->instance_id );
$this->logger->debug( $debug_message, $type );
}
}
}
}