/var/www/html/wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
<?php
/**
 * Admin report functionality.
 *
 * @package WooCommerce\Admin\Reports
 */

use Automattic\WooCommerce\Enums\OrderStatus;
use 
Automattic\WooCommerce\Utilities\ArrayUtil;

if ( ! 
defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly.
}

/**
 * Admin Report.
 *
 * Extended by reports to show charts and stats in admin.
 *
 * @package     WooCommerce\Admin\Reports
 * @version     2.1.0
 */
class WC_Admin_Report {

    
/**
     * List of transients name that have been updated and need persisting.
     *
     * @var array
     */
    
protected static $transients_to_update = array();

    
/**
     * The list of transients.
     *
     * @var array
     */
    
protected static $cached_results = array();

    
/**
     * The chart interval.
     *
     * @var int
     */
    
public $chart_interval;

    
/**
     * Group by SQL query.
     *
     * @var string
     */
    
public $group_by_query;

    
/**
     * The bar width.
     *
     * @var int
     */
    
public $barwidth;

    
/**
     * Group chart item by day or month.
     *
     * @var string
     */
    
public $chart_groupby;

    
/**
     * The start date of the report.
     *
     * @var int timestamp
     */
    
public $start_date;

    
/**
     * The end date of the report.
     *
     * @var int timestamp
     */
    
public $end_date;

    
/**
     * Get report totals such as order totals and discount amounts.
     *
     * Data example:
     *
     * '_order_total' => array(
     *     'type'     => 'meta',
     *     'function' => 'SUM',
     *     'name'     => 'total_sales'
     * )
     *
     * @param  array $args arguments for the report.
     * @return mixed depending on query_type
     */
    
public function get_order_report_data$args = array() ) {
        global 
$wpdb;

        
$default_args = array(
            
'data'                => array(),
            
'where'               => array(),
            
'where_meta'          => array(),
            
'query_type'          => 'get_row',
            
'group_by'            => '',
            
'order_by'            => '',
            
'limit'               => '',
            
'filter_range'        => false,
            
'nocache'             => false,
            
'debug'               => false,
            
'order_types'         => wc_get_order_types'reports' ),
            
'order_status'        => array( OrderStatus::COMPLETEDOrderStatus::PROCESSINGOrderStatus::ON_HOLD ),
            
'parent_order_status' => false,
        );
        
$args         apply_filters'woocommerce_reports_get_order_report_data_args'$args );
        
$args         wp_parse_args$args$default_args );

        
// phpcs:ignore WordPress.PHP.DontExtract.extract_extract
        
extract$args );

        if ( empty( 
$data ) ) {
            return 
'';
        }

        
$order_status apply_filters'woocommerce_reports_order_statuses'$order_status );

        
$query  = array();
        
$select = array();

        foreach ( 
$data as $raw_key => $value ) {
            
$key      sanitize_key$raw_key );
            
$distinct '';

            if ( isset( 
$value['distinct'] ) ) {
                
$distinct 'DISTINCT';
            }

            switch ( 
$value['type'] ) {
                case 
'meta':
                    
$get_key "meta_{$key}.meta_value";
                    break;
                case 
'parent_meta':
                    
$get_key "parent_meta_{$key}.meta_value";
                    break;
                case 
'post_data':
                    
$get_key "posts.{$key}";
                    break;
                case 
'order_item_meta':
                    
$get_key "order_item_meta_{$key}.meta_value";
                    break;
                case 
'order_item':
                    
$get_key "order_items.{$key}";
                    break;
            }

            if ( empty( 
$get_key ) ) {
                
// Skip to the next foreach iteration else the query will be invalid.
                
continue;
            }

            if ( 
$value['function'] ) {
                
$get "{$value['function']}({$distinct} {$get_key})";
            } else {
                
$get "{$distinct} {$get_key}";
            }

            
$select[] = "{$get} as {$value['name']}";
        }

        
$query['select'] = 'SELECT ' implode','$select );
        
$query['from']   = "FROM {$wpdb->posts} AS posts";

        
// Joins.
        
