woocommerce/includes/class-wc-order-item.php

321 lines
7.8 KiB
PHP
Raw Normal View History

2016-06-21 19:10:09 +00:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Order Item
*
* A class which represents an item within an order and handles CRUD.
* Uses ArrayAccess to be BW compatible with WC_Orders::get_items().
*
* @version 2.7.0
* @since 2.7.0
* @package WooCommerce/Classes
* @author WooThemes
*/
class WC_Order_Item extends WC_Data implements ArrayAccess {
/**
* Order Data array. This is the core order data exposed in APIs since 2.7.0.
2016-06-21 19:10:09 +00:00
* @since 2.7.0
* @var array
*/
protected $data = array(
2016-08-16 11:27:00 +00:00
'order_id' => 0,
'name' => '',
2016-06-21 19:10:09 +00:00
);
2016-08-03 11:52:51 +00:00
/**
* May store an order to prevent retriving it multiple times.
* @var object
*/
protected $order;
2016-08-03 11:52:51 +00:00
2016-06-21 19:10:09 +00:00
/**
* Stores meta in cache for future reads.
* A group must be set to to enable caching.
* @var string
*/
protected $cache_group = 'order_itemmeta';
2016-06-21 19:10:09 +00:00
/**
* Meta type. This should match up with
* the types avaiable at https://codex.wordpress.org/Function_Reference/add_metadata.
* WP defines 'post', 'user', 'comment', and 'term'.
*/
protected $meta_type = 'order_item';
2016-06-21 19:10:09 +00:00
2016-12-19 17:09:52 +00:00
/**
* This is the name of this object type.
* @var string
*/
protected $object_type = 'order_item';
2016-06-21 19:10:09 +00:00
/**
* Constructor.
2016-11-17 21:30:34 +00:00
* @param int|object|array $item ID to load from the DB, or WC_Order_Item Object
2016-06-21 19:10:09 +00:00
*/
2016-11-17 21:30:34 +00:00
public function __construct( $item = 0 ) {
parent::__construct( $item );
2016-11-17 21:30:34 +00:00
if ( $item instanceof WC_Order_Item ) {
$this->set_id( $item->get_id() );
} elseif ( is_numeric( $item ) && $item > 0 ) {
$this->set_id( $item );
2016-06-21 19:10:09 +00:00
} else {
2016-11-17 21:30:34 +00:00
$this->set_object_read( true );
2016-06-21 19:10:09 +00:00
}
2016-11-17 21:30:34 +00:00
$type = 'line_item' === $this->get_type() ? 'product' : $this->get_type();
$this->data_store = WC_Data_Store::load( 'order-item-' . $type );
if ( $this->get_id() > 0 ) {
$this->data_store->read( $this );
2016-08-03 11:52:51 +00:00
}
}
2016-06-21 19:10:09 +00:00
/*
|--------------------------------------------------------------------------
| Getters
|--------------------------------------------------------------------------
*/
/**
* Get order ID this meta belongs to.
2016-11-17 21:30:34 +00:00
*
* @param string $context
2016-06-21 19:10:09 +00:00
* @return int
*/
2016-11-17 21:30:34 +00:00
public function get_order_id( $context = 'view' ) {
return $this->get_prop( 'order_id', $context );
2016-06-21 19:10:09 +00:00
}
/**
* Get order item name.
2016-11-17 21:30:34 +00:00
*
* @param string $context
2016-06-21 19:10:09 +00:00
* @return string
*/
2016-11-17 21:30:34 +00:00
public function get_name( $context = 'view' ) {
return $this->get_prop( 'name', $context );
2016-06-21 19:10:09 +00:00
}
/**
* Get order item type. Overridden by child classes.
2016-11-17 21:30:34 +00:00
*
2016-06-21 19:10:09 +00:00
* @return string
*/
public function get_type() {
return;
2016-11-17 21:30:34 +00:00
}
/**
* Get quantity.
* @return int
*/
public function get_quantity() {
return 1;
}
/**
* Get parent order object.
* @return int
*/
public function get_order() {
if ( ! $this->order ) {
$this->order = wc_get_order( $this->get_order_id() );
}
return $this->order;
2016-06-21 19:10:09 +00:00
}
/*
|--------------------------------------------------------------------------
| Setters
|--------------------------------------------------------------------------
*/
/**
* Set order ID.
2016-11-17 21:30:34 +00:00
*
* @param int $value
2016-08-24 09:46:29 +00:00
* @throws WC_Data_Exception
2016-06-21 19:10:09 +00:00
*/
public function set_order_id( $value ) {
2016-11-17 21:30:34 +00:00
$this->set_prop( 'order_id', absint( $value ) );
2016-06-21 19:10:09 +00:00
}
/**
* Set order item name.
2016-11-17 21:30:34 +00:00
*
* @param string $value
2016-08-24 09:46:29 +00:00
* @throws WC_Data_Exception
2016-06-21 19:10:09 +00:00
*/
public function set_name( $value ) {
2016-11-17 21:30:34 +00:00
$this->set_prop( 'name', wc_clean( $value ) );
2016-06-21 19:10:09 +00:00
}
/*
|--------------------------------------------------------------------------
2016-11-17 21:30:34 +00:00
| Other Methods
2016-06-21 19:10:09 +00:00
|--------------------------------------------------------------------------
*/
/**
2016-11-17 21:30:34 +00:00
* Type checking
* @param string|array $Type
* @return boolean
2016-06-21 19:10:09 +00:00
*/
2016-11-17 21:30:34 +00:00
public function is_type( $type ) {
return is_array( $type ) ? in_array( $this->get_type(), $type ) : $type === $this->get_type();
2016-06-21 19:10:09 +00:00
}
/*
|--------------------------------------------------------------------------
| Meta Data Handling
|--------------------------------------------------------------------------
*/
/**
* Expands things like term slugs before return.
* @param string $hideprefix (default: _)
* @return array
*/
public function get_formatted_meta_data( $hideprefix = '_' ) {
$formatted_meta = array();
$meta_data = $this->get_meta_data();
$hideprefix_length = ! empty( $hideprefix ) ? strlen( $hideprefix ) : 0;
2016-06-21 19:10:09 +00:00
foreach ( $meta_data as $meta ) {
if ( "" === $meta->value || is_serialized( $meta->value ) || ( $hideprefix_length && substr( $meta->key, 0, $hideprefix_length ) === $hideprefix ) ) {
2016-06-21 19:10:09 +00:00
continue;
}
2016-11-24 11:50:34 +00:00
$meta->key = rawurldecode( (string) $meta->key );
$meta->value = rawurldecode( (string) $meta->value );
2016-08-08 14:22:00 +00:00
$attribute_key = str_replace( 'attribute_', '', $meta->key );
2016-06-21 19:10:09 +00:00
$display_key = wc_attribute_label( $attribute_key, is_callable( array( $this, 'get_product' ) ) ? $this->get_product() : false );
$display_value = $meta->value;
if ( taxonomy_exists( $attribute_key ) ) {
$term = get_term_by( 'slug', $meta->value, $attribute_key );
if ( ! is_wp_error( $term ) && is_object( $term ) && $term->name ) {
$display_value = $term->name;
}
}
$formatted_meta[ $meta->id ] = (object) array(
2016-06-21 19:10:09 +00:00
'key' => $meta->key,
2016-08-08 14:22:00 +00:00
'value' => $meta->value,
2016-06-21 19:10:09 +00:00
'display_key' => apply_filters( 'woocommerce_order_item_display_meta_key', $display_key ),
2017-01-18 18:20:48 +00:00
'display_value' => wpautop( make_clickable( apply_filters( 'woocommerce_order_item_display_meta_value', $display_value ) ) ),
2016-06-21 19:10:09 +00:00
);
}
return $formatted_meta;
}
/*
|--------------------------------------------------------------------------
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
|
*/
/**
* offsetSet for ArrayAccess
* @param string $offset
* @param mixed $value
*/
public function offsetSet( $offset, $value ) {
if ( 'item_meta_array' === $offset ) {
foreach ( $value as $meta_id => $meta ) {
$this->update_meta_data( $meta->key, $meta->value, $meta_id );
}
return;
}
if ( array_key_exists( $offset, $this->data ) ) {
$setter = "set_$offset";
if ( is_callable( array( $this, $setter ) ) ) {
$this->$setter( $value );
}
2016-06-21 19:10:09 +00:00
}
$this->update_meta_data( '_' . $offset, $value );
}
/**
* offsetUnset for ArrayAccess
* @param string $offset
*/
public function offsetUnset( $offset ) {
2016-12-14 11:23:17 +00:00
$this->maybe_read_meta_data();
2016-06-21 19:10:09 +00:00
if ( 'item_meta_array' === $offset || 'item_meta' === $offset ) {
$this->meta_data = array();
2016-06-21 19:10:09 +00:00
return;
}
if ( array_key_exists( $offset, $this->data ) ) {
unset( $this->data[ $offset ] );
2016-06-21 19:10:09 +00:00
}
2016-12-19 11:22:43 +00:00
if ( array_key_exists( $offset, $this->changes ) ) {
unset( $this->changes[ $offset ] );
}
2016-06-21 19:10:09 +00:00
$this->delete_meta_data( '_' . $offset );
}
/**
* offsetExists for ArrayAccess
* @param string $offset
* @return bool
*/
public function offsetExists( $offset ) {
2016-12-14 11:23:17 +00:00
$this->maybe_read_meta_data();
if ( 'item_meta_array' === $offset || 'item_meta' === $offset || array_key_exists( $offset, $this->data ) ) {
2016-06-21 19:10:09 +00:00
return true;
}
return array_key_exists( '_' . $offset, wp_list_pluck( $this->meta_data, 'value', 'key' ) );
2016-06-21 19:10:09 +00:00
}
/**
* offsetGet for ArrayAccess
* @param string $offset
* @return mixed
*/
public function offsetGet( $offset ) {
2016-12-14 11:23:17 +00:00
$this->maybe_read_meta_data();
2016-06-21 19:10:09 +00:00
if ( 'item_meta_array' === $offset ) {
$return = array();
foreach ( $this->meta_data as $meta ) {
$return[ $meta->id ] = $meta;
2016-06-21 19:10:09 +00:00
}
return $return;
}
$meta_values = wp_list_pluck( $this->meta_data, 'value', 'key' );
2016-06-21 19:10:09 +00:00
if ( 'item_meta' === $offset ) {
return $meta_values;
} elseif ( 'type' === $offset ) {
return $this->get_type();
} elseif ( array_key_exists( $offset, $this->data ) ) {
$getter = "get_$offset";
if ( is_callable( array( $this, $getter ) ) ) {
return $this->$getter();
}
2016-06-21 19:10:09 +00:00
} elseif ( array_key_exists( '_' . $offset, $meta_values ) ) {
// Item meta was expanded in previous versions, with prefixes removed. This maintains support.
return $meta_values[ '_' . $offset ];
}
return null;
}
}