woocommerce/includes/api/class-wc-rest-product-attri...

144 lines
4.0 KiB
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Product Attribute Terms controller
*
2016-03-30 20:34:36 +00:00
* Handles requests to the products/attributes/<attribute_id>/terms endpoint.
2016-02-17 19:29:09 +00:00
*
* @author WooThemes
* @category API
* @package WooCommerce/API
* @since 2.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* REST API Product Attribute Terms controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Terms_Controller
2016-02-17 19:29:09 +00:00
*/
class WC_REST_Product_Attribute_Terms_Controller extends WC_REST_Terms_Controller {
2016-02-17 19:29:09 +00:00
/**
* Endpoint namespace.
*
* @var string
*/
protected $namespace = 'wc/v1';
2016-02-17 19:29:09 +00:00
/**
* Route base.
*
* @var string
*/
2016-02-22 18:49:38 +00:00
protected $rest_base = 'products/attributes/(?P<attribute_id>[\d]+)/terms';
2016-02-17 19:29:09 +00:00
2016-03-07 19:39:24 +00:00
/**
2016-03-07 20:28:52 +00:00
* Prepare a single product attribute term output for response.
2016-03-07 19:39:24 +00:00
*
* @param WP_Term $item Term object.
2016-03-07 19:39:24 +00:00
* @param WP_REST_Request $request
* @return WP_REST_Response $response
*/
public function prepare_item_for_response( $item, $request ) {
// Get term order
$menu_order = get_woocommerce_term_meta( $item->term_id, 'order_' . $this->taxonomy );
2016-03-07 19:39:24 +00:00
$data = array(
'id' => (int) $item->term_id,
'name' => $item->name,
'slug' => $item->slug,
'menu_order' => (int) $menu_order,
'count' => (int) $item->count,
2016-03-07 19:39:24 +00:00
);
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
$response->add_links( $this->prepare_links( $item, $request ) );
/**
* 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 );
}
/**
* 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, 'order_' . $this->taxonomy, $request['menu_order'] );
return true;
}
2016-03-07 19:39:24 +00:00
/**
2016-03-10 00:34:14 +00:00
* Get the Attribute Term's schema, conforming to JSON Schema.
2016-03-07 19:39:24 +00:00
*
* @return array
*/
public function get_item_schema() {
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
2016-03-07 20:04:32 +00:00
'title' => 'product_attribute_term',
2016-03-07 19:39:24 +00:00
'type' => 'object',
'properties' => array(
'id' => array(
'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
'type' => 'integer',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'name' => array(
'description' => __( 'Term 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',
),
),
'menu_order' => array(
'description' => __( 'Menu order, used to custom sort the resource.', 'woocommerce' ),
'type' => 'integer',
'context' => array( 'view', 'edit', 'woocommerce' ),
),
2016-03-07 19:39:24 +00:00
'count' => array(
'description' => __( 'Number of published products for the resource.', 'woocommerce' ),
'type' => 'integer',
'context' => array( 'view', 'edit', 'woocommerce' ),
'readonly' => true,
),
),
);
return $this->add_additional_fields_schema( $schema );
}
2016-02-17 19:29:09 +00:00
}