firefly-iii/app/Repositories/Shared/ComponentRepository.php

59 lines
1.8 KiB
PHP
Raw Normal View History

2015-06-05 03:02:40 -05:00
<?php
namespace FireflyIII\Repositories\Shared;
use Carbon\Carbon;
2015-12-27 14:17:04 -06:00
use DB;
use FireflyIII\Models\TransactionType;
2015-06-05 12:02:23 -05:00
use FireflyIII\Support\CacheProperties;
use Illuminate\Support\Collection;
2015-06-05 03:02:40 -05:00
/**
* Class ComponentRepository
*
* @package FireflyIII\Repositories\Shared
*/
class ComponentRepository
{
/**
* @param $object
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
* @return string
*/
protected function commonBalanceInPeriod($object, Carbon $start, Carbon $end, Collection $accounts)
{
$cache = new CacheProperties; // we must cache this.
$cache->addProperty($object->id);
$cache->addProperty(get_class($object));
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty($accounts);
$cache->addProperty('balanceInPeriodList');
2015-12-27 14:17:04 -06:00
if ($cache->has()) {
return $cache->get(); // @codeCoverageIgnore
}
$ids = $accounts->pluck('id')->toArray();
2015-12-27 14:17:04 -06:00
$entry = $object->transactionjournals()
->transactionTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::OPENING_BALANCE])
->before($end)
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->leftJoin('accounts', 'accounts.id', '=', 'transactions.account_id')
->whereIn('accounts.id', $ids)
->after($start)
->first([DB::Raw('SUM(`transactions`.`amount`) as `journalAmount`')]);
$amount = $entry->journalAmount;
$cache->store($amount);
2015-12-27 14:17:04 -06:00
return $amount;
}
2015-06-05 06:39:24 -05:00
}