firefly-iii/app/Http/Controllers/Chart/ReportController.php

191 lines
6.0 KiB
PHP
Raw Normal View History

2015-05-16 02:09:52 -05:00
<?php
2015-05-16 02:41:14 -05:00
namespace FireflyIII\Http\Controllers\Chart;
2015-05-16 02:09:52 -05:00
use Carbon\Carbon;
use FireflyIII\Helpers\Report\ReportQueryInterface;
2015-05-16 02:41:14 -05:00
use FireflyIII\Http\Controllers\Controller;
2015-06-27 04:44:18 -05:00
use FireflyIII\Support\CacheProperties;
use Illuminate\Support\Collection;
2015-05-16 02:09:52 -05:00
use Response;
/**
2015-05-16 02:41:14 -05:00
* Class ReportController
2015-05-16 02:09:52 -05:00
*
2015-05-16 02:41:14 -05:00
* @package FireflyIII\Http\Controllers\Chart
2015-05-16 02:09:52 -05:00
*/
2015-05-16 02:41:14 -05:00
class ReportController extends Controller
2015-05-16 02:09:52 -05:00
{
2015-06-27 04:44:18 -05:00
/** @var \FireflyIII\Generator\Chart\Report\ReportChartGenerator */
protected $generator;
/**
2015-06-28 03:03:34 -05:00
* @codeCoverageIgnore
2015-06-27 04:44:18 -05:00
*/
public function __construct()
{
parent::__construct();
// create chart generator:
2015-07-07 12:09:45 -05:00
$this->generator = app('FireflyIII\Generator\Chart\Report\ReportChartGenerator');
2015-06-27 04:44:18 -05:00
}
2015-05-16 02:09:52 -05:00
/**
* Summarizes all income and expenses, per month, for a given year.
*
* @param ReportQueryInterface $query
2015-12-28 13:04:54 -06:00
* @param $reportType
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
2015-05-16 02:09:52 -05:00
*
* @return \Illuminate\Http\JsonResponse
2015-05-16 02:09:52 -05:00
*/
2015-12-28 13:04:54 -06:00
public function yearInOut(ReportQueryInterface $query, $reportType, Carbon $start, Carbon $end, Collection $accounts)
2015-05-16 02:09:52 -05:00
{
2015-06-27 04:44:18 -05:00
// chart properties for cache:
$cache = new CacheProperties;
$cache->addProperty('yearInOut');
$cache->addProperty($start);
2016-01-01 14:49:27 -06:00
$cache->addProperty($reportType);
2015-12-12 14:20:20 -06:00
$cache->addProperty($accounts);
$cache->addProperty($end);
2015-06-27 04:44:18 -05:00
if ($cache->has()) {
2015-06-27 15:22:27 -05:00
return Response::json($cache->get()); // @codeCoverageIgnore
2015-06-27 04:44:18 -05:00
}
2015-05-16 02:09:52 -05:00
2015-12-31 01:26:04 -06:00
// spent per month, and earned per month. For a specific set of accounts
// grouped by month
$spentArray = $query->spentPerMonth($accounts, $start, $end);
$earnedArray = $query->earnedPerMonth($accounts, $start, $end);
2015-12-14 14:11:57 -06:00
2015-12-31 01:26:04 -06:00
// per year? put all months together.
2015-12-14 14:11:57 -06:00
if ($start->diffInMonths($end) > 12) {
$entries = new Collection;
while ($start < $end) {
2015-12-31 01:26:04 -06:00
$incomeSum = $this->pluckFromArray($start->year, $earnedArray);
$expenseSum = $this->pluckFromArray($start->year, $spentArray) * -1;
2015-12-14 14:11:57 -06:00
$entries->push([clone $start, $incomeSum, $expenseSum]);
$start->addYear();
}
$data = $this->generator->multiYearInOut($entries);
$cache->store($data);
} else {
2015-12-31 01:26:04 -06:00
// per month? simply use each month.
2015-12-14 14:11:57 -06:00
$entries = new Collection;
while ($start < $end) {
// total income and total expenses:
2015-12-31 01:26:04 -06:00
$date = $start->format('Y-m');
$incomeSum = isset($earnedArray[$date]) ? $earnedArray[$date] : 0;
2015-12-31 01:36:01 -06:00
$expenseSum = isset($spentArray[$date]) ? ($spentArray[$date] * -1) : 0;
2015-12-14 14:11:57 -06:00
$entries->push([clone $start, $incomeSum, $expenseSum]);
$start->addMonth();
}
$data = $this->generator->yearInOut($entries);
$cache->store($data);
2015-05-16 02:09:52 -05:00
}
2015-06-27 04:44:18 -05:00
return Response::json($data);
2015-05-16 02:09:52 -05:00
}
/**
* Summarizes all income and expenses for a given year. Gives a total and an average.
*
* @param ReportQueryInterface $query
2015-12-28 13:04:54 -06:00
* @param $reportType
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
2015-05-16 02:09:52 -05:00
*
* @return \Illuminate\Http\JsonResponse
2015-05-16 02:09:52 -05:00
*/
2015-12-28 13:04:54 -06:00
public function yearInOutSummarized(ReportQueryInterface $query, $reportType, Carbon $start, Carbon $end, Collection $accounts)
2015-05-16 02:09:52 -05:00
{
2015-06-27 04:44:18 -05:00
// chart properties for cache:
$cache = new CacheProperties;
$cache->addProperty('yearInOutSummarized');
$cache->addProperty($start);
$cache->addProperty($end);
2016-01-01 14:49:27 -06:00
$cache->addProperty($reportType);
$cache->addProperty($accounts);
2015-06-27 04:44:18 -05:00
if ($cache->has()) {
2015-06-27 15:22:27 -05:00
return Response::json($cache->get()); // @codeCoverageIgnore
2015-06-27 04:44:18 -05:00
}
2015-12-31 01:36:01 -06:00
// spent per month, and earned per month. For a specific set of accounts
// grouped by month
$spentArray = $query->spentPerMonth($accounts, $start, $end);
$earnedArray = $query->earnedPerMonth($accounts, $start, $end);
$income = '0';
$expense = '0';
$count = 0;
2015-05-16 02:09:52 -05:00
2015-06-27 04:44:18 -05:00
bcscale(2);
2015-05-16 02:09:52 -05:00
2015-12-14 14:11:57 -06:00
if ($start->diffInMonths($end) > 12) {
// per year
while ($start < $end) {
2015-12-31 01:36:01 -06:00
$currentIncome = $this->pluckFromArray($start->year, $earnedArray);
$currentExpense = $this->pluckFromArray($start->year, $spentArray) * -1;
2015-12-14 14:11:57 -06:00
$income = bcadd($income, $currentIncome);
$expense = bcadd($expense, $currentExpense);
$count++;
$start->addYear();
}
$data = $this->generator->multiYearInOutSummarized($income, $expense, $count);
$cache->store($data);
} else {
// per month!
while ($start < $end) {
2015-12-31 01:36:01 -06:00
$date = $start->format('Y-m');
$currentIncome = isset($earnedArray[$date]) ? $earnedArray[$date] : 0;
$currentExpense = isset($spentArray[$date]) ? ($spentArray[$date] * -1) : 0;
2015-12-14 14:11:57 -06:00
$income = bcadd($income, $currentIncome);
$expense = bcadd($expense, $currentExpense);
$count++;
$start->addMonth();
}
$data = $this->generator->yearInOutSummarized($income, $expense, $count);
$cache->store($data);
2015-05-16 02:09:52 -05:00
}
2015-06-27 04:44:18 -05:00
return Response::json($data);
2015-05-16 02:09:52 -05:00
}
2015-12-31 01:26:04 -06:00
/**
* @param int $year
* @param array $set
*
* @return string
*/
protected function pluckFromArray($year, array $set)
{
bcscale(2);
$sum = '0';
foreach ($set as $date => $amount) {
if (substr($date, 0, 4) == $year) {
$sum = bcadd($sum, $amount);
}
}
return $sum;
}
2015-05-20 12:56:14 -05:00
}