/var/www/html_us/wp-content/plugins/woocommerce/src/Admin/API/Leaderboards.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
<?php
/**
 * REST API Leaderboards Controller
 *
 * Handles requests to /leaderboards
 */

namespace Automattic\WooCommerce\Admin\API;

defined'ABSPATH' ) || exit;

use 
Automattic\WooCommerce\Admin\API\Reports\Categories\DataStore as CategoriesDataStore;
use 
Automattic\WooCommerce\Admin\API\Reports\Coupons\DataStore as CouponsDataStore;
use 
Automattic\WooCommerce\Admin\API\Reports\Customers\DataStore as CustomersDataStore;
use 
Automattic\WooCommerce\Admin\API\Reports\Products\DataStore as ProductsDataStore;

/**
 * Leaderboards controller.
 *
 * @internal
 * @extends WC_REST_Data_Controller
 */
class Leaderboards extends \WC_REST_Data_Controller {
    
/**
     * Endpoint namespace.
     *
     * @var string
     */
    
protected $namespace 'wc-analytics';

    
/**
     * Route base.
     *
     * @var string
     */
    
protected $rest_base 'leaderboards';

    
/**
     * Register routes.
     */
    
public function register_routes() {
        
register_rest_route(
            
$this->namespace,
            
'/' $this->rest_base,
            array(
                array(
                    
'methods'             => \WP_REST_Server::READABLE,
                    
'callback'            => array( $this'get_items' ),
                    
'permission_callback' => array( $this'get_items_permissions_check' ),
                    
'args'                => $this->get_collection_params(),
                ),
                
'schema' => array( $this'get_public_item_schema' ),
            )
        );

        
register_rest_route(
            
$this->namespace,
            
'/' $this->rest_base '/allowed',
            array(
                array(
                    
'methods'             => \WP_REST_Server::READABLE,
                    
'callback'            => array( $this'get_allowed_items' ),
                    
'permission_callback' => array( $this'get_items_permissions_check' ),
                ),
                
'schema' => array( $this'get_public_allowed_item_schema' ),
            )
        );

        
register_rest_route(
            
$this->namespace,
            
'/' $this->rest_base '/(?P<leaderboard>\w+)',
            array(
                
'args' => array(
                    
'leaderboard' => array(
                        
'type' => 'string',
                        
'enum' => array( 'customers''coupons''categories''products' ),
                    ),
                ),
                array(
                    
'methods'             => \WP_REST_Server::READABLE,
                    
'callback'            => array( $this'get_items' ),
                    
'permission_callback' => array( $this'get_items_permissions_check' ),
                    
'args'                => $this->get_collection_params(),
                ),
                
'schema' => array( $this'get_public_item_schema' ),
            )
        );
    }

    
/**
     * Get the data for the coupons leaderboard.
     *
     * @param int    $per_page Number of rows.
     * @param string $after Items after date.
     * @param string $before Items before date.
     * @param string $persisted_query URL query string.
     */
    
protected function get_coupons_leaderboard$per_page$after$before$persisted_query ) {
        
$coupons_data_store = new CouponsDataStore();
        
$coupons_data       $per_page $coupons_data_store->get_data(
            
apply_filters(
                
'woocommerce_analytics_coupons_query_args',
                array(
                    
'orderby'       => 'orders_count',
                    
'order'         => 'desc',
                    
'after'         => $after,
                    
'before'        => $before,
                    
'per_page'      => $per_page,
                    
'extended_info' => true,
                )
            )
        )->
data : array();

        
$rows = array();
        foreach ( 
$coupons_data as $coupon ) {
            
$url_query   wp_parse_args(
                array(
                    
'filter'  => 'single_coupon',
                    
'coupons' => $coupon['coupon_id'],
                ),
                
$persisted_query
            
);
            
$coupon_url  wc_admin_url'/analytics/coupons'$url_query );
            
$coupon_code = isset( $coupon['extended_info'] ) && isset( $coupon['extended_info']['code'] ) ? $coupon['extended_info']['code'] : '';
            
$rows[]      = array(
                array(
                    
'display' => "<a href='{$coupon_url}'>{$coupon_code}</a>",
                    
'value'   => $coupon_code,
                ),
                array(
                    
'display' => wc_admin_number_format$coupon['orders_count'] ),
                    
'value'   => $coupon['orders_count'],
                    
'format'  => 'number',
                ),
                array(
                    
'display' => wc_price$coupon['amount'] ),
                    
'value'   => $coupon['amount'],
                    
'format'  => 'currency',
                ),
            );
        }

        return array(
            
'id'      => 'coupons',
            
'label'   => __'Top Coupons - Number of Orders''woocommerce' ),
            
