/wp-content/plugins/woocommerce/packages/woocommerce-admin/src/API/Reports/Downloads/Controller.php
PHP | 439 lines | 337 code | 27 blank | 75 comment | 11 complexity | a7c057ac5e3d35b41ad945550cd5c900 MD5 | raw file
- <?php
- /**
- * REST API Reports downloads controller
- *
- * Handles requests to the /reports/downloads endpoint.
- */
- namespace Automattic\WooCommerce\Admin\API\Reports\Downloads;
- defined( 'ABSPATH' ) || exit;
- use \Automattic\WooCommerce\Admin\API\Reports\Controller as ReportsController;
- use \Automattic\WooCommerce\Admin\API\Reports\ExportableInterface;
- /**
- * REST API Reports downloads controller class.
- *
- * @extends Automattic\WooCommerce\Admin\API\Reports\Controller
- */
- class Controller extends ReportsController implements ExportableInterface {
- /**
- * Endpoint namespace.
- *
- * @var string
- */
- protected $namespace = 'wc-analytics';
- /**
- * Route base.
- *
- * @var string
- */
- protected $rest_base = 'reports/downloads';
- /**
- * Get items.
- *
- * @param WP_REST_Request $request Request data.
- * @return array|WP_Error
- */
- public function get_items( $request ) {
- $args = array();
- $registered = array_keys( $this->get_collection_params() );
- foreach ( $registered as $param_name ) {
- if ( isset( $request[ $param_name ] ) ) {
- $args[ $param_name ] = $request[ $param_name ];
- }
- }
- $reports = new Query( $args );
- $downloads_data = $reports->get_data();
- $data = array();
- foreach ( $downloads_data->data as $download_data ) {
- $item = $this->prepare_item_for_response( $download_data, $request );
- $data[] = $this->prepare_response_for_collection( $item );
- }
- $response = rest_ensure_response( $data );
- $response->header( 'X-WP-Total', (int) $downloads_data->total );
- $response->header( 'X-WP-TotalPages', (int) $downloads_data->pages );
- $page = $downloads_data->page_no;
- $max_pages = $downloads_data->pages;
- $base = add_query_arg( $request->get_query_params(), rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ) );
- if ( $page > 1 ) {
- $prev_page = $page - 1;
- if ( $prev_page > $max_pages ) {
- $prev_page = $max_pages;
- }
- $prev_link = add_query_arg( 'page', $prev_page, $base );
- $response->link_header( 'prev', $prev_link );
- }
- if ( $max_pages > $page ) {
- $next_page = $page + 1;
- $next_link = add_query_arg( 'page', $next_page, $base );
- $response->link_header( 'next', $next_link );
- }
- return $response;
- }
- /**
- * Prepare a report object for serialization.
- *
- * @param Array $report Report data.
- * @param WP_REST_Request $request Request object.
- * @return WP_REST_Response
- */
- public function prepare_item_for_response( $report, $request ) {
- $data = $report;
- $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
- $data = $this->add_additional_fields_to_object( $data, $request );
- $data = $this->filter_response_by_context( $data, $context );
- // Wrap the data in a response object.
- $response = rest_ensure_response( $data );
- $response->add_links( $this->prepare_links( $report ) );
- $response->data['date'] = get_date_from_gmt( $data['date_gmt'], 'Y-m-d H:i:s' );
- // Figure out file name.
- // Matches https://github.com/woocommerce/woocommerce/blob/4be0018c092e617c5d2b8c46b800eb71ece9ddef/includes/class-wc-download-handler.php#L197.
- $product_id = intval( $data['product_id'] );
- $_product = wc_get_product( $product_id );
- // Make sure the product hasn't been deleted.
- if ( $_product ) {
- $file_path = $_product->get_file_download_path( $data['download_id'] );
- $filename = basename( $file_path );
- $response->data['file_name'] = apply_filters( 'woocommerce_file_download_filename', $filename, $product_id );
- $response->data['file_path'] = $file_path;
- } else {
- $response->data['file_name'] = '';
- $response->data['file_path'] = '';
- }
- $customer = new \WC_Customer( $data['user_id'] );
- $response->data['username'] = $customer->get_username();
- $response->data['order_number'] = $this->get_order_number( $data['order_id'] );
- /**
- * Filter a report returned from the API.
- *
- * Allows modification of the report data right before it is returned.
- *
- * @param WP_REST_Response $response The response object.
- * @param object $report The original report object.
- * @param WP_REST_Request $request Request used to generate the response.
- */
- return apply_filters( 'woocommerce_rest_prepare_report_downloads', $response, $report, $request );
- }
- /**
- * Prepare links for the request.
- *
- * @param Array $object Object data.
- * @return array Links for the given post.
- */
- protected function prepare_links( $object ) {
- $links = array(
- 'product' => array(
- 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, 'products', $object['product_id'] ) ),
- 'embeddable' => true,
- ),
- );
- return $links;
- }
- /**
- * Get the Report's schema, conforming to JSON Schema.
- *
- * @return array
- */
- public function get_item_schema() {
- $schema = array(
- '$schema' => 'http://json-schema.org/draft-04/schema#',
- 'title' => 'report_downloads',
- 'type' => 'object',
- 'properties' => array(
- 'id' => array(
- 'type' => 'integer',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'ID.', 'woocommerce' ),
- ),
- 'product_id' => array(
- 'type' => 'integer',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'Product ID.', 'woocommerce' ),
- ),
- 'date' => array(
- 'description' => __( "The date of the download, in the site's timezone.", 'woocommerce' ),
- 'type' => 'date-time',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'date_gmt' => array(
- 'description' => __( 'The date of the download, as GMT.', 'woocommerce' ),
- 'type' => 'date-time',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'download_id' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'Download ID.', 'woocommerce' ),
- ),
- 'file_name' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'File name.', 'woocommerce' ),
- ),
- 'file_path' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'File URL.', 'woocommerce' ),
- ),
- 'order_id' => array(
- 'type' => 'integer',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'Order ID.', 'woocommerce' ),
- ),
- 'order_number' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'Order Number.', 'woocommerce' ),
- ),
- 'user_id' => array(
- 'type' => 'integer',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'User ID for the downloader.', 'woocommerce' ),
- ),
- 'username' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'User name of the downloader.', 'woocommerce' ),
- ),
- 'ip_address' => array(
- 'type' => 'string',
- 'readonly' => true,
- 'context' => array( 'view', 'edit' ),
- 'description' => __( 'IP address for the downloader.', 'woocommerce' ),
- ),
- ),
- );
- return $this->add_additional_fields_schema( $schema );
- }
- /**
- * Get the query params for collections.
- *
- * @return array
- */
- public function get_collection_params() {
- $params = array();
- $params['context'] = $this->get_context_param( array( 'default' => 'view' ) );
- $params['page'] = array(
- 'description' => __( 'Current page of the collection.', 'woocommerce' ),
- 'type' => 'integer',
- 'default' => 1,
- 'sanitize_callback' => 'absint',
- 'validate_callback' => 'rest_validate_request_arg',
- 'minimum' => 1,
- );
- $params['per_page'] = array(
- 'description' => __( 'Maximum number of items to be returned in result set.', 'woocommerce' ),
- 'type' => 'integer',
- 'default' => 10,
- 'minimum' => 1,
- 'maximum' => 100,
- 'sanitize_callback' => 'absint',
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['after'] = array(
- 'description' => __( 'Limit response to resources published after a given ISO8601 compliant date.', 'woocommerce' ),
- 'type' => 'string',
- 'format' => 'date-time',
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['before'] = array(
- 'description' => __( 'Limit response to resources published before a given ISO8601 compliant date.', 'woocommerce' ),
- 'type' => 'string',
- 'format' => 'date-time',
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['order'] = array(
- 'description' => __( 'Order sort attribute ascending or descending.', 'woocommerce' ),
- 'type' => 'string',
- 'default' => 'desc',
- 'enum' => array( 'asc', 'desc' ),
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['orderby'] = array(
- 'description' => __( 'Sort collection by object attribute.', 'woocommerce' ),
- 'type' => 'string',
- 'default' => 'date',
- 'enum' => array(
- 'date',
- 'product',
- ),
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['match'] = array(
- 'description' => __( 'Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: products, orders, username, ip_address.', 'woocommerce' ),
- 'type' => 'string',
- 'default' => 'all',
- 'enum' => array(
- 'all',
- 'any',
- ),
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['product_includes'] = array(
- 'description' => __( 'Limit result set to items that have the specified product(s) assigned.', 'woocommerce' ),
- 'type' => 'array',
- 'items' => array(
- 'type' => 'integer',
- ),
- 'default' => array(),
- 'sanitize_callback' => 'wp_parse_id_list',
- 'validate_callback' => 'rest_validate_request_arg',
- );
- $params['product_excludes'] = array(
- 'description' => __( 'Limit result set to items that don\'t have the specified product(s) assigned.', 'woocommerce' ),
- 'type' => 'array',
- 'items' => array(
- 'type' => 'integer',
- ),
- 'default' => array(),
- 'validate_callback' => 'rest_validate_request_arg',
- 'sanitize_callback' => 'wp_parse_id_list',
- );
- $params['order_includes'] = array(
- 'description' => __( 'Limit result set to items that have the specified order ids.', 'woocommerce' ),
- 'type' => 'array',
- 'sanitize_callback' => 'wp_parse_id_list',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'integer',
- ),
- );
- $params['order_excludes'] = array(
- 'description' => __( 'Limit result set to items that don\'t have the specified order ids.', 'woocommerce' ),
- 'type' => 'array',
- 'sanitize_callback' => 'wp_parse_id_list',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'integer',
- ),
- );
- $params['customer_includes'] = array(
- 'description' => __( 'Limit response to objects that have the specified user ids.', 'woocommerce' ),
- 'type' => 'array',
- 'sanitize_callback' => 'wp_parse_id_list',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'integer',
- ),
- );
- $params['customer_excludes'] = array(
- 'description' => __( 'Limit response to objects that don\'t have the specified user ids.', 'woocommerce' ),
- 'type' => 'array',
- 'sanitize_callback' => 'wp_parse_id_list',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'integer',
- ),
- );
- $params['ip_address_includes'] = array(
- 'description' => __( 'Limit response to objects that have a specified ip address.', 'woocommerce' ),
- 'type' => 'array',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'string',
- ),
- );
- $params['ip_address_excludes'] = array(
- 'description' => __( 'Limit response to objects that don\'t have a specified ip address.', 'woocommerce' ),
- 'type' => 'array',
- 'validate_callback' => 'rest_validate_request_arg',
- 'items' => array(
- 'type' => 'string',
- ),
- );
- return $params;
- }
- /**
- * Get the column names for export.
- *
- * @return array Key value pair of Column ID => Label.
- */
- public function get_export_columns() {
- $export_columns = array(
- 'date' => __( 'Date', 'woocommerce' ),
- 'product' => __( 'Product title', 'woocommerce' ),
- 'file_name' => __( 'File name', 'woocommerce' ),
- 'order_number' => __( 'Order #', 'woocommerce' ),
- 'user_id' => __( 'User Name', 'woocommerce' ),
- 'ip_address' => __( 'IP', 'woocommerce' ),
- );
- /**
- * Filter to add or remove column names from the downloads report for
- * export.
- *
- * @since 1.6.0
- */
- return apply_filters(
- 'woocommerce_filter_downloads_export_columns',
- $export_columns
- );
- }
- /**
- * Get the column values for export.
- *
- * @param array $item Single report item/row.
- * @return array Key value pair of Column ID => Row Value.
- */
- public function prepare_item_for_export( $item ) {
- $export_item = array(
- 'date' => $item['date'],
- 'product' => $item['_embedded']['product'][0]['name'],
- 'file_name' => $item['file_name'],
- 'order_number' => $item['order_number'],
- 'user_id' => $item['username'],
- 'ip_address' => $item['ip_address'],
- );
- /**
- * Filter to prepare extra columns in the export item for the downloads
- * report.
- *
- * @since 1.6.0
- */
- return apply_filters(
- 'woocommerce_report_downloads_prepare_export_item',
- $export_item,
- $item
- );
- }
- }