2019-05-10 16:56:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Reports Customers Totals controller
|
|
|
|
*
|
|
|
|
* Handles requests to the /reports/customers/count endpoint.
|
|
|
|
*
|
2020-09-17 14:56:08 +00:00
|
|
|
* @package WooCommerce\RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Reports Customers Totals controller class.
|
|
|
|
*
|
2020-09-17 14:56:08 +00:00
|
|
|
* @package WooCommerce\RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @extends WC_REST_Reports_Controller
|
|
|
|
*/
|
|
|
|
class WC_REST_Report_Customers_Totals_Controller extends WC_REST_Reports_Controller {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $namespace = 'wc/v3';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Route base.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $rest_base = 'reports/customers/totals';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get reports list.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function get_reports() {
|
|
|
|
$users_count = count_users();
|
|
|
|
$total_customers = 0;
|
|
|
|
|
|
|
|
foreach ( $users_count['avail_roles'] as $role => $total ) {
|
|
|
|
if ( in_array( $role, array( 'administrator', 'shop_manager' ), true ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$total_customers += (int) $total;
|
|
|
|
}
|
|
|
|
|
|
|
|
$customers_query = new WP_User_Query(
|
|
|
|
array(
|
|
|
|
'role__not_in' => array( 'administrator', 'shop_manager' ),
|
|
|
|
'number' => 0,
|
|
|
|
'fields' => 'ID',
|
|
|
|
'count_total' => true,
|
|
|
|
'meta_query' => array( // WPCS: slow query ok.
|
|
|
|
array(
|
|
|
|
'key' => 'paying_customer',
|
|
|
|
'value' => 1,
|
|
|
|
'compare' => '=',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$total_paying = (int) $customers_query->get_total();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
array(
|
|
|
|
'slug' => 'paying',
|
2020-08-06 12:48:18 +00:00
|
|
|
'name' => __( 'Paying customer', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'total' => $total_paying,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'slug' => 'non_paying',
|
2020-08-06 12:48:18 +00:00
|
|
|
'name' => __( 'Non-paying customer', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'total' => $total_customers - $total_paying,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare a report object for serialization.
|
|
|
|
*
|
|
|
|
* @param stdClass $report Report data.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
* @return WP_REST_Response $response Response data.
|
|
|
|
*/
|
|
|
|
public function prepare_item_for_response( $report, $request ) {
|
|
|
|
$data = array(
|
|
|
|
'slug' => $report->slug,
|
|
|
|
'name' => $report->name,
|
|
|
|
'total' => $report->total,
|
|
|
|
);
|
|
|
|
|
|
|
|
$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 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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_customers_count', $response, $report, $request );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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_customer_total',
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'slug' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'An alphanumeric identifier for the resource.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'name' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Customer type name.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'total' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Amount of customers.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->add_additional_fields_schema( $schema );
|
|
|
|
}
|
|
|
|
}
|