mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 21:19:11 -06:00
5c7df5c04d
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Budget.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Support\Twig;
|
|
|
|
use Auth;
|
|
use FireflyIII\Models\LimitRepetition;
|
|
use FireflyIII\Support\CacheProperties;
|
|
use Twig_Extension;
|
|
use Twig_SimpleFunction;
|
|
|
|
/**
|
|
* Class Budget
|
|
*
|
|
* @package FireflyIII\Support\Twig
|
|
*/
|
|
class Budget extends Twig_Extension
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getFunctions(): array
|
|
{
|
|
$functions = [];
|
|
$functions[] = new Twig_SimpleFunction(
|
|
'spentInRepetition', function (LimitRepetition $repetition) {
|
|
$cache = new CacheProperties;
|
|
$cache->addProperty($repetition->id);
|
|
$cache->addProperty('spentInRepetition');
|
|
if ($cache->has()) {
|
|
return $cache->get();
|
|
}
|
|
$sum
|
|
= Auth::user()->transactionjournals()
|
|
->leftJoin('budget_transaction_journal', 'budget_transaction_journal.transaction_journal_id', '=', 'transaction_journals.id')
|
|
->leftJoin('budget_limits', 'budget_limits.budget_id', '=', 'budget_transaction_journal.budget_id')
|
|
->leftJoin('limit_repetitions', 'limit_repetitions.budget_limit_id', '=', 'budget_limits.id')
|
|
->before($repetition->enddate)
|
|
->after($repetition->startdate)
|
|
->where('limit_repetitions.id', '=', $repetition->id)
|
|
->get(['transaction_journals.*'])->sum('amount');
|
|
$cache->store($sum);
|
|
|
|
return $sum;
|
|
}
|
|
);
|
|
|
|
return $functions;
|
|
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getName(): string
|
|
{
|
|
return 'FireflyIII\Support\Twig\Budget';
|
|
}
|
|
}
|