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

315 lines
11 KiB
PHP
Raw Normal View History

2015-02-23 13:25:48 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2015-02-23 13:25:48 -06:00
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-03-01 14:31:25 -06:00
use FireflyIII\Models\Tag;
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;
2016-04-01 02:13:50 -05:00
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Query\JoinClause;
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?
$entry = $journals->filter(
function (TransactionJournal $journal) use ($bill) {
return $journal->bill_id === $bill->id;
2016-01-19 06:59:54 -06:00
}
);
$first = $entry->first();
if (!is_null($first)) {
$billLine->setTransactionJournalId($first->id);
$billLine->setAmount($first->journalAmount);
2016-01-19 06:59:54 -06:00
$billLine->setHit(true);
} else {
$billLine->setHit(false);
}
2016-02-04 01:56:33 -06:00
if (!(!$billLine->isHit() && !$billLine->isActive())) {
$collection->addBill($billLine);
}
2016-01-19 06:59:54 -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
*/
2016-02-05 02:25:15 -06:00
public function getExpenseReport(Carbon $start, Carbon $end, Collection $accounts)
2016-01-19 06:59:54 -06:00
{
$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-02-05 02:25:15 -06:00
public function getIncomeReport(Carbon $start, Carbon $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;
2016-02-05 21:32:30 -06:00
$start->startOfMonth();
$end = Carbon::now();
$end->endOfMonth();
$months = [];
2016-01-19 06:59:54 -06:00
while ($start <= $end) {
2016-02-05 21:32:30 -06:00
// current year:
$year = $fiscalHelper->endOfFiscalYear($start)->year;
2016-01-19 06:59:54 -06:00
if (!isset($months[$year])) {
$months[$year] = [
'fiscal_start' => $fiscalHelper->startOfFiscalYear($start)->format('Y-m-d'),
'fiscal_end' => $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();
2016-02-05 21:32:30 -06:00
2016-01-19 06:59:54 -06:00
$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,
];
2016-02-05 21:32:30 -06:00
// to make the hop to the next month properly:
$start = clone $currentEnd;
$start->addDay();
}
2016-01-19 06:59:54 -06:00
return $months;
}
2016-01-01 06:54:23 -06:00
2016-03-01 14:31:25 -06:00
/**
* Returns an array of tags and their comparitive size with amounts bla bla.
*
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
* @return array
*/
public function tagReport(Carbon $start, Carbon $end, Collection $accounts): array
{
$ids = $accounts->pluck('id')->toArray();
$set = Tag::
2016-04-01 02:13:50 -05:00
leftJoin('tag_transaction_journal', 'tags.id', '=', 'tag_transaction_journal.tag_id')
2016-03-01 14:31:25 -06:00
->leftJoin('transaction_journals', 'tag_transaction_journal.transaction_journal_id', '=', 'transaction_journals.id')
2016-04-01 02:13:50 -05:00
->leftJoin(
'transactions AS source', function (JoinClause $join) {
$join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', '0');
}
)
->leftJoin(
'transactions AS destination', function (JoinClause $join) {
$join->on('destination.transaction_journal_id', '=', 'transaction_journals.id')->where('destination.amount', '>', '0');
}
)
2016-03-01 14:31:25 -06:00
->where('transaction_journals.date', '>=', $start->format('Y-m-d'))
->where('transaction_journals.date', '<=', $end->format('Y-m-d'))
2016-04-01 02:13:50 -05:00
->where(
function (Builder $q) use ($ids) {
$q->whereIn('source.account_id', $ids)
->whereIn('destination.account_id', $ids, 'xor');
}
)
->get(['tags.id', 'tags.tag', 'transaction_journals.id as journal_id', 'destination.amount']);
2016-03-01 14:31:25 -06:00
$collection = [];
if ($set->count() === 0) {
return $collection;
}
foreach ($set as $entry) {
// less than zero? multiply to be above zero.
$amount = $entry->amount;
2016-04-01 02:13:50 -05:00
$id = intval($entry->id);
2016-03-01 14:31:25 -06:00
if (!isset($collection[$id])) {
$collection[$id] = [
'id' => $id,
'tag' => $entry->tag,
'amount' => $amount,
];
} else {
$collection[$id]['amount'] = bcadd($collection[$id]['amount'], $amount);
}
}
// cleanup collection (match "fonts")
$max = strval(max(array_column($collection, 'amount')));
foreach ($collection as $id => $entry) {
$size = bcdiv($entry['amount'], $max, 4);
if (bccomp($size, '0.25') === -1) {
$size = '0.5';
}
$collection[$id]['fontsize'] = $size;
}
return $collection;
}
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)
{
$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;
}
}