$joins = array();

        foreach ( ( 
$data $where ) as $raw_key => $value ) {
            
$join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER';
            
$type      = isset( $value['type'] ) ? $value['type'] : false;
            
$key       sanitize_key$raw_key );

            switch ( 
$type ) {
                case 
'meta':
                    
$joins"meta_{$key}] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )";
                    break;
                case 
'parent_meta':
                    
$joins"parent_meta_{$key}] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')";
                    break;
                case 
'order_item_meta':
                    
$joins['order_items'] = "{$join_type} JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON (posts.ID = order_items.order_id)";

                    if ( ! empty( 
$value['order_item_type'] ) ) {
                        
$joins['order_items'] .= " AND (order_items.order_item_type = '{$value['order_item_type']}')";
                    }

                    
$joins"order_item_meta_{$key}] = "{$join_type} JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_{$key} ON " .
                                                        
"(order_items.order_item_id = order_item_meta_{$key}.order_item_id) " .
                                                        
" AND (order_item_meta_{$key}.meta_key = '{$raw_key}')";
                    break;
                case 
'order_item':
                    
$joins['order_items'] = "{$join_type} JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_items.order_id";
                    break;
            }
        }

        if ( ! empty( 
$where_meta ) ) {
            foreach ( 
$where_meta as $value ) {
                if ( ! 
is_array$value ) ) {
                    continue;
                }
                
$join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER';
                
$type      = isset( $value['type'] ) ? $value['type'] : false;
                
$key       sanitize_keyis_array$value['meta_key'] ) ? $value['meta_key'][0] . '_array' $value['meta_key'] );

                if ( 
'order_item_meta' === $type ) {

                    
$joins['order_items']              = "{$join_type} JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON posts.ID = order_items.order_id";
                    
$joins"order_item_meta_{$key}] = "{$join_type} JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS order_item_meta_{$key} ON order_items.order_item_id = order_item_meta_{$key}.order_item_id";

                } else {
                    
// If we have a where clause for meta, join the postmeta table.
                    
$joins"meta_{$key}] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON posts.ID = meta_{$key}.post_id";
                }
            }
        }

        if ( ! empty( 
$parent_order_status ) ) {
            
$joins['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID";
        }

        
$query['join'] = implode' '$joins );

        
$query['where'] = "
            WHERE     posts.post_type     IN ( '" 
implode"','"$order_types ) . "' )
            "
;

        if ( ! empty( 
$order_status ) ) {
            
$query['where'] .= "
                AND     posts.post_status     IN ( 'wc-" 
implode"','wc-"$order_status ) . "')
            "
;
        }

        if ( ! empty( 
$parent_order_status ) ) {
            if ( ! empty( 
$order_status ) ) {
                
$query['where'] .= " AND ( parent.post_status IN ( 'wc-" implode"','wc-"$parent_order_status ) . "') OR parent.ID IS NULL ) ";
            } else {
                
$query['where'] .= " AND parent.post_status IN ( 'wc-" implode"','wc-"$parent_order_status ) . "') ";
            }
        }

        
// phpcs:disable WordPress.DateTime.RestrictedFunctions.date_date
        
if ( $filter_range ) {
            
$query['where'] .= "
                AND     posts.post_date >= '" 
date'Y-m-d H:i:s'$this->start_date ) . "'
                AND     posts.post_date < '" 
date'Y-m-d H:i:s'strtotime'+1 DAY'$this->end_date ) ) . "'
            "
;
        }
        
// phpcs:enable WordPress.DateTime.RestrictedFunctions.date_date

        
if ( ! empty( $where_meta ) ) {

            
$relation = isset( $where_meta['relation'] ) ? $where_meta['relation'] : 'AND';

            
$query['where'] .= ' AND (';

            foreach ( 
$where_meta as $index => $value ) {

                if ( ! 
is_array$value ) ) {
                    continue;
                }

                
$key sanitize_keyis_array$value['meta_key'] ) ? $value['meta_key'][0] . '_array' $value['meta_key'] );

                if ( 
strtolower$value['operator'] ) === 'in' || strtolower$value['operator'] ) === 'not in' ) {

                    if ( 
is_array$value['meta_value'] ) ) {
                        
// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_value
                        
$value['meta_value'] = implode"','"$value['meta_value'] );
                    }

                    if ( ! empty( 
$value['meta_value'] ) ) {
                        
$where_value "{$value['operator']} ('{$value['meta_value']}')";
                    }
                } else {
                    
$where_value "{$value['operator']} '{$value['meta_value']}'";
                }

                if ( ! empty( 
$where_value ) ) {
                    if ( 
$index ) {
                        
$query['where'] .= ' ' $relation;
                    }

                    if ( isset( 
$value['type'] ) && 'order_item_meta' === $value['type'] ) {

                        if ( 
is_array$value['meta_key'] ) ) {
                            
$query['where'] .= " ( order_item_meta_{$key}.meta_key   IN ('" implode"','"$value['meta_key'] ) . "')";
                        } else {
                            
$query['where'] .= " ( order_item_meta_{$key}.meta_key   = '{$value['meta_key']}'";
                        }

                        
