2019-08-29 14:33:12 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* NoBudgetRepository.php
|
|
|
|
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
|
|
|
*
|
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Budget;
|
|
|
|
|
|
|
|
|
2019-08-30 01:15:09 -05:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
|
|
|
|
use FireflyIII\Models\TransactionType;
|
2019-08-29 14:33:12 -05:00
|
|
|
use FireflyIII\User;
|
2019-08-30 01:15:09 -05:00
|
|
|
use Illuminate\Support\Collection;
|
2019-08-29 14:33:12 -05:00
|
|
|
use Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Class NoBudgetRepository
|
|
|
|
*/
|
|
|
|
class NoBudgetRepository implements NoBudgetRepositoryInterface
|
|
|
|
{
|
|
|
|
/** @var User */
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
if ('testing' === config('app.env')) {
|
|
|
|
Log::warning(sprintf('%s should not be instantiated in the TEST environment!', get_class($this)));
|
|
|
|
die(get_class($this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-30 01:15:09 -05:00
|
|
|
/**
|
|
|
|
* @param Collection $accounts
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getNoBudgetPeriodReport(Collection $accounts, Carbon $start, Carbon $end): array
|
|
|
|
{
|
|
|
|
$carbonFormat = app('navigation')->preferredCarbonFormat($start, $end);
|
|
|
|
|
|
|
|
/** @var GroupCollectorInterface $collector */
|
|
|
|
$collector = app(GroupCollectorInterface::class);
|
|
|
|
|
|
|
|
$collector->setAccounts($accounts)->setRange($start, $end);
|
|
|
|
$collector->setTypes([TransactionType::WITHDRAWAL]);
|
|
|
|
$collector->withoutBudget();
|
|
|
|
$journals = $collector->getExtractedJournals();
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
/** @var array $journal */
|
|
|
|
foreach ($journals as $journal) {
|
|
|
|
$currencyId = (int)$journal['currency_id'];
|
|
|
|
|
|
|
|
$data[$currencyId] = $data[$currencyId] ?? [
|
|
|
|
'id' => 0,
|
|
|
|
'name' => sprintf('%s (%s)', trans('firefly.no_budget'), $journal['currency_name']),
|
|
|
|
'sum' => '0',
|
|
|
|
'currency_id' => $currencyId,
|
|
|
|
'currency_code' => $journal['currency_code'],
|
|
|
|
'currency_name' => $journal['currency_name'],
|
|
|
|
'currency_symbol' => $journal['currency_symbol'],
|
|
|
|
'currency_decimal_places' => $journal['currency_decimal_places'],
|
|
|
|
'entries' => [],
|
|
|
|
];
|
|
|
|
$date = $journal['date']->format($carbonFormat);
|
|
|
|
|
|
|
|
if (!isset($data[$currencyId]['entries'][$date])) {
|
|
|
|
$data[$currencyId]['entries'][$date] = '0';
|
|
|
|
}
|
|
|
|
$data[$currencyId]['entries'][$date] = bcadd($data[$currencyId]['entries'][$date], $journal['amount']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:33:12 -05:00
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function setUser(User $user): void
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
}
|
|
|
|
}
|