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;
|
2015-05-17 10:54:13 -05:00
|
|
|
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;
|
2016-01-29 10:08:06 -06:00
|
|
|
use FireflyIII\Helpers\FiscalHelperInterface;
|
2015-05-17 10:54:13 -05:00
|
|
|
use FireflyIII\Models\Bill;
|
2016-04-26 02:21:57 -05:00
|
|
|
use FireflyIII\Models\Category;
|
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-05-02 13:49:19 -05:00
|
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
2016-01-15 14:50:57 -06:00
|
|
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
2016-05-02 13:49:19 -05:00
|
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
2016-01-15 14:50:57 -06:00
|
|
|
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
2016-04-01 02:13:50 -05:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Query\JoinClause;
|
2015-12-06 06:11:43 -06:00
|
|
|
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
|
|
|
*
|
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
|
|
|
}
|
|
|
|
|
2015-12-11 09:36:40 -06: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.
|
2015-12-11 09:36:40 -06:00
|
|
|
*
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
2016-01-19 06:59:54 -06:00
|
|
|
* @return BillCollection
|
2015-12-11 09:36:40 -06:00
|
|
|
*/
|
2016-04-06 09:37:28 -05:00
|
|
|
public function getBillReport(Carbon $start, Carbon $end, Collection $accounts): BillCollection
|
2015-12-11 09:36:40 -06:00
|
|
|
{
|
2016-05-02 13:49:19 -05:00
|
|
|
/** @var BillRepositoryInterface $repository */
|
|
|
|
$repository = app(BillRepositoryInterface::class);
|
2016-01-19 06:59:54 -06:00
|
|
|
$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);
|
2016-04-28 03:59:36 -05:00
|
|
|
$billLine->setActive(intval($bill->active) === 1);
|
2016-01-19 06:59:54 -06:00
|
|
|
$billLine->setMin($bill->amount_min);
|
|
|
|
$billLine->setMax($bill->amount_max);
|
2016-04-27 12:21:47 -05:00
|
|
|
$billLine->setHit(false);
|
2016-01-19 06:59:54 -06:00
|
|
|
// is hit in period?
|
|
|
|
|
|
|
|
$entry = $journals->filter(
|
|
|
|
function (TransactionJournal $journal) use ($bill) {
|
2016-02-06 13:17:55 -06:00
|
|
|
return $journal->bill_id === $bill->id;
|
2016-01-19 06:59:54 -06:00
|
|
|
}
|
|
|
|
);
|
2016-02-06 13:17:55 -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);
|
|
|
|
}
|
2016-04-28 03:59:36 -05:00
|
|
|
|
|
|
|
if ($billLine->isHitAndActive()) {
|
2016-02-04 01:55:06 -06:00
|
|
|
$collection->addBill($billLine);
|
|
|
|
}
|
2015-12-11 09:36:40 -06:00
|
|
|
}
|
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
return $collection;
|
2015-12-11 09:36:40 -06:00
|
|
|
}
|
2015-12-11 10:53:17 -06:00
|
|
|
|
2016-04-26 23:19:13 -05:00
|
|
|
/**
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
|
|
|
public function getCategoriesWithExpenses(Carbon $start, Carbon $end, Collection $accounts): Collection
|
|
|
|
{
|
2016-05-02 13:49:19 -05:00
|
|
|
/** @var CategoryRepositoryInterface $repository */
|
|
|
|
$repository = app(CategoryRepositoryInterface::class);
|
2016-04-26 23:19:13 -05:00
|
|
|
$collection = $repository->earnedForAccountsPerMonth($accounts, $start, $end);
|
|
|
|
$second = $repository->spentForAccountsPerMonth($accounts, $start, $end);
|
|
|
|
$collection = $collection->merge($second);
|
|
|
|
$array = [];
|
|
|
|
/** @var Category $category */
|
|
|
|
foreach ($collection as $category) {
|
|
|
|
$id = $category->id;
|
|
|
|
$array[$id] = $category;
|
|
|
|
|
|
|
|
}
|
|
|
|
$set = new Collection($array);
|
|
|
|
|
2016-04-27 03:38:51 -05:00
|
|
|
$set = $set->sortBy(
|
2016-04-26 23:19:13 -05:00
|
|
|
function (Category $category) {
|
|
|
|
return $category->name;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return $set;
|
|
|
|
}
|
|
|
|
|
2015-12-11 11:45:39 -06:00
|
|
|
/**
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
2016-01-19 06:59:54 -06:00
|
|
|
* @return CategoryCollection
|
2015-12-11 11:45:39 -06:00
|
|
|
*/
|
2016-04-06 09:37:28 -05:00
|
|
|
public function getCategoryReport(Carbon $start, Carbon $end, Collection $accounts): CategoryCollection
|
2015-12-11 11:45:39 -06:00
|
|
|
{
|
2016-01-19 06:59:54 -06:00
|
|
|
$object = new CategoryCollection;
|
2015-12-11 11:45:39 -06:00
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
/**
|
|
|
|
* GET CATEGORIES:
|
|
|
|
*/
|
|
|
|
/** @var \FireflyIII\Repositories\Category\CategoryRepositoryInterface $repository */
|
2016-05-02 13:49:19 -05:00
|
|
|
$repository = app(CategoryRepositoryInterface::class);
|
2015-12-11 11:45:39 -06:00
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
$set = $repository->spentForAccountsPerMonth($accounts, $start, $end);
|
|
|
|
foreach ($set as $category) {
|
|
|
|
$object->addCategory($category);
|
2015-12-11 11:45:39 -06:00
|
|
|
}
|
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
return $object;
|
|
|
|
}
|
2015-12-11 11:45:39 -06:00
|
|
|
|
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-04-06 09:37:28 -05:00
|
|
|
public function getExpenseReport(Carbon $start, Carbon $end, Collection $accounts): Expense
|
2016-01-19 06:59:54 -06:00
|
|
|
{
|
|
|
|
$object = new Expense;
|
|
|
|
$set = $this->query->expense($accounts, $start, $end);
|
2015-12-11 11:45:39 -06:00
|
|
|
|
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;
|
2015-12-11 11:45:39 -06:00
|
|
|
}
|
2015-12-12 03:33:19 -06:00
|
|
|
|
|
|
|
/**
|
2016-01-19 06:59:54 -06:00
|
|
|
* Get a full report on the users incomes during the period for the given accounts.
|
2015-12-12 03:33:19 -06:00
|
|
|
*
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
2016-01-19 06:59:54 -06:00
|
|
|
* @return Income
|
2015-12-12 03:33:19 -06:00
|
|
|
*/
|
2016-04-06 09:37:28 -05:00
|
|
|
public function getIncomeReport(Carbon $start, Carbon $end, Collection $accounts): Income
|
2015-12-12 03:33:19 -06:00
|
|
|
{
|
2016-01-19 06:59:54 -06:00
|
|
|
$object = new Income;
|
|
|
|
$set = $this->query->income($accounts, $start, $end);
|
2015-12-12 03:33:19 -06:00
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
foreach ($set as $entry) {
|
|
|
|
$object->addToTotal($entry->journalAmount);
|
|
|
|
$object->addOrCreateIncome($entry);
|
|
|
|
}
|
2015-12-12 03:33:19 -06:00
|
|
|
|
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
|
|
|
|
*/
|
2016-04-06 09:37:28 -05:00
|
|
|
public function listOfMonths(Carbon $date): array
|
2016-01-19 06:59:54 -06:00
|
|
|
{
|
2016-01-29 10:08:06 -06:00
|
|
|
/** @var FiscalHelperInterface $fiscalHelper */
|
2016-05-02 13:49:19 -05:00
|
|
|
$fiscalHelper = app(FiscalHelperInterface::class);
|
2016-01-29 10:09:23 -06:00
|
|
|
$start = clone $date;
|
2016-02-05 21:32:30 -06:00
|
|
|
$start->startOfMonth();
|
|
|
|
$end = Carbon::now();
|
|
|
|
$end->endOfMonth();
|
|
|
|
$months = [];
|
2015-12-12 03:33:19 -06:00
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
while ($start <= $end) {
|
2016-04-27 12:21:47 -05:00
|
|
|
$year = $fiscalHelper->endOfFiscalYear($start)->year; // current year
|
2016-01-19 06:59:54 -06:00
|
|
|
if (!isset($months[$year])) {
|
|
|
|
$months[$year] = [
|
2016-01-29 10:13:54 -06:00
|
|
|
'fiscal_start' => $fiscalHelper->startOfFiscalYear($start)->format('Y-m-d'),
|
|
|
|
'fiscal_end' => $fiscalHelper->endOfFiscalYear($start)->format('Y-m-d'),
|
2016-01-29 10:09:23 -06:00
|
|
|
'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
|
|
|
];
|
|
|
|
}
|
2015-12-12 03:33:19 -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,
|
|
|
|
];
|
2016-02-05 21:32:30 -06:00
|
|
|
|
2016-04-27 12:21:47 -05:00
|
|
|
$start = clone $currentEnd; // to make the hop to the next month properly
|
2016-02-05 21:32:30 -06:00
|
|
|
$start->addDay();
|
2015-12-12 03:33:19 -06:00
|
|
|
}
|
|
|
|
|
2016-01-19 06:59:54 -06:00
|
|
|
return $months;
|
2015-12-12 03:33:19 -06:00
|
|
|
}
|
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;
|
|
|
|
}
|
2016-04-01 06:23:12 -05:00
|
|
|
/** @var Tag $entry */
|
2016-03-01 14:31:25 -06:00
|
|
|
foreach ($set as $entry) {
|
|
|
|
// less than zero? multiply to be above zero.
|
2016-04-28 09:30:21 -05:00
|
|
|
$amount = $entry->amount;
|
|
|
|
$id = intval($entry->id);
|
|
|
|
$previousAmount = $collection[$id]['amount'] ?? '0';
|
|
|
|
$collection[$id] = [
|
|
|
|
'id' => $id,
|
|
|
|
'tag' => $entry->tag,
|
|
|
|
'amount' => bcadd($previousAmount, $amount),
|
|
|
|
];
|
2016-03-01 14:31:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
2016-01-09 01:20:55 -06:00
|
|
|
}
|