-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathclass-give-stats.php
More file actions
546 lines (436 loc) · 11.8 KB
/
Copy pathclass-give-stats.php
File metadata and controls
546 lines (436 loc) · 11.8 KB
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
<?php
/**
* Stats
*
* @package Give
* @subpackage Classes/Give_Stats
* @copyright Copyright (c) 2016, Give
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @since 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Give_Stats Class
*
* Base class for other stats classes. Primarily for setting up dates and ranges.
*
* @since 1.0
*/
class Give_Stats {
/**
* The start date for the period we're getting stats for
*
* Can be a timestamp, formatted date, date string (such as August 3, 2013),
* or a predefined date string, such as last_week or this_month
*
* Predefined date options are: today, yesterday, this_week, last_week, this_month, last_month
* this_quarter, last_quarter, this_year, last_year
*
* @since 1.0
* @access public
*
* @var string
*/
public $start_date;
/**
* The end date for the period we're getting stats for
*
* Can be a timestamp, formatted date, date string (such as August 3, 2013),
* or a predefined date string, such as last_week or this_month
*
* Predefined date options are: today, yesterday, this_week, last_week, this_month, last_month
* this_quarter, last_quarter, this_year, last_year
*
* The end date is optional
*
* @since 1.0
* @access public
*
* @var string
*/
public $end_date;
/**
* Flag to determine if current query is based on timestamps
*
* @since 1.0
* @access public
*
* @var string
*/
public $timestamp;
/**
* Class Constructor
*
* Set up the Give Stats Class.
*
* @since 1.0
* @access public
*
* @return void
*/
public function __construct() {
/* nothing here. Call get_sales() and get_earnings() directly */
}
/**
* Get Predefined Dates
*
* Retrieve the predefined date periods permitted.
*
* @since 1.0
* @access public
*
* @return array Predefined dates.
*/
public function get_predefined_dates() {
$predefined = array(
'today' => esc_html__( 'Today', 'give' ),
'yesterday' => esc_html__( 'Yesterday', 'give' ),
'this_week' => esc_html__( 'This Week', 'give' ),
'last_week' => esc_html__( 'Last Week', 'give' ),
'this_month' => esc_html__( 'This Month', 'give' ),
'last_month' => esc_html__( 'Last Month', 'give' ),
'this_quarter' => esc_html__( 'This Quarter', 'give' ),
'last_quarter' => esc_html__( 'Last Quarter', 'give' ),
'this_year' => esc_html__( 'This Year', 'give' ),
'last_year' => esc_html__( 'Last Year', 'give' ),
);
return apply_filters( 'give_stats_predefined_dates', $predefined );
}
/**
* Setup the dates passed to our constructor.
*
* This calls the convert_date() member function to ensure the dates are formatted correctly.
*
* @since 1.0
* @access public
*
* @param string $_start_date Start date. Default is 'this_month'.
* @param bool $_end_date End date. Default is false.
*
* @return void
*/
public function setup_dates( $_start_date = 'this_month', $_end_date = false ) {
if ( empty( $_start_date ) ) {
$_start_date = 'this_month';
}
if ( empty( $_end_date ) ) {
$_end_date = $_start_date;
}
$this->start_date = $this->convert_date( $_start_date );
$this->end_date = $this->convert_date( $_end_date, true );
}
/**
* Convert Date
*
* Converts a date to a timestamp.
*
* @since 1.0
* @access public
*
* @param string $date Date.
* @param bool $end_date End date. Default is false.
*
* @return array|WP_Error If the date is invalid, a WP_Error object will be returned.
*/
public function convert_date( $date, $end_date = false ) {
$this->timestamp = false;
$second = $end_date ? 59 : 0;
$minute = $end_date ? 59 : 0;
$hour = $end_date ? 23 : 0;
$day = 1;
$month = date( 'n', current_time( 'timestamp' ) );
$year = date( 'Y', current_time( 'timestamp' ) );
if ( array_key_exists( (string) $date, $this->get_predefined_dates() ) ) {
// This is a predefined date rate, such as last_week
switch ( $date ) {
case 'this_month':
if ( $end_date ) {
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
break;
case 'last_month':
if ( $month == 1 ) {
$month = 12;
$year --;
} else {
$month --;
}
if ( $end_date ) {
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
}
break;
case 'today':
$day = date( 'd', current_time( 'timestamp' ) );
if ( $end_date ) {
$hour = 23;
$minute = 59;
$second = 59;
}
break;
case 'yesterday':
$day = date( 'd', current_time( 'timestamp' ) ) - 1;
// Check if Today is the first day of the month (meaning subtracting one will get us 0)
if ( $day < 1 ) {
// If current month is 1
if ( 1 == $month ) {
$year -= 1; // Today is January 1, so skip back to last day of December
$month = 12;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
} else {
// Go back one month and get the last day of the month
$month -= 1;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
}
}
break;
case 'this_week':
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
$today = date( 'j', current_time( 'timestamp' ) ) * 60 * 60 * 24;
if ( $today <= $days_to_week_start ) {
if ( $month > 1 ) {
$month -= 1;
} else {
$month = 12;
}
}
if ( ! $end_date ) {
// Getting the start day
$day = date( 'd', current_time( 'timestamp' ) - $days_to_week_start ) - 1;
$day += get_option( 'start_of_week' );
} else {
// Getting the end day
$day = date( 'd', current_time( 'timestamp' ) - $days_to_week_start ) - 1;
$day += get_option( 'start_of_week' ) + 6;
}
break;
case 'last_week':
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
$today = date( 'j', current_time( 'timestamp' ) ) * 60 * 60 * 24;
if ( $today <= $days_to_week_start ) {
if ( $month > 1 ) {
$month -= 1;
} else {
$month = 12;
}
}
if ( ! $end_date ) {
// Getting the start day
$day = date( 'd', current_time( 'timestamp' ) - $days_to_week_start ) - 8;
$day += get_option( 'start_of_week' );
} else {
// Getting the end day
$day = date( 'd', current_time( 'timestamp' ) - $days_to_week_start ) - 8;
$day += get_option( 'start_of_week' ) + 6;
}
break;
case 'this_quarter':
$month_now = date( 'n', current_time( 'timestamp' ) );
if ( $month_now <= 3 ) {
if ( ! $end_date ) {
$month = 1;
} else {
$month = 3;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} elseif ( $month_now <= 6 ) {
if ( ! $end_date ) {
$month = 4;
} else {
$month = 6;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} elseif ( $month_now <= 9 ) {
if ( ! $end_date ) {
$month = 7;
} else {
$month = 9;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} else {
if ( ! $end_date ) {
$month = 10;
} else {
$month = 12;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
}
break;
case 'last_quarter':
$month_now = date( 'n', current_time( 'timestamp' ) );
if ( $month_now <= 3 ) {
if ( ! $end_date ) {
$month = 10;
} else {
$year -= 1;
$month = 12;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} elseif ( $month_now <= 6 ) {
if ( ! $end_date ) {
$month = 1;
} else {
$month = 3;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} elseif ( $month_now <= 9 ) {
if ( ! $end_date ) {
$month = 4;
} else {
$month = 6;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
} else {
if ( ! $end_date ) {
$month = 7;
} else {
$month = 9;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
}
break;
case 'this_year':
if ( ! $end_date ) {
$month = 1;
} else {
$month = 12;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
break;
case 'last_year':
$year -= 1;
if ( ! $end_date ) {
$month = 1;
} else {
$month = 12;
$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
$hour = 23;
$minute = 59;
$second = 59;
}
break;
}
} elseif ( is_numeric( $date ) ) {
// return $date unchanged since it is a timestamp
$this->timestamp = true;
} elseif ( false !== strtotime( $date ) ) {
$date = strtotime( $date, current_time( 'timestamp' ) );
$year = date( 'Y', $date );
$month = date( 'm', $date );
$day = date( 'd', $date );
} else {
return new WP_Error( 'invalid_date', esc_html__( 'Improper date provided.', 'give' ) );
}
if ( false === $this->timestamp ) {
// Create an exact timestamp
$date = mktime( $hour, $minute, $second, $month, $day, $year );
}
return apply_filters( 'give_stats_date', $date, $end_date, $this );
}
/**
* Count Where
*
* Modifies the WHERE flag for payment counts.
*
* @since 1.0
* @access public
*
* @param string $where SQL WHERE statment.
*
* @return string
*/
public function count_where( $where = '' ) {
// Only get payments in our date range
$start_where = '';
$end_where = '';
if ( $this->start_date ) {
if ( $this->timestamp ) {
$format = 'Y-m-d H:i:s';
} else {
$format = 'Y-m-d 00:00:00';
}
$start_date = date( $format, $this->start_date );
$start_where = " AND p.post_date >= '{$start_date}'";
}
if ( $this->end_date ) {
if ( $this->timestamp ) {
$format = 'Y-m-d H:i:s';
} else {
$format = 'Y-m-d 23:59:59';
}
$end_date = date( $format, $this->end_date );
$end_where = " AND p.post_date <= '{$end_date}'";
}
$where .= "{$start_where}{$end_where}";
return $where;
}
/**
* Payment Where
*
* Modifies the WHERE flag for payment queries.
*
* @since 1.0
* @access public
*
* @param string $where SQL WHERE statment.
*
* @return string
*/
public function payments_where( $where = '' ) {
global $wpdb;
$start_where = '';
$end_where = '';
if ( ! is_wp_error( $this->start_date ) ) {
if ( $this->timestamp ) {
$format = 'Y-m-d H:i:s';
} else {
$format = 'Y-m-d 00:00:00';
}
$start_date = date( $format, $this->start_date );
$start_where = " AND $wpdb->posts.post_date >= '{$start_date}'";
}
if ( ! is_wp_error( $this->end_date ) ) {
if ( $this->timestamp ) {
$format = 'Y-m-d H:i:s';
} else {
$format = 'Y-m-d 23:59:59';
}
$end_date = date( $format, $this->end_date );
$end_where = " AND $wpdb->posts.post_date <= '{$end_date}'";
}
$where .= "{$start_where}{$end_where}";
return $where;
}
}