File: /var/www/html/wpmuhibbah_err/wp-content/plugins/give/src/API/Endpoints/Reports/TotalRefunds.php
<?php
/**
* Refunds over time endpoint
*
* @package Give
*/
namespace Give\API\Endpoints\Reports;
class TotalRefunds extends Endpoint
{
protected $payments;
public function __construct()
{
$this->endpoint = 'total-refunds';
}
public function getReport($request)
{
$start = date_create($request->get_param('start'));
$end = date_create($request->get_param('end'));
$diff = date_diff($start, $end);
$data = [];
switch (true) {
case ($diff->days > 12):
$interval = round($diff->days / 12);
$data = $this->get_data($start, $end, 'P' . $interval . 'D');
break;
case ($diff->days > 5):
$data = $this->get_data($start, $end, 'P1D');
break;
case ($diff->days > 4):
$data = $this->get_data($start, $end, 'PT12H');
break;
case ($diff->days > 2):
$data = $this->get_data($start, $end, 'PT3H');
break;
case ($diff->days >= 0):
$data = $this->get_data($start, $end, 'PT1H');
break;
}
return $data;
}
public function get_data($start, $end, $intervalStr)
{
$tooltips = [];
$refunds = [];
$interval = new \DateInterval($intervalStr);
$periodStart = clone $start;
$periodEnd = clone $start;
// Subtract interval to set up period start
date_sub($periodStart, $interval);
while ($periodStart < $end) {
$refundsForPeriod = $this->get_refunds(
$periodStart->format('Y-m-d H:i:s'),
$periodEnd->format('Y-m-d H:i:s')
);
$time = $periodEnd->format('Y-m-d H:i:s');
switch ($intervalStr) {
case 'P1D':
$time = $periodStart->format('Y-m-d');
$periodLabel = $periodStart->format('l');
break;
case 'PT12H':
case 'PT3H':
case 'PT1H':
$periodLabel = $periodStart->format('D ga') . ' - ' . $periodEnd->format('D ga');
break;
default:
$periodLabel = $periodStart->format('M j, Y') . ' - ' . $periodEnd->format('M j, Y');
}
$refunds[] = [
'x' => $time,
'y' => $refundsForPeriod,
];
$tooltips[] = [
'title' => sprintf(_n('%d Donor', '%d Donors', $refundsForPeriod, 'give'), $refundsForPeriod),
'body' => __('Total Refunds', 'give'),
'footer' => $periodLabel,
];
// Add interval to set up next period
date_add($periodStart, $interval);
date_add($periodEnd, $interval);
}
if ($intervalStr === 'P1D') {
$refunds = array_slice($refunds, 1);
$tooltips = array_slice($tooltips, 1);
}
$totalRefundsForPeriod = $this->get_refunds($start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s'));
$trend = $this->get_trend($start, $end, $refunds);
$diff = date_diff($start, $end);
$info = $diff->days > 1 ? __('VS previous', 'give') . ' ' . $diff->days . ' ' . __('days', 'give') : __(
'VS previous day',
'give'
);
// Create data object to be returned, with 'highlights' object containing total and average figures to display
$data = [
'datasets' => [
[
'data' => $refunds,
'tooltips' => $tooltips,
'trend' => $trend,
'info' => $info,
'highlight' => $totalRefundsForPeriod,
],
],
];
return $data;
}
public function get_trend($start, $end, $refunds)
{
$interval = $start->diff($end);
$prevStart = clone $start;
$prevStart = date_sub($prevStart, $interval);
$prevEnd = clone $start;
$prevRefunds = $this->get_refunds($prevStart->format('Y-m-d H:i:s'), $prevEnd->format('Y-m-d H:i:s'));
$currentRefunds = $this->get_refunds($start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s'));
// Set default trend to 0
$trend = 0;
// Check that prev value and current value are > 0 (can't divide by 0)
if ($prevRefunds > 0 && $currentRefunds > 0) {
// Check if it is a percent decrease, or increase
if ($prevRefunds > $currentRefunds) {
// Calculate a percent decrease
$trend = ((($prevRefunds - $currentRefunds) / $prevRefunds) * 100) * -1;
} elseif ($currentRefunds > $prevRefunds) {
// Calculate a percent increase
$trend = (($currentRefunds - $prevRefunds) / $prevRefunds) * 100;
}
}
return $trend;
}
public function get_refunds($startStr, $endStr)
{
$paymentObjects = $this->getPayments($startStr, $endStr);
$refunds = 0;
foreach ($paymentObjects as $paymentObject) {
if ($paymentObject->status == 'refunded' && $paymentObject->date >= $startStr && $paymentObject->date < $endStr) {
$refunds += 1;
}
}
return $refunds;
}
}