'headers' => array(
                array(
                    
'label' => __'Coupon code''woocommerce' ),
                ),
                array(
                    
'label' => __'Orders''woocommerce' ),
                ),
                array(
                    
'label' => __'Amount discounted''woocommerce' ),
                ),
            ),
            
'rows'    => $rows,
        );
    }

    
/**
     * Get the data for the categories leaderboard.
     *
     * @param int    $per_page Number of rows.
     * @param string $after Items after date.
     * @param string $before Items before date.
     * @param string $persisted_query URL query string.
     */
    
protected function get_categories_leaderboard$per_page$after$before$persisted_query ) {
        
$categories_data_store = new CategoriesDataStore();
        
$categories_data       $per_page $categories_data_store->get_data(
            
apply_filters(
                
'woocommerce_analytics_categories_query_args',
                array(
                    
'orderby'       => 'items_sold',
                    
'order'         => 'desc',
                    
'after'         => $after,
                    
'before'        => $before,
                    
'per_page'      => $per_page,
                    
'extended_info' => true,
                )
            )
        )->
data : array();

        
$rows = array();
        foreach ( 
$categories_data as $category ) {
            
$url_query     wp_parse_args(
                array(
                    
'filter'     => 'single_category',
                    
'categories' => $category['category_id'],
                ),
                
$persisted_query
            
);
            
$category_url  wc_admin_url'/analytics/categories'$url_query );
            
$category_name = isset( $category['extended_info'] ) && isset( $category['extended_info']['name'] ) ? $category['extended_info']['name'] : '';
            
$rows[]        = array(
                array(
                    
'display' => "<a href='{$category_url}'>{$category_name}</a>",
                    
'value'   => $category_name,
                ),
                array(
                    
'display' => wc_admin_number_format$category['items_sold'] ),
                    
'value'   => $category['items_sold'],
                    
'format'  => 'number',
                ),
                array(
                    
'display' => wc_price$category['net_revenue'] ),
                    
'value'   => $category['net_revenue'],
                    
'format'  => 'currency',
                ),
            );
        }

        return array(
            
'id'      => 'categories',
            
'label'   => __'Top categories - Items sold''woocommerce' ),
            
'headers' => array(
                array(
                    
'label' => __'Category''woocommerce' ),
                ),
                array(
                    
'label' => __'Items sold''woocommerce' ),
                ),
                array(
                    
'label' => __'Net sales''woocommerce' ),
                ),
            ),
            
'rows'    => $rows,
        );
    }

    
/**
     * Get the data for the customers leaderboard.
     *
     * @param int    $per_page Number of rows.
     * @param string $after Items after date.
     * @param string $before Items before date.
     * @param string $persisted_query URL query string.
     */
    
protected function get_customers_leaderboard$per_page$after$before$persisted_query ) {
        
$customers_data_store = new CustomersDataStore();
        
$customers_data       $per_page $customers_data_store->get_data(
            
apply_filters(
                
'woocommerce_analytics_customers_query_args',
                array(
                    
'orderby'      => 'total_spend',
                    
'order'        => 'desc',
                    
'order_after'  => $after,
                    
'order_before' => $before,
                    
'per_page'     => $per_page,
                )
            )
        )->
data : array();

        
$rows = array();
        foreach ( 
$customers_data as $customer ) {
            
$url_query    wp_parse_args(
                array(
                    
'filter'    => 'single_customer',
                    
'customers' => $customer['id'],
                ),
                
$persisted_query
            
);
            
$customer_url wc_admin_url'/analytics/customers'$url_query );
            
$rows[]       = array(
                array(
                    
'display' => "<a href='{$customer_url}'>{$customer['name']}</a>",
                    
'value'   => $customer['name'],
                ),
                array(
                    
'display' => wc_admin_number_format$customer['orders_count'] ),
                    
'value'   => $customer['orders_count'],
                    
'format'  => 'number',
                ),
                array(
                    
'display' => wc_price$customer['total_spend'] ),
                    
'value'   => $customer['total_spend'],
                    
'format'  => 'currency',
                ),
            );
        }

        return array(
            
'id'      => 'customers',
            
'label'   => __'Top Customers - Total Spend''woocommerce' ),
            
'headers' => array(
                array(
                    
'label' => __'Customer Name''woocommerce' ),
                ),
                array(
                    
'label' => __'Orders''woocommerce' ),
                ),
                array(
                    
'label' => __'Total Spend''woocommerce' ),
                ),
            ),
            
'rows'    => $rows,
        );
    }

    