$query['where'] .= " AND order_item_meta_{$key}.meta_value {$where_value} )";
                    } else {

                        if ( 
is_array$value['meta_key'] ) ) {
                            
$query['where'] .= " ( meta_{$key}.meta_key   IN ('" implode"','"$value['meta_key'] ) . "')";
                        } else {
                            
$query['where'] .= " ( meta_{$key}.meta_key   = '{$value['meta_key']}'";
                        }

                        
$query['where'] .= " AND meta_{$key}.meta_value {$where_value} )";
                    }
                }
            }

            
$query['where'] .= ')';
        }

        if ( ! empty( 
$where ) ) {

            foreach ( 
$where as $value ) {

                if ( 
strtolower$value['operator'] ) === 'in' || strtolower$value['operator'] ) === 'not in' ) {

                    if ( 
is_array$value['value'] ) ) {
                        
$value['value'] = implode"','"$value['value'] );
                    }

                    if ( ! empty( 
$value['value'] ) ) {
                        
$where_value "{$value['operator']} ('{$value['value']}')";
                    }
                } else {
                    
$where_value "{$value['operator']} '{$value['value']}'";
                }

                if ( ! empty( 
$where_value ) ) {
                    
$query['where'] .= " AND {$value['key']} {$where_value}";
                }
            }
        }

        if ( 
$group_by ) {
            
$query['group_by'] = "GROUP BY {$group_by}";
        }

        if ( 
$order_by ) {
            
$query['order_by'] = "ORDER BY {$order_by}";
        }

        if ( 
$limit ) {
            
$query['limit'] = "LIMIT {$limit}";
        }

        
$query apply_filters'woocommerce_reports_get_order_report_query'$query );
        
$query implode' '$query );

        if ( 
$debug ) {
            echo 
'<pre>';
            
wc_print_r$query );
            echo 
'</pre>';
        }

        if ( 
$debug || $nocache ) {
            
self::enable_big_selects();

            
$result apply_filters'woocommerce_reports_get_order_report_data'$wpdb->$query_type$query ), $data );
        } else {
            
$query_hash md5$query_type $query );
            
$result     $this->get_cached_query$query_hash );
            if ( 
null === $result ) {
                
self::enable_big_selects();

                
$result apply_filters'woocommerce_reports_get_order_report_data'$wpdb->$query_type$query ), $data );
            }
            
$this->set_cached_query$query_hash$result );
        }

        return 
$result;
    }

    
/**
     * Init the static hooks of the class.
     */
    
protected static function add_update_transients_hook() {
        if ( ! 
has_action'shutdown', array( 'WC_Admin_Report''maybe_update_transients' ) ) ) {
            
add_action'shutdown', array( 'WC_Admin_Report''maybe_update_transients' ) );
        }
    }

    
/**
     * Enables big mysql selects for reports, just once for this session.
     */
    
protected static function enable_big_selects() {
        static 
$big_selects false;

        global 
$wpdb;

        if ( ! 
$big_selects ) {
            
$wpdb->query'SET SESSION SQL_BIG_SELECTS=1' );
            
$big_selects true;
        }
    }

    
/**
     * Get the cached query result or null if it's not in the cache.
     *
     * @param string $query_hash The query hash.
     *
     * @return mixed
     */
    
protected function get_cached_query$query_hash ) {
        
$class strtolowerget_class$this ) );

        if ( ! isset( 
self::$cached_results$class ] ) ) {
            
self::$cached_results$class ] = get_transientstrtolowerget_class$this ) ) );
        }

        if ( isset( 
self::$cached_results$class ][ $query_hash ] ) ) {
            return 
self::$cached_results$class ][ $query_hash ];
        }

        return 
null;
    }

    
/**
     * Set the cached query result.
     *
     * @param string $query_hash The query hash.
     * @param mixed  $data The data to cache.
     */
    
protected function set_cached_query$query_hash$data ) {
        
$class strtolowerget_class$this ) );

        if ( ! isset( 
self::$cached_results$class ] ) ) {
            
self::$cached_results$class ] = get_transient$class );
        }

        if ( 
false === self::$cached_results$class ] ) {
            
self::$cached_results$class ] = array();
        }

        
