firefly-iii/app/Helpers/Report/ReportHelper.php

237 lines
7.3 KiB
PHP
Raw Normal View History

2015-02-23 13:25:48 -06:00
<?php
namespace FireflyIII\Helpers\Report;
use Carbon\Carbon;
use FireflyIII\Helpers\Collection\Bill as BillCollection;
use FireflyIII\Helpers\Collection\BillLine;
2015-05-16 06:53:08 -05:00
use FireflyIII\Helpers\Collection\Category as CategoryCollection;
2015-05-16 06:06:38 -05:00
use FireflyIII\Helpers\Collection\Expense;
use FireflyIII\Helpers\Collection\Income;
use FireflyIII\Helpers\FiscalHelperInterface;
use FireflyIII\Models\Bill;
2016-01-01 12:46:12 -06:00
use FireflyIII\Models\TransactionJournal;
2016-01-15 14:50:57 -06:00
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
use Illuminate\Support\Collection;
2015-02-23 13:25:48 -06:00
/**
* Class ReportHelper
*
* @package FireflyIII\Helpers\Report
*/
class ReportHelper implements ReportHelperInterface
{
2016-01-15 14:50:57 -06:00
/** @var BudgetRepositoryInterface */
protected $budgetRepository;
2016-01-19 06:59:54 -06:00
/** @var ReportQueryInterface */
protected $query;
2016-01-15 14:50:57 -06:00
/** @var TagRepositoryInterface */
protected $tagRepository;
2015-05-16 06:06:38 -05:00
/**
2016-01-15 15:13:38 -06:00
* ReportHelper constructor.
2015-05-23 01:51:24 -05:00
*
2016-01-15 15:13:38 -06:00
* @codeCoverageIgnore
2015-05-17 02:18:44 -05:00
*
2016-01-15 15:13:38 -06:00
* @param ReportQueryInterface $query
* @param BudgetRepositoryInterface $budgetRepository
* @param TagRepositoryInterface $tagRepository
2015-05-16 06:06:38 -05:00
*/
2016-01-15 14:50:57 -06:00
public function __construct(ReportQueryInterface $query, BudgetRepositoryInterface $budgetRepository, TagRepositoryInterface $tagRepository)
2015-05-16 06:06:38 -05:00
{
2016-01-15 14:50:57 -06:00
$this->query = $query;
$this->budgetRepository = $budgetRepository;
$this->tagRepository = $tagRepository;
2015-05-16 06:06:38 -05:00
}
/**
2016-01-19 06:59:54 -06:00
* This method generates a full report for the given period on all
* the users bills and their payments.
*
* Excludes bills which have not had a payment on the mentioned accounts.
*
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
2016-01-19 06:59:54 -06:00
* @return BillCollection
*/
2016-01-19 06:59:54 -06:00
public function getBillReport(Carbon $start, Carbon $end, Collection $accounts)
{
2016-01-19 06:59:54 -06:00
/** @var \FireflyIII\Repositories\Bill\BillRepositoryInterface $repository */
$repository = app('FireflyIII\Repositories\Bill\BillRepositoryInterface');
$bills = $repository->getBillsForAccounts($accounts);
$journals = $repository->getAllJournalsInRange($bills, $start, $end);
$collection = new BillCollection;
/** @var Bill $bill */
foreach ($bills as $bill) {
$billLine = new BillLine;
$billLine->setBill($bill);
$billLine->setActive(intval($bill->active) == 1);
$billLine->setMin($bill->amount_min);
$billLine->setMax($bill->amount_max);
// is hit in period?
bcscale(2);
$entry = $journals->filter(
function (TransactionJournal $journal) use ($bill) {
return $journal->bill_id == $bill->id;
}
);
if (!is_null($entry->first())) {
$billLine->setAmount($entry->first()->journalAmount);
$billLine->setHit(true);
} else {
$billLine->setHit(false);
}
$collection->addBill($billLine);
2015-12-31 13:12:49 -06:00
}
2016-01-19 06:59:54 -06:00
return $collection;
}
/**
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
2016-01-19 06:59:54 -06:00
* @return CategoryCollection
*/
2016-01-19 06:59:54 -06:00
public function getCategoryReport(Carbon $start, Carbon $end, Collection $accounts)
{
2016-01-19 06:59:54 -06:00
$object = new CategoryCollection;
2016-01-19 06:59:54 -06:00
/**
* GET CATEGORIES:
*/
/** @var \FireflyIII\Repositories\Category\CategoryRepositoryInterface $repository */
$repository = app('FireflyIII\Repositories\Category\CategoryRepositoryInterface');
2016-01-19 06:59:54 -06:00
$set = $repository->spentForAccountsPerMonth($accounts, $start, $end);
foreach ($set as $category) {
$object->addCategory($category);
}
2016-01-19 06:59:54 -06:00
return $object;
}
2016-01-19 06:59:54 -06:00
/**
* Get a full report on the users expenses during the period for a list of accounts.
*
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
* @return Expense
*/
public function getExpenseReport($start, $end, Collection $accounts)
{
$object = new Expense;
$set = $this->query->expense($accounts, $start, $end);
2016-01-19 06:59:54 -06:00
foreach ($set as $entry) {
$object->addToTotal($entry->journalAmount); // can be positive, if it's a transfer
$object->addOrCreateExpense($entry);
}
return $object;
}
/**
2016-01-19 06:59:54 -06:00
* Get a full report on the users incomes during the period for the given accounts.
*
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
2016-01-19 06:59:54 -06:00
* @return Income
*/
2016-01-19 06:59:54 -06:00
public function getIncomeReport($start, $end, Collection $accounts)
{
2016-01-19 06:59:54 -06:00
$object = new Income;
$set = $this->query->income($accounts, $start, $end);
2016-01-19 06:59:54 -06:00
foreach ($set as $entry) {
$object->addToTotal($entry->journalAmount);
$object->addOrCreateIncome($entry);
}
2016-01-19 06:59:54 -06:00
return $object;
}
2016-01-01 14:07:15 -06:00
2016-01-19 06:59:54 -06:00
/**
* @param Carbon $date
*
* @return array
*/
public function listOfMonths(Carbon $date)
{
/** @var FiscalHelperInterface $fiscalHelper */
$fiscalHelper = app('FireflyIII\Helpers\FiscalHelperInterface');
$start = clone $date;
$end = Carbon::now();
$months = [];
2016-01-19 06:59:54 -06:00
while ($start <= $end) {
$year = $fiscalHelper->endOfFiscalYear($start)->year;
2016-01-19 06:59:54 -06:00
if (!isset($months[$year])) {
$months[$year] = [
'start-fiscal' => $fiscalHelper->startOfFiscalYear($start)->format('Y-m-d'),
'end-fiscal' => $fiscalHelper->endOfFiscalYear($start)->format('Y-m-d'),
'start' => Carbon::createFromDate($year, 1, 1)->format('Y-m-d'),
'end' => Carbon::createFromDate($year, 12, 31)->format('Y-m-d'),
'months' => [],
2016-01-19 06:59:54 -06:00
];
}
2016-01-19 06:59:54 -06:00
$currentEnd = clone $start;
$currentEnd->endOfMonth();
$months[$year]['months'][] = [
'formatted' => $start->formatLocalized('%B %Y'),
'start' => $start->format('Y-m-d'),
'end' => $currentEnd->format('Y-m-d'),
'month' => $start->month,
'year' => $year,
];
$start->addMonth();
}
2016-01-19 06:59:54 -06:00
return $months;
}
2016-01-01 06:54:23 -06:00
/**
* Take the array as returned by SingleCategoryRepositoryInterface::spentPerDay and SingleCategoryRepositoryInterface::earnedByDay
* and sum up everything in the array in the given range.
*
* @param Carbon $start
* @param Carbon $end
* @param array $array
*
* @return string
*/
protected function getSumOfRange(Carbon $start, Carbon $end, array $array)
{
bcscale(2);
$sum = '0';
$currentStart = clone $start; // to not mess with the original one
$currentEnd = clone $end; // to not mess with the original one
while ($currentStart <= $currentEnd) {
$date = $currentStart->format('Y-m-d');
if (isset($array[$date])) {
$sum = bcadd($sum, $array[$date]);
}
$currentStart->addDay();
}
return $sum;
}
}