/**
     * Get the data for the products leaderboard.
     *
     * @param int    $per_page Number of rows.
     * @param string $after Items after date.
     * @param string $before Items before date.
     * @param string $persisted_query URL query string.
     */
    
protected function get_products_leaderboard$per_page$after$before$persisted_query ) {
        
$products_data_store = new ProductsDataStore();
        
$products_data       $per_page $products_data_store->get_data(
            
apply_filters(
                
'woocommerce_analytics_products_query_args',
                array(
                    
'orderby'       => 'items_sold',
                    
'order'         => 'desc',
                    
'after'         => $after,
                    
'before'        => $before,
                    
'per_page'      => $per_page,
                    
'extended_info' => true,
                )
            )
        )->
data : array();

        
$rows = array();
        foreach ( 
$products_data as $product ) {
            
$url_query    wp_parse_args(
                array(
                    
'filter'   => 'single_product',
                    
'products' => $product['product_id'],
                ),
                
$persisted_query
            
);
            
$product_url  wc_admin_url'/analytics/products'$url_query );
            
$product_name = isset( $product['extended_info'] ) && isset( $product['extended_info']['name'] ) ? $product['extended_info']['name'] : '';
            
$rows[]       = array(
                array(
                    
'display' => "<a href='{$product_url}'>{$product_name}</a>",
                    
'value'   => $product_name,
                ),
                array(
                    
'display' => wc_admin_number_format$product['items_sold'] ),
                    
'value'   => $product['items_sold'],
                    
'format'  => 'number',
                ),
                array(
                    
'display' => wc_price$product['net_revenue'] ),
                    
'value'   => $product['net_revenue'],
                    
'format'  => 'currency',
                ),
            );
        }

        return array(
            
'id'      => 'products',
            
'label'   => __'Top products - Items sold''woocommerce' ),
            
'headers' => array(
                array(
                    
'label' => __'Product''woocommerce' ),
                ),
                array(
                    
'label' => __'Items sold''woocommerce' ),
                ),
                array(
                    
'label' => __'Net sales''woocommerce' ),
                ),
            ),
            
'rows'    => $rows,
        );
    }

    
/**
     * Get an array of all leaderboards.
     *
     * @param int    $per_page Number of rows.
     * @param string $after Items after date.
     * @param string $before Items before date.
     * @param string $persisted_query URL query string.
     * @return array
     */
    
public function get_leaderboards$per_page$after$before$persisted_query ) {
        
$leaderboards = array(
            
$this->get_customers_leaderboard$per_page$after$before$persisted_query ),
            
$this->get_coupons_leaderboard$per_page$after$before$persisted_query ),
            
$this->get_categories_leaderboard$per_page$after$before$persisted_query ),
            
$this->get_products_leaderboard$per_page$after$before$persisted_query ),
        );

        return 
apply_filters'woocommerce_leaderboards'$leaderboards$per_page$after$before$persisted_query );
    }

    
/**
     * Return all leaderboards.
     *
     * @param  WP_REST_Request $request Request data.
     * @return WP_Error|WP_REST_Response
     */
    
public function get_items$request ) {
        
$persisted_query json_decode$request['persisted_query'], true );

        switch ( 
$request['leaderboard'] ) {
            case 
'customers':
                
$leaderboards = array( $this->get_customers_leaderboard$request['per_page'], $request['after'], $request['before'], $persisted_query ) );
                break;
            case 
'coupons':
                
$leaderboards = array( $this->get_coupons_leaderboard$request['per_page'], $request['after'], $request['before'], $persisted_query ) );
                break;
            case 
'categories':
                
$leaderboards = array( $this->get_categories_leaderboard$request['per_page'], $request['after'], $request['before'], $persisted_query ) );
                break;
            case 
'products':
                
$leaderboards = array( $this->get_products_leaderboard$request['per_page'], $request['after'], $request['before'], $persisted_query ) );
                break;
            default:
                
$leaderboards $this->get_leaderboards$request['per_page'], $request['after'], $request['before'], $persisted_query );
                break;
        }

        
$data = array();
        if ( ! empty( 
$leaderboards ) ) {
            foreach ( 
$leaderboards as $leaderboard ) {
                
$response $this->prepare_item_for_response$leaderboard$request );
                
$data[]   = $this->prepare_response_for_collection$response );
            }
        }

        return 
rest_ensure_response$data );
    }

    
/**
     * Returns a list of allowed leaderboards.
     *
     * @param  WP_REST_Request $request Request data.
     * @return array|WP_Error
     */
    