self::add_update_transients_hook();

        
self::$transients_to_update$class ]          = $class;
        
self::$cached_results$class ][ $query_hash ] = $data;
    }

    
/**
     * Function to update the modified transients at the end of the request.
     */
    
public static function maybe_update_transients() {
        foreach ( 
self::$transients_to_update as $key => $transient_name ) {
            
set_transient$transient_nameself::$cached_results$transient_name ], DAY_IN_SECONDS );
        }
        
// Transients have been updated reset the list.
        
self::$transients_to_update = array();
    }

    
/**
     * Put data with post_date's into an array of times.
     *
     * @param  array  $data array of your data.
     * @param  string $date_key key for the 'date' field. e.g. 'post_date'.
     * @param  string $data_key key for the data you are charting.
     * @param  int    $interval interval to use.
     * @param  string $start_date start date.
     * @param  string $group_by group by.
     * @return array
     */
    
public function prepare_chart_data$data$date_key$data_key$interval$start_date$group_by ) {
        
// phpcs:disable WordPress.DateTime.RestrictedFunctions.date_date

        
$prepared_data = array();

        
// Ensure all days (or months) have values in this range.
        
if ( 'day' === $group_by ) {
            for ( 
$i 0$i <= $interval$i ++ ) {
                
$time strtotimedate'Ymd'strtotime"+{$i} DAY"$start_date ) ) ) . '000';

                if ( ! isset( 
$prepared_data$time ] ) ) {
                    
$prepared_data$time ] = array( esc_js$time ), );
                }
            }
        } else {
            
$current_yearnum  date'Y'$start_date );
            
$current_monthnum date'm'$start_date );

            for ( 
$i 0$i <= $interval$i ++ ) {
                
$time strtotime$current_yearnum str_pad$current_monthnum2'0'STR_PAD_LEFT ) . '01' ) . '000';

                if ( ! isset( 
$prepared_data$time ] ) ) {
                    
$prepared_data$time ] = array( esc_js$time ), );
                }

                
$current_monthnum ++;

                if ( 
$current_monthnum 12 ) {
                    
$current_monthnum 1;
                    
$current_yearnum  ++;
                }
            }
        }

        foreach ( 
$data as $d ) {
            switch ( 
$group_by ) {
                case 
'day':
                    
$time strtotimedate'Ymd'strtotime$d->$date_key ) ) ) . '000';
                    break;
                case 
'month':
                default:
                    
$time strtotimedate'Ym'strtotime$d->$date_key ) ) . '01' ) . '000';
                    break;
            }

            if ( ! isset( 
$prepared_data$time ] ) ) {
                continue;
            }

            if ( 
$data_key ) {
                
$prepared_data$time ][1] += is_numeric$d->$data_key ) ? $d->$data_key 0;
            } else {
                
$prepared_data$time ][1] ++;
            }
        }

        return 
$prepared_data;

        
// phpcs:enable WordPress.DateTime.RestrictedFunctions.date_date
    
}

    
/**
     * Prepares the data for a sparkline to show sales in the last X days.
     *
     * @param  int    $id ID of the product to show. Blank to get all orders.
     * @param  int    $days Days of stats to get. Default to 7 days.
     * @param  string $type Type of sparkline to get. Ignored if ID is not set.
     * @return array
     */
    
public function get_sales_sparkline$id ''$days 7$type 'sales' ) {

        
// phpcs:disable WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested

        
if ( $id ) {
            
$meta_key = ( 'sales' === $type ) ? '_line_total' '_qty';

            
$data $this->get_order_report_data(
                array(
                    
'data'         => array(
                        
'_product_id' => array(
                            
'type'            => 'order_item_meta',
                            
'order_item_type' => 'line_item',
                            
'function'        => '',
                            
'name'            => 'product_id',
                        ),
                        
$meta_key     => array(
                            
'type'            => 'order_item_meta',
                            
'order_item_type' => 'line_item',
                            
'function'        => 'SUM',
                            
'name'            => 'sparkline_value',
                        ),
                        
'post_date'   => array(
                            
'type'     => 'post_data',
                            
'function' => '',
                            
'name'     => 'post_date',
                        ),
                    ),
                    
'where'        => array(
                        array(
                            
'key'      => 'post_date',
                            
'value'    => date'Y-m-d'strtotime'midnight -' . ( $days ) . ' days'current_time'timestamp' ) ) ),
                            
'operator' => '>',
                        ),
                        array(
                            
'key'      => 'order_item_meta__product_id.meta_value',
                            
'value'    => $id,
                            
'operator' => '=',
                        ),
                    ),
                    
'group_by'     => 'YEAR(posts.post_date), MONTH(posts.post_date), DAY(posts.post_date)',
                    
'query_type'   => 'get_results',
                    
'filter_range' => false,
                )
            );
        } else {

            
$data $this->get_order_report_data(
                array(
                    
'data'         => array(
                        
'_order_total' => array(
                            
'type'     => 'meta',
                            
'function' => 'SUM',
                            
'name'     => 'sparkline_value',
                        ),
                        
'post_date'    => array(
                            
'type'     => 'post_data',
                            
'function' => '',
                            
'name'     => 'post_date',
                        ),
                    ),
                    
'where'        => array(
                        array(
                            
'key'      => 'post_date',
                            
'value'    => date'Y-m-d'strtotime'midnight -' . ( $days ) . ' days'current_time'timestamp' ) ) ),
                            
'operator' => '>',
                        ),
                    ),
                    
