2016-02-17 19:29:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Product Categories controller
|
|
|
|
*
|
|
|
|
* Handles requests to the products/categories endpoint.
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category API
|
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Product Categories controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2016-02-22 19:43:52 +00:00
|
|
|
* @extends WC_REST_Terms_Controller
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
2016-02-22 19:43:52 +00:00
|
|
|
class WC_REST_Product_Categories_Controller extends WC_REST_Terms_Controller {
|
2016-02-17 19:29:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Route base.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-02-22 18:49:38 +00:00
|
|
|
protected $rest_base = 'products/categories';
|
2016-02-17 19:29:09 +00:00
|
|
|
|
|
|
|
/**
|
2016-03-02 23:22:29 +00:00
|
|
|
* Taxonomy.
|
2016-02-17 19:29:09 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-03-02 23:22:29 +00:00
|
|
|
protected $taxonomy = 'product_cat';
|
2016-02-17 19:29:09 +00:00
|
|
|
|
|
|
|
/**
|
2016-03-02 23:22:29 +00:00
|
|
|
* Prepare a single product category output for response.
|
|
|
|
*
|
|
|
|
* @param obj $item Term object.
|
|
|
|
* @param WP_REST_Request $request
|
|
|
|
* @return WP_REST_Response $response
|
|
|
|
*/
|
|
|
|
public function prepare_item_for_response( $item, $request ) {
|
|
|
|
// Get category display type.
|
|
|
|
$display_type = get_woocommerce_term_meta( $item->term_id, 'display_type' );
|
|
|
|
|
|
|
|
// Get category image.
|
|
|
|
$image = '';
|
|
|
|
if ( $image_id = get_woocommerce_term_meta( $item->term_id, 'thumbnail_id' ) ) {
|
|
|
|
$image = wp_get_attachment_url( $image_id );
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'id' => (int) $item->term_id,
|
|
|
|
'name' => $item->name,
|
|
|
|
'slug' => $item->slug,
|
|
|
|
'parent' => (int) $item->parent,
|
|
|
|
'description' => $item->description,
|
|
|
|
'display' => $display_type ? $display_type : 'default',
|
|
|
|
'image' => $image ? esc_url( $image ) : '',
|
|
|
|
'count' => (int) $item->count,
|
|
|
|
);
|
|
|
|
|
|
|
|
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
|
2016-03-02 23:28:31 +00:00
|
|
|
$data = $this->add_additional_fields_to_object( $data, $request );
|
|
|
|
$data = $this->filter_response_by_context( $data, $context );
|
2016-03-02 23:22:29 +00:00
|
|
|
|
|
|
|
$response = rest_ensure_response( $data );
|
|
|
|
|
|
|
|
$response->add_links( $this->prepare_links( $item ) );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter a term item returned from the API.
|
|
|
|
*
|
|
|
|
* Allows modification of the term data right before it is returned.
|
|
|
|
*
|
|
|
|
* @param WP_REST_Response $response The response object.
|
|
|
|
* @param object $item The original term object.
|
|
|
|
* @param WP_REST_Request $request Request used to generate the response.
|
|
|
|
*/
|
|
|
|
return apply_filters( "woocommerce_rest_prepare_{$this->taxonomy}", $response, $item, $request );
|
|
|
|
}
|
|
|
|
|
2016-03-07 17:49:14 +00:00
|
|
|
/**
|
|
|
|
* Update term meta fields.
|
|
|
|
*
|
|
|
|
* @param WP_Term $term
|
|
|
|
* @param WP_REST_Request $request
|
|
|
|
* @return bool|WP_Error
|
|
|
|
*/
|
|
|
|
protected function update_term_meta_fields( $term, $request ) {
|
|
|
|
$id = (int) $term->term_id;
|
|
|
|
|
|
|
|
update_woocommerce_term_meta( $id, 'display_type', $request['display'] );
|
|
|
|
|
|
|
|
if ( ! empty( $request['image'] ) ) {
|
|
|
|
$upload = wc_rest_api_upload_image_from_url( esc_url_raw( $request['image'] ) );
|
|
|
|
|
|
|
|
if ( is_wp_error( $upload ) ) {
|
|
|
|
return $upload;
|
|
|
|
}
|
|
|
|
|
|
|
|
$image_id = wc_rest_api_set_uploaded_image_as_attachment( $upload );
|
|
|
|
|
|
|
|
// Check if image_id is a valid image attachment before updating the term meta.
|
|
|
|
if ( $image_id && wp_attachment_is_image( $image_id ) ) {
|
|
|
|
update_woocommerce_term_meta( $id, 'thumbnail_id', $image_id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-02 23:22:29 +00:00
|
|
|
/**
|
|
|
|
* Get the Term's schema, conforming to JSON Schema.
|
|
|
|
*
|
|
|
|
* @return array
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
2016-03-02 23:22:29 +00:00
|
|
|
public function get_item_schema() {
|
|
|
|
$schema = array(
|
|
|
|
'$schema' => 'http://json-schema.org/draft-04/schema#',
|
|
|
|
'title' => $this->taxonomy,
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'name' => array(
|
|
|
|
'description' => __( 'Category name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'slug' => array(
|
|
|
|
'description' => __( 'An alphanumeric identifier for the resource unique to its type.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_title',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'parent' => array(
|
|
|
|
'description' => __( 'The id for the parent of the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'description' => array(
|
|
|
|
'description' => __( 'HTML description of the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'wp_filter_post_kses',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'display' => array(
|
|
|
|
'description' => __( 'Category archive display type.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
2016-03-07 17:49:14 +00:00
|
|
|
'default' => 'default',
|
2016-03-02 23:22:29 +00:00
|
|
|
'enum' => array( 'default', 'products', 'subcategories', 'both' ),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'image' => array(
|
|
|
|
'description' => __( 'Image URL.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'format' => 'uri',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'count' => array(
|
|
|
|
'description' => __( 'Number of published products for the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit', 'woocommerce' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2016-02-17 19:29:09 +00:00
|
|
|
|
2016-03-02 23:22:29 +00:00
|
|
|
return $this->add_additional_fields_schema( $schema );
|
2016-02-17 19:29:09 +00:00
|
|
|
}
|
|
|
|
}
|