public function get_allowed_items$request ) {
        
$leaderboards $this->get_leaderboards0nullnullnull );

        
$data = array();
        foreach ( 
$leaderboards as $leaderboard ) {
            
$data[] = (object) array(
                
'id'      => $leaderboard['id'],
                
'label'   => $leaderboard['label'],
                
'headers' => $leaderboard['headers'],
            );
        }

        
$objects = array();
        foreach ( 
$data as $item ) {
            
$prepared  $this->prepare_item_for_response$item$request );
            
$objects[] = $this->prepare_response_for_collection$prepared );
        }

        
$response rest_ensure_response$objects );
        
$response->header'X-WP-Total'count$data ) );
        
$response->header'X-WP-TotalPages');

        
$base add_query_arg$request->get_query_params(), rest_urlsprintf'/%s/%s'$this->namespace$this->rest_base ) ) );

        return 
$response;
    }

    
/**
     * Prepare the data object for response.
     *
     * @param object          $item Data object.
     * @param WP_REST_Request $request Request object.
     * @return WP_REST_Response $response Response data.
     */
    
public function prepare_item_for_response$item$request ) {
        
$data     $this->add_additional_fields_to_object$item$request );
        
$data     $this->filter_response_by_context$data'view' );
        
$response rest_ensure_response$data );

        
/**
         * Filter the list returned from the API.
         *
         * @param WP_REST_Response $response The response object.
         * @param array            $item     The original item.
         * @param WP_REST_Request  $request  Request used to generate the response.
         */
        
return apply_filters'woocommerce_rest_prepare_leaderboard'$response$item$request );
    }

    
/**
     * Get the query params for collections.
     *
     * @return array
     */
    
public function get_collection_params() {
        
$params                    = array();
        
$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'           => 5,
            
'minimum'           => 1,
            
'maximum'           => 20,
            
'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['persisted_query'] = array(
            
'description'       => __'URL query to persist across links.''woocommerce' ),
            
'type'              => 'string',
            
'validate_callback' => 'rest_validate_request_arg',
        );
        return 
$params;
    }

    
/**
     * Get the schema, conforming to JSON Schema.
     *
     * @return array
     */
    
public function get_item_schema() {
        
$schema = array(
            
'$schema'    => 'http://json-schema.org/draft-04/schema#',
            
'title'      => 'leaderboard',
            
'type'       => 'object',
            
'properties' => array(
                
'id'      => array(
                    
'type'        => 'string',
                    
'description' => __'Leaderboard ID.''woocommerce' ),
                    
'context'     => array( 'view' ),
                    
'readonly'    => true,
                ),
                
'label'   => array(
                    
'type'        => 'string',
                    
'description' => __'Displayed title for the leaderboard.''woocommerce' ),
                    
'context'     => array( 'view' ),
                    
'readonly'    => true,
                ),
                
'headers' => array(
                    
'type'        => 'array',
                    
'description' => __'Table headers.''woocommerce' ),
                    
'context'     => array( 'view' ),
                    
'readonly'    => true,
                    
'items'       => array(
                        
'type'       => 'array',
                        
'properties' => array(
                            
'label' => array(
                                
'description' => __'Table column header.''woocommerce' ),
                                
'type'        => 'string',
                                
'context'     => array( 'view''edit' ),
                                
'readonly'    => true,
                            ),
                        ),
                    ),
                ),
                
'rows'    => array(
                    
'type'        => 'array',
                    
'description' => __'Table rows.''woocommerce' ),
                    
'context'     => array( 'view' ),
                    
'readonly'    => true,
                    
'items'       => array(
                        
'type'       => 'array',
                        
'properties' => array(
                            
'display' => array(
                                
'description' => __'Table cell display.''woocommerce' ),
                                
'type'        => 'string',
                                
'context'     => array( 'view''edit' ),
                                
'readonly'    => true,
                            ),
                            
'value'   => array(
                                
'description' => __'Table cell value.''woocommerce' ),
                                
'type'        => 'string',
                                
'context'     => array( 'view''edit' ),
                                
'readonly'    => true,
                            ),
                            
'format'  => array(
                                
'description' => __'Table cell format.''woocommerce' ),
                                
'type'        => 'string',
                                
'context'     => array( 'view' ),
                                
'enum'        => array( 'currency''number' ),
                                
'readonly'    => true,
                                
'required'    => false,
                            ),
                        ),
                    ),
                ),
            ),
        );

        return 
$this->add_additional_fields_schema$schema );
    }

    
/**
     * Get schema for the list of allowed leaderboards.
     *
     * @return array $schema
     */
    
public function get_public_allowed_item_schema() {
        
$schema $this->get_public_item_schema();
        unset( 
$schema['properties']['rows'] );
        return 
$schema;
    }
}