woocommerce/includes/class-wc-product-factory.php

110 lines
3.0 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Product Factory Class
*
* The WooCommerce product factory creating the right product object.
*
* @class WC_Product_Factory
* @version 2.3.0
* @package WooCommerce/Classes
* @category Class
* @author WooThemes
*/
class WC_Product_Factory {
/**
* Get a product.
*
* @param bool $the_product (default: false)
* @param array $args (default: array())
* @return WC_Product|bool false if the product cannot be loaded
*/
public function get_product( $the_product = false, $args = array() ) {
try {
$the_product = $this->get_product_object( $the_product );
if ( ! $the_product ) {
throw new Exception( 'Product object does not exist', 422 );
}
$classname = $this->get_product_class( $the_product, $args );
if ( ! $classname ) {
throw new Exception( 'Missing classname', 422 );
}
if ( ! class_exists( $classname ) ) {
$classname = 'WC_Product_Simple';
}
return new $classname( $the_product, $args );
} catch ( Exception $e ) {
return false;
}
}
/**
* Create a WC coding standards compliant class name e.g. WC_Product_Type_Class instead of WC_Product_type-class.
* @param string $product_type
* @return string|false
*/
private function get_classname_from_product_type( $product_type ) {
return $product_type ? 'WC_Product_' . implode( '_', array_map( 'ucfirst', explode( '-', $product_type ) ) ) : false;
}
/**
* Get the product class name.
* @param WP_Post $the_product
* @param array $args (default: array())
* @return string
*/
private function get_product_class( $the_product, $args = array() ) {
$product_id = absint( $the_product->ID );
$post_type = $the_product->post_type;
if ( 'product' === $post_type ) {
if ( isset( $args['product_type'] ) ) {
$product_type = $args['product_type'];
} else {
$terms = get_the_terms( $the_product, 'product_type' );
$product_type = ! empty( $terms ) ? sanitize_title( current( $terms )->name ) : 'simple';
}
} elseif( 'product_variation' === $post_type ) {
$product_type = 'variation';
} else {
$product_type = false;
}
$classname = $this->get_classname_from_product_type( $product_type );
// Filter classname so that the class can be overridden if extended.
return apply_filters( 'woocommerce_product_class', $classname, $product_type, $post_type, $product_id );
}
/**
* Get the product object.
* @param mixed $the_product
* @uses WP_Post
* @return WP_Post|bool false on failure
*/
private function get_product_object( $the_product ) {
if ( false === $the_product ) {
$the_product = $GLOBALS['post'];
} elseif ( is_numeric( $the_product ) ) {
$the_product = get_post( $the_product );
} elseif ( $the_product instanceof WC_Product ) {
$the_product = get_post( $the_product->id );
} elseif ( ! ( $the_product instanceof WP_Post ) ) {
$the_product = false;
}
return apply_filters( 'woocommerce_product_object', $the_product );
}
}