firefly-iii/app/Http/Controllers/Json/BoxController.php

323 lines
12 KiB
PHP
Raw Normal View History

2017-09-27 01:45:27 -05:00
<?php
/**
* BoxController.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* 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
2017-12-17 07:41:58 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-09-27 01:45:27 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Http\Controllers\Json;
use Carbon\Carbon;
use FireflyIII\Helpers\Collector\TransactionCollectorInterface;
use FireflyIII\Helpers\Report\NetWorthInterface;
2017-09-27 01:45:27 -05:00
use FireflyIII\Http\Controllers\Controller;
2018-01-13 11:40:28 -06:00
use FireflyIII\Models\Account;
2017-09-27 01:45:27 -05:00
use FireflyIII\Models\AccountType;
2018-03-09 23:49:03 -06:00
use FireflyIII\Models\Transaction;
2018-07-20 07:34:56 -05:00
use FireflyIII\Models\TransactionCurrency;
2017-09-27 01:45:27 -05:00
use FireflyIII\Models\TransactionType;
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
2018-01-13 11:40:28 -06:00
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
2017-09-27 01:45:27 -05:00
use FireflyIII\Support\CacheProperties;
use FireflyIII\Support\Http\Controllers\RequestInformation;
2018-07-08 05:28:42 -05:00
use Illuminate\Http\JsonResponse;
use Log;
2017-09-27 01:45:27 -05:00
/**
2017-11-15 05:25:49 -06:00
* Class BoxController.
2017-09-27 01:45:27 -05:00
*/
class BoxController extends Controller
{
use RequestInformation;
2018-07-08 05:08:53 -05:00
2017-09-27 01:45:27 -05:00
/**
2018-07-21 01:06:24 -05:00
* How much money user has available.
*
* @param BudgetRepositoryInterface $repository
2017-09-27 01:45:27 -05:00
*
2018-07-08 05:28:42 -05:00
* @return JsonResponse
2018-07-20 07:34:56 -05:00
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
2017-09-27 01:45:27 -05:00
*/
2018-07-08 05:28:42 -05:00
public function available(BudgetRepositoryInterface $repository): JsonResponse
2017-09-27 01:45:27 -05:00
{
2018-07-26 21:46:21 -05:00
/** @var Carbon $start */
2017-09-27 01:45:27 -05:00
$start = session('start', Carbon::now()->startOfMonth());
2018-07-26 21:46:21 -05:00
/** @var Carbon $end */
2017-09-27 01:45:27 -05:00
$end = session('end', Carbon::now()->endOfMonth());
$today = new Carbon;
$cache = new CacheProperties;
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty($today);
$cache->addProperty('box-available');
if ($cache->has()) {
2018-03-10 13:30:09 -06:00
return response()->json($cache->get()); // @codeCoverageIgnore
2017-09-27 01:45:27 -05:00
}
// get available amount
$currency = app('amount')->getDefaultCurrency();
$available = $repository->getAvailableBudget($currency, $start, $end);
// get spent amount:
$budgets = $repository->getActiveBudgets();
$budgetInformation = $repository->collectBudgetInformation($budgets, $start, $end);
2018-03-25 03:17:07 -05:00
$spent = (string)array_sum(array_column($budgetInformation, 'spent'));
2017-09-27 01:45:27 -05:00
$left = bcadd($available, $spent);
2018-03-25 03:17:07 -05:00
$days = $today->diffInDays($end) + 1;
$perDay = '0';
$text = (string)trans('firefly.left_to_spend');
$overspent = false;
2017-09-27 01:45:27 -05:00
if (bccomp($left, '0') === -1) {
2018-03-25 03:17:07 -05:00
$text = (string)trans('firefly.overspent');
$overspent = true;
2017-09-27 01:45:27 -05:00
}
2018-03-25 03:17:07 -05:00
if (0 !== $days && bccomp($left, '0') > -1) {
$perDay = bcdiv($left, (string)$days);
2017-09-27 01:45:27 -05:00
}
$return = [
2018-03-25 03:17:07 -05:00
'perDay' => app('amount')->formatAnything($currency, $perDay, false),
'left' => app('amount')->formatAnything($currency, $left, false),
'text' => $text,
'overspent' => $overspent,
2017-09-27 01:45:27 -05:00
];
$cache->store($return);
2018-03-10 13:30:09 -06:00
return response()->json($return);
2017-09-27 01:45:27 -05:00
}
2018-07-08 05:08:53 -05:00
2017-09-27 01:45:27 -05:00
/**
2018-07-21 01:06:24 -05:00
* Current total balance.
*
2018-03-09 23:49:03 -06:00
* @param CurrencyRepositoryInterface $repository
*
2018-07-08 05:28:42 -05:00
* @return JsonResponse
2018-07-20 07:34:56 -05:00
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
2017-09-27 01:45:27 -05:00
*/
2018-07-08 05:28:42 -05:00
public function balance(CurrencyRepositoryInterface $repository): JsonResponse
2017-09-27 01:45:27 -05:00
{
2018-03-09 23:49:03 -06:00
// Cache result, return cache if present.
2018-07-26 21:46:21 -05:00
/** @var Carbon $start */
2017-09-27 01:45:27 -05:00
$start = session('start', Carbon::now()->startOfMonth());
2018-07-26 21:46:21 -05:00
/** @var Carbon $end */
2017-09-27 01:45:27 -05:00
$end = session('end', Carbon::now()->endOfMonth());
$cache = new CacheProperties;
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty('box-balance');
if ($cache->has()) {
2018-03-10 13:30:09 -06:00
return response()->json($cache->get()); // @codeCoverageIgnore
2017-09-27 01:45:27 -05:00
}
2018-03-09 23:49:03 -06:00
// prep some arrays:
$incomes = [];
$expenses = [];
$sums = [];
2017-09-27 01:45:27 -05:00
2018-03-09 23:49:03 -06:00
// collect income of user:
/** @var TransactionCollectorInterface $collector */
$collector = app(TransactionCollectorInterface::class);
2017-09-27 01:45:27 -05:00
$collector->setAllAssetAccounts()->setRange($start, $end)
->setTypes([TransactionType::DEPOSIT])
->withOpposingAccount();
$set = $collector->getTransactions();
2018-03-09 23:49:03 -06:00
/** @var Transaction $transaction */
foreach ($set as $transaction) {
2018-04-02 08:10:40 -05:00
$currencyId = (int)$transaction->transaction_currency_id;
2018-03-09 23:49:03 -06:00
$incomes[$currencyId] = $incomes[$currencyId] ?? '0';
$incomes[$currencyId] = bcadd($incomes[$currencyId], $transaction->transaction_amount);
$sums[$currencyId] = $sums[$currencyId] ?? '0';
$sums[$currencyId] = bcadd($sums[$currencyId], $transaction->transaction_amount);
}
2017-09-27 01:45:27 -05:00
2018-03-09 23:49:03 -06:00
// collect expenses
/** @var TransactionCollectorInterface $collector */
$collector = app(TransactionCollectorInterface::class);
2017-09-27 01:45:27 -05:00
$collector->setAllAssetAccounts()->setRange($start, $end)
->setTypes([TransactionType::WITHDRAWAL])
->withOpposingAccount();
$set = $collector->getTransactions();
2018-03-09 23:49:03 -06:00
/** @var Transaction $transaction */
foreach ($set as $transaction) {
2018-03-25 03:17:07 -05:00
$currencyId = (int)$transaction->transaction_currency_id;
2018-03-09 23:49:03 -06:00
$expenses[$currencyId] = $expenses[$currencyId] ?? '0';
$expenses[$currencyId] = bcadd($expenses[$currencyId], $transaction->transaction_amount);
$sums[$currencyId] = $sums[$currencyId] ?? '0';
$sums[$currencyId] = bcadd($sums[$currencyId], $transaction->transaction_amount);
}
// format amounts:
2018-07-20 07:34:56 -05:00
$keys = array_keys($sums);
foreach ($keys as $currencyId) {
2018-03-09 23:49:03 -06:00
$currency = $repository->findNull($currencyId);
2018-07-20 07:34:56 -05:00
$sums[$currencyId] = app('amount')->formatAnything($currency, $sums[$currencyId], false);
$incomes[$currencyId] = app('amount')->formatAnything($currency, $incomes[$currencyId] ?? '0', false);
$expenses[$currencyId] = app('amount')->formatAnything($currency, $expenses[$currencyId] ?? '0', false);
2018-03-09 23:49:03 -06:00
}
2018-07-08 00:59:58 -05:00
if (0 === \count($sums)) {
2018-06-17 00:45:10 -05:00
$currency = app('amount')->getDefaultCurrency();
2018-07-20 07:34:56 -05:00
$sums[$currency->id] = app('amount')->formatAnything($currency, '0', false);
$incomes[$currency->id] = app('amount')->formatAnything($currency, '0', false);
$expenses[$currency->id] = app('amount')->formatAnything($currency, '0', false);
2018-06-17 00:45:10 -05:00
}
2017-09-27 01:45:27 -05:00
$response = [
2018-03-09 23:49:03 -06:00
'incomes' => $incomes,
'expenses' => $expenses,
'sums' => $sums,
2018-04-27 23:23:13 -05:00
'size' => \count($sums),
2017-09-27 01:45:27 -05:00
];
2018-06-17 00:45:10 -05:00
2017-09-27 01:45:27 -05:00
$cache->store($response);
2018-03-10 13:30:09 -06:00
return response()->json($response);
2017-09-27 01:45:27 -05:00
}
2018-07-08 05:08:53 -05:00
2017-09-27 01:45:27 -05:00
/**
2018-07-21 01:06:24 -05:00
* Bills to pay and paid.
*
2017-09-27 01:45:27 -05:00
* @param BillRepositoryInterface $repository
*
2018-07-08 05:28:42 -05:00
* @return JsonResponse
2017-09-27 01:45:27 -05:00
*/
2018-07-08 05:28:42 -05:00
public function bills(BillRepositoryInterface $repository): JsonResponse
2017-09-27 01:45:27 -05:00
{
2018-07-26 21:46:21 -05:00
/** @var Carbon $start */
2017-09-27 01:45:27 -05:00
$start = session('start', Carbon::now()->startOfMonth());
2018-07-26 21:46:21 -05:00
/** @var Carbon $end */
2018-08-06 12:14:30 -05:00
$end = session('end', Carbon::now()->endOfMonth());
2017-09-27 01:45:27 -05:00
$cache = new CacheProperties;
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty('box-bills');
if ($cache->has()) {
2018-03-10 13:30:09 -06:00
return response()->json($cache->get()); // @codeCoverageIgnore
2017-09-27 01:45:27 -05:00
}
/*
* Since both this method and the chart use the exact same data, we can suffice
* with calling the one method in the bill repository that will get this amount.
*/
$paidAmount = bcmul($repository->getBillsPaidInRange($start, $end), '-1');
$unpaidAmount = $repository->getBillsUnpaidInRange($start, $end); // will be a positive amount.
$currency = app('amount')->getDefaultCurrency();
$return = [
'paid' => app('amount')->formatAnything($currency, $paidAmount, false),
'unpaid' => app('amount')->formatAnything($currency, $unpaidAmount, false),
];
$cache->store($return);
2018-03-10 13:30:09 -06:00
return response()->json($return);
2017-09-27 01:45:27 -05:00
}
2018-07-08 05:08:53 -05:00
2017-09-27 01:45:27 -05:00
/**
2018-07-21 01:06:24 -05:00
* Total user net worth.
*
2018-07-08 05:28:42 -05:00
* @return JsonResponse
2018-07-20 07:34:56 -05:00
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
2017-09-27 01:45:27 -05:00
*/
public function netWorth(): JsonResponse
2017-09-27 01:45:27 -05:00
{
$date = Carbon::create()->startOfDay();
2017-10-16 12:01:26 -05:00
// start and end in the future? use $end
2018-07-20 07:34:56 -05:00
if ($this->notInSessionRange($date)) {
/** @var Carbon $date */
$date = session('end', Carbon::now()->endOfMonth());
2017-10-16 12:01:26 -05:00
}
2018-07-20 07:34:56 -05:00
/** @var NetWorthInterface $netWorthHelper */
$netWorthHelper = app(NetWorthInterface::class);
$netWorthHelper->setUser(auth()->user());
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$allAccounts = $accountRepository->getActiveAccountsByType(
[AccountType::DEFAULT, AccountType::ASSET, AccountType::DEBT, AccountType::LOAN, AccountType::MORTGAGE, AccountType::CREDITCARD]
);
Log::debug(sprintf('Found %d accounts.', $allAccounts->count()));
// filter list on preference of being included.
$filtered = $allAccounts->filter(
function (Account $account) use ($accountRepository) {
$includeNetWorth = $accountRepository->getMetaValue($account, 'include_net_worth');
$result = null === $includeNetWorth ? true : '1' === $includeNetWorth;
if (false === $result) {
Log::debug(sprintf('Will not include "%s" in net worth charts.', $account->name));
}
return $result;
}
);
$netWorthSet = $netWorthHelper->getNetWorthByCurrency($filtered, $date);
2017-09-27 01:45:27 -05:00
2018-01-13 11:40:28 -06:00
$return = [];
foreach ($netWorthSet as $index => $data) {
/** @var TransactionCurrency $currency */
$currency = $data['currency'];
$return[$currency->id] = app('amount')->formatAnything($currency, $data['balance'], false);
2018-01-13 11:40:28 -06:00
}
2017-09-27 01:45:27 -05:00
$return = [
2018-01-13 11:40:28 -06:00
'net_worths' => array_values($return),
2017-09-27 01:45:27 -05:00
];
2018-03-10 13:30:09 -06:00
return response()->json($return);
2017-09-27 01:45:27 -05:00
}
2018-07-20 07:34:56 -05:00
/**
2018-07-21 01:06:24 -05:00
* Get a currency or return default currency.
*
2018-07-20 07:34:56 -05:00
* @param Account $account
*
* @return TransactionCurrency
*/
protected function getCurrencyOrDefault(Account $account): TransactionCurrency // get a preference
2018-07-20 07:34:56 -05:00
{
/** @var AccountRepositoryInterface $repository */
$repository = app(AccountRepositoryInterface::class);
/** @var CurrencyRepositoryInterface $currencyRepos */
$currencyRepos = app(CurrencyRepositoryInterface::class);
$currency = app('amount')->getDefaultCurrency();
$accountCurrency = null;
$currencyId = (int)$repository->getMetaValue($account, 'currency_id');
if (0 !== $currencyId) {
$accountCurrency = $currencyRepos->findNull($currencyId);
}
if (null === $accountCurrency) {
$accountCurrency = $currency;
}
return $accountCurrency;
}
2017-11-08 02:05:10 -06:00
}