'group_by'     => 'YEAR(posts.post_date), MONTH(posts.post_date), DAY(posts.post_date)',
                    
'query_type'   => 'get_results',
                    
'filter_range' => false,
                )
            );
        }

        
$total 0;
        foreach ( 
$data as $d ) {
            
$total += $d->sparkline_value;
        }

        
$sparkline_data array_values$this->prepare_chart_data$data'post_date''sparkline_value'$days 1strtotime'midnight -' . ( $days ) . ' days'current_time'timestamp' ) ), 'day' ) );

        
// phpcs:enable WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested

        
return array(
            
'total' => $total,
            
'data'  => $sparkline_data,
        );
    }

    
/**
     * Prepares the markup for a sparkline to show sales in the last X days.
     *
     * @param  int    $id ID of the product to show. Blank to get all orders.
     * @param  int    $days Days of stats to get. Default to 7 days.
     * @param  string $type Type of sparkline to get.
     * @return string
     */
    
public function sales_sparkline$id ''$days 7$type 'sales' ) {
        
$sparkline $this->get_sales_sparkline$id$days$type );
        
$total     $sparkline['total'];

        if ( 
'sales' === $type ) {
            
/* translators: 1: total income 2: days */
            
$tooltip sprintf__'Sold %1$s worth in the last %2$d days''woocommerce' ), wp_strip_all_tagswc_price$total ) ), $days );
        } else {
            
/* translators: 1: total items sold 2: days */
            
$tooltip sprintf_n'Sold %1$d item in the last %2$d days''Sold %1$d items in the last %2$d days'$total'woocommerce' ), $total$days );
        }

        
$sparkline_data $sparkline['data'];

        return 
'<span class="wc_sparkline ' . ( ( 'sales' === $type ) ? 'lines' 'bars' ) . ' tips" data-color="#777" data-tip="' esc_attr$tooltip ) . '" data-barwidth="' 60 60 16 1000 '" data-sparkline="' wc_esc_jsonwp_json_encode$sparkline_data ) ) . '"></span>';
    }

    
/**
     * Get the current range and calculate the start and end dates.
     *
     * @param  string $current_range Type of range.
     */
    
public function calculate_current_range$current_range ) {

        
// phpcs:disable WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested
        // phpcs:disable WordPress.Security.NonceVerification.Recommended

        
switch ( $current_range ) {

            case 
'custom':
                
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotValidated
                
$this->start_date maxstrtotime'-20 years' ), strtotimesanitize_text_fieldwp_unslash$_GET['start_date'] ) ) ) );

                if ( empty( 
$_GET['end_date'] ) ) {
                    
$this->end_date strtotime'midnight'current_time'timestamp' ) );
                } else {
                    
$this->end_date strtotime'midnight'strtotimesanitize_text_fieldwp_unslash$_GET['end_date'] ) ) ) );
                }

                
$interval 0;
                
$min_date $this->start_date;

                
// phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
                
while ( ( $min_date strtotime'+1 MONTH'$min_date ) ) <= $this->end_date ) {
                    
$interval ++;
                }

                
// 3 months max for day view
                
if ( $interval ) {
                    
$this->chart_groupby 'month';
                } else {
                    
$this->chart_groupby 'day';
                }
                break;

            case 
'year':
                
$this->start_date    strtotimedate'Y-01-01'current_time'timestamp' ) ) );
                
$this->end_date      strtotime'midnight'current_time'timestamp' ) );
                
$this->chart_groupby 'month';
                break;

            case 
'last_month':
                
$first_day_current_month strtotimedate'Y-m-01'current_time'timestamp' ) ) );
                
$this->start_date        strtotimedate'Y-m-01'strtotime'-1 DAY'$first_day_current_month ) ) );
                
$this->end_date          strtotimedate'Y-m-t'strtotime'-1 DAY'$first_day_current_month ) ) );
                
$this->chart_groupby     'day';
                break;

            case 
'month':
                
$this->start_date    strtotimedate'Y-m-01'current_time'timestamp' ) ) );
                
$this->end_date      strtotime'midnight'current_time'timestamp' ) );
                
$this->chart_groupby 'day';
                break;

            case 
'7day':
                
$this->start_date    strtotime'-6 days'strtotime'midnight'current_time'timestamp' ) ) );
                
$this->end_date      strtotime'midnight'current_time'timestamp' ) );
                
$this->chart_groupby 'day';
                break;
        }

        
// Group by.
        
switch ( $this->chart_groupby ) {

            case 
'day':
                
$this->group_by_query 'YEAR(posts.post_date), MONTH(posts.post_date), DAY(posts.post_date)';
                
$this->chart_interval absintceilmax0, ( $this->end_date $this->start_date ) / ( 60 60 24 ) ) ) );
                
$this->barwidth       60 60 24 1000;
                break;

            case 
'month':
                
$this->group_by_query 'YEAR(posts.post_date), MONTH(posts.post_date)';
                
$this->chart_interval 0;
                
$min_date             strtotimedate'Y-m-01'$this->start_date ) );

                
// phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
                
while ( ( $min_date strtotime'+1 MONTH'$min_date ) ) <= $this->end_date ) {
                    
$this->chart_interval ++;
                }

                
$this->barwidth 60 60 24 1000;
                break;
        }

        
// phpcs:enable WordPress.Security.NonceVerification.Recommended
        // phpcs:enable WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested
    
}

    
/**
     * Return currency tooltip JS based on WooCommerce currency position settings.
     *
     * @return string
     */
    
public function get_currency_tooltip() {
        switch ( 
get_option'woocommerce_currency_pos' ) ) {
            case 
'right':
                
$currency_tooltip 'append_tooltip: "' get_woocommerce_currency_symbol() . '"';
                break;
            case 
'right_space':
                
$currency_tooltip 'append_tooltip: "&nbsp;' get_woocommerce_currency_symbol() . '"';
                break;
            case 
'left':
                
$currency_tooltip 'prepend_tooltip: "' get_woocommerce_currency_symbol() . '"';
                break;
            case 
'left_space':
            default:
                
$currency_tooltip 'prepend_tooltip: "' get_woocommerce_currency_symbol() . '&nbsp;"';
                break;
        }

        return 
$currency_tooltip;
    }

    
/**
     * Get the main chart.
     */
    
public function get_main_chart() {}

    
/**
     * Get the legend for the main chart sidebar.
     *
     * @return array
     */
    
public function get_chart_legend() {
        return array();
    }

    
/**
     * Get chart widgets.
     *
     * @return array
     */
    
public function get_chart_widgets() {
        return array();
    }

    
/**
     * Get an export link if needed.
     */
    
public function get_export_button() {}

    
/**
     * Output the report.
     */
    
public function output_report() {}

    
/**
     * Check nonce for current range.
     *
     * @since  3.0.4
     * @param  string $current_range Current range.
     */
    
public function check_current_range_nonce$current_range ) {
        if ( 
'custom' !== $current_range ) {
            return;
        }

        if ( ! isset( 
$_GET['wc_reports_nonce'] ) || ! wp_verify_noncesanitize_key$_GET['wc_reports_nonce'] ), 'custom_range' ) ) {
            
// phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotValidated
            
wp_die(
                
/* translators: %1$s: open link, %2$s: close link */
                
sprintfesc_html__'This report link has expired. %1$sClick here to view the filtered report%2$s.''woocommerce' ), '<a href="' esc_urlwp_nonce_urlesc_url_rawwp_unslash$_SERVER['REQUEST_URI'] ) ), 'custom_range''wc_reports_nonce' ) ) . '">''</a>' ),
                
esc_attr__'Confirm navigation''woocommerce' )
            );
            
// phpcs:enable WordPress.Security.ValidatedSanitizedInput.InputNotValidated
            
exit;
        }
    }
}