mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-24 18:00:18 -06:00
Clean up balance chart.
This commit is contained in:
parent
bcb672920c
commit
3eaaac09ad
@ -28,14 +28,13 @@ use FireflyIII\Api\V2\Controllers\Controller;
|
|||||||
use FireflyIII\Api\V2\Request\Chart\ChartRequest;
|
use FireflyIII\Api\V2\Request\Chart\ChartRequest;
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Models\Account;
|
use FireflyIII\Models\Account;
|
||||||
use FireflyIII\Models\AccountType;
|
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
use FireflyIII\Repositories\UserGroups\Account\AccountRepositoryInterface;
|
use FireflyIII\Repositories\UserGroups\Account\AccountRepositoryInterface;
|
||||||
use FireflyIII\Support\Chart\ChartData;
|
use FireflyIII\Support\Chart\ChartData;
|
||||||
use FireflyIII\Support\Http\Api\CleansChartData;
|
use FireflyIII\Support\Http\Api\CleansChartData;
|
||||||
|
use FireflyIII\Support\Http\Api\CollectsAccountsFromFilter;
|
||||||
use FireflyIII\Support\Http\Api\ValidatesUserGroupTrait;
|
use FireflyIII\Support\Http\Api\ValidatesUserGroupTrait;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class AccountController
|
* Class AccountController
|
||||||
@ -44,10 +43,11 @@ class AccountController extends Controller
|
|||||||
{
|
{
|
||||||
use CleansChartData;
|
use CleansChartData;
|
||||||
use ValidatesUserGroupTrait;
|
use ValidatesUserGroupTrait;
|
||||||
|
use CollectsAccountsFromFilter;
|
||||||
|
|
||||||
private AccountRepositoryInterface $repository;
|
private AccountRepositoryInterface $repository;
|
||||||
private ChartData $chartData;
|
private ChartData $chartData;
|
||||||
private TransactionCurrency $default;
|
private TransactionCurrency $default;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
@ -57,7 +57,7 @@ class AccountController extends Controller
|
|||||||
$this->repository = app(AccountRepositoryInterface::class);
|
$this->repository = app(AccountRepositoryInterface::class);
|
||||||
$this->repository->setUserGroup($this->validateUserGroup($request));
|
$this->repository->setUserGroup($this->validateUserGroup($request));
|
||||||
$this->chartData = new ChartData();
|
$this->chartData = new ChartData();
|
||||||
$this->default = app('amount')->getDefaultCurrency();
|
$this->default = app('amount')->getDefaultCurrency();
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
@ -66,6 +66,7 @@ class AccountController extends Controller
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO fix documentation
|
* TODO fix documentation
|
||||||
|
*
|
||||||
* @throws FireflyException
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function dashboard(ChartRequest $request): JsonResponse
|
public function dashboard(ChartRequest $request): JsonResponse
|
||||||
@ -86,57 +87,11 @@ class AccountController extends Controller
|
|||||||
return response()->json($this->chartData->render());
|
return response()->json($this->chartData->render());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO Duplicate function but I think it belongs here or in a separate trait
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
private function getAccountList(array $queryParameters): Collection
|
|
||||||
{
|
|
||||||
$collection = new Collection();
|
|
||||||
|
|
||||||
// always collect from the query parameter, even when it's empty.
|
|
||||||
foreach ($queryParameters['accounts'] as $accountId) {
|
|
||||||
$account = $this->repository->find((int) $accountId);
|
|
||||||
if (null !== $account) {
|
|
||||||
$collection->push($account);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// if no "preselected", and found accounts
|
|
||||||
if ('empty' === $queryParameters['preselected'] && $collection->count() > 0) {
|
|
||||||
return $collection;
|
|
||||||
}
|
|
||||||
// if no preselected, but no accounts:
|
|
||||||
if ('empty' === $queryParameters['preselected'] && 0 === $collection->count()) {
|
|
||||||
$defaultSet = $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT])->pluck('id')->toArray();
|
|
||||||
$frontpage = app('preferences')->get('frontpageAccounts', $defaultSet);
|
|
||||||
|
|
||||||
if (!(is_array($frontpage->data) && count($frontpage->data) > 0)) {
|
|
||||||
$frontpage->data = $defaultSet;
|
|
||||||
$frontpage->save();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->repository->getAccountsById($frontpage->data);
|
|
||||||
}
|
|
||||||
|
|
||||||
// both options are overruled by "preselected"
|
|
||||||
if ('all' === $queryParameters['preselected']) {
|
|
||||||
return $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]);
|
|
||||||
}
|
|
||||||
if ('assets' === $queryParameters['preselected']) {
|
|
||||||
return $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT]);
|
|
||||||
}
|
|
||||||
if ('liabilities' === $queryParameters['preselected']) {
|
|
||||||
return $this->repository->getAccountsByType([AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $collection;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws FireflyException
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
private function renderAccountData(array $params, Account $account): void {
|
private function renderAccountData(array $params, Account $account): void
|
||||||
|
{
|
||||||
$currency = $this->repository->getAccountCurrency($account);
|
$currency = $this->repository->getAccountCurrency($account);
|
||||||
if (null === $currency) {
|
if (null === $currency) {
|
||||||
$currency = $this->default;
|
$currency = $this->default;
|
||||||
@ -155,6 +110,7 @@ class AccountController extends Controller
|
|||||||
'native_currency_code' => $this->default->code,
|
'native_currency_code' => $this->default->code,
|
||||||
'native_currency_symbol' => $this->default->symbol,
|
'native_currency_symbol' => $this->default->symbol,
|
||||||
'native_currency_decimal_places' => $this->default->decimal_places,
|
'native_currency_decimal_places' => $this->default->decimal_places,
|
||||||
|
'date' => $params['start']->toAtomString(),
|
||||||
'start' => $params['start']->toAtomString(),
|
'start' => $params['start']->toAtomString(),
|
||||||
'end' => $params['end']->toAtomString(),
|
'end' => $params['end']->toAtomString(),
|
||||||
'period' => '1D',
|
'period' => '1D',
|
||||||
|
@ -24,18 +24,18 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace FireflyIII\Api\V2\Controllers\Chart;
|
namespace FireflyIII\Api\V2\Controllers\Chart;
|
||||||
|
|
||||||
use Carbon\Carbon;
|
|
||||||
use FireflyIII\Api\V2\Controllers\Controller;
|
use FireflyIII\Api\V2\Controllers\Controller;
|
||||||
use FireflyIII\Api\V2\Request\Chart\BalanceChartRequest;
|
use FireflyIII\Api\V2\Request\Chart\ChartRequest;
|
||||||
use FireflyIII\Enums\UserRoleEnum;
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
|
use FireflyIII\Helpers\Collector\GroupCollectorInterface;
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
use FireflyIII\Models\TransactionType;
|
use FireflyIII\Models\TransactionType;
|
||||||
|
use FireflyIII\Repositories\UserGroups\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Support\Chart\ChartData;
|
||||||
use FireflyIII\Support\Http\Api\AccountBalanceGrouped;
|
use FireflyIII\Support\Http\Api\AccountBalanceGrouped;
|
||||||
use FireflyIII\Support\Http\Api\CleansChartData;
|
use FireflyIII\Support\Http\Api\CleansChartData;
|
||||||
|
use FireflyIII\Support\Http\Api\CollectsAccountsFromFilter;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BalanceController
|
* Class BalanceController
|
||||||
@ -43,7 +43,30 @@ use Illuminate\Support\Collection;
|
|||||||
class BalanceController extends Controller
|
class BalanceController extends Controller
|
||||||
{
|
{
|
||||||
use CleansChartData;
|
use CleansChartData;
|
||||||
protected array $acceptedRoles = [UserRoleEnum::READ_ONLY];
|
use CollectsAccountsFromFilter;
|
||||||
|
|
||||||
|
private AccountRepositoryInterface $repository;
|
||||||
|
private GroupCollectorInterface $collector;
|
||||||
|
private ChartData $chartData;
|
||||||
|
private TransactionCurrency $default;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->middleware(
|
||||||
|
function ($request, $next) {
|
||||||
|
$this->repository = app(AccountRepositoryInterface::class);
|
||||||
|
$this->collector = app(GroupCollectorInterface::class);
|
||||||
|
$userGroup = $this->validateUserGroup($request);
|
||||||
|
$this->repository->setUserGroup($userGroup);
|
||||||
|
$this->collector->setUserGroup($userGroup);
|
||||||
|
$this->chartData = new ChartData();
|
||||||
|
$this->default = app('amount')->getDefaultCurrency();
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The code is practically a duplicate of ReportController::operations.
|
* The code is practically a duplicate of ReportController::operations.
|
||||||
@ -54,50 +77,42 @@ class BalanceController extends Controller
|
|||||||
* If the transaction being processed is already in native currency OR if the
|
* If the transaction being processed is already in native currency OR if the
|
||||||
* foreign amount is in the native currency, the amount will not be converted.
|
* foreign amount is in the native currency, the amount will not be converted.
|
||||||
*
|
*
|
||||||
* TODO validate and set user_group_id
|
|
||||||
* TODO collector set group, not user
|
|
||||||
*
|
|
||||||
* @throws FireflyException
|
* @throws FireflyException
|
||||||
*/
|
*/
|
||||||
public function balance(BalanceChartRequest $request): JsonResponse
|
public function balance(ChartRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
$params = $request->getAll();
|
$queryParameters = $request->getParameters();
|
||||||
|
$accounts = $this->getAccountList($queryParameters);
|
||||||
|
|
||||||
/** @var Carbon $start */
|
// move date to end of day
|
||||||
$start = $this->parameters->get('start');
|
$queryParameters['start']->startOfDay();
|
||||||
|
$queryParameters['end']->endOfDay();
|
||||||
/** @var Carbon $end */
|
|
||||||
$end = $this->parameters->get('end');
|
|
||||||
$end->endOfDay();
|
|
||||||
|
|
||||||
/** @var Collection $accounts */
|
|
||||||
$accounts = $params['accounts'];
|
|
||||||
|
|
||||||
/** @var string $preferredRange */
|
|
||||||
$preferredRange = $params['period'];
|
|
||||||
|
|
||||||
// prepare for currency conversion and data collection:
|
// prepare for currency conversion and data collection:
|
||||||
/** @var TransactionCurrency $default */
|
/** @var TransactionCurrency $default */
|
||||||
$default = app('amount')->getDefaultCurrency();
|
$default = app('amount')->getDefaultCurrency();
|
||||||
|
|
||||||
// get journals for entire period:
|
// get journals for entire period:
|
||||||
/** @var GroupCollectorInterface $collector */
|
|
||||||
$collector = app(GroupCollectorInterface::class);
|
|
||||||
$collector->setRange($start, $end)->withAccountInformation();
|
|
||||||
$collector->setXorAccounts($accounts);
|
|
||||||
$collector->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::RECONCILIATION, TransactionType::TRANSFER]);
|
|
||||||
$journals = $collector->getExtractedJournals();
|
|
||||||
|
|
||||||
$object = new AccountBalanceGrouped();
|
$this->collector->setRange($queryParameters['start'], $queryParameters['end'])
|
||||||
$object->setPreferredRange($preferredRange);
|
->withAccountInformation()
|
||||||
|
->setXorAccounts($accounts)
|
||||||
|
->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::RECONCILIATION, TransactionType::TRANSFER]);
|
||||||
|
$journals = $this->collector->getExtractedJournals();
|
||||||
|
|
||||||
|
$object = new AccountBalanceGrouped();
|
||||||
|
$object->setPreferredRange($queryParameters['period']);
|
||||||
$object->setDefault($default);
|
$object->setDefault($default);
|
||||||
$object->setAccounts($accounts);
|
$object->setAccounts($accounts);
|
||||||
$object->setJournals($journals);
|
$object->setJournals($journals);
|
||||||
$object->setStart($start);
|
$object->setStart($queryParameters['start']);
|
||||||
$object->setEnd($end);
|
$object->setEnd($queryParameters['end']);
|
||||||
$object->groupByCurrencyAndPeriod();
|
$object->groupByCurrencyAndPeriod();
|
||||||
$chartData = $object->convertToChartData();
|
$data = $object->convertToChartData();
|
||||||
|
foreach($data as $entry) {
|
||||||
|
$this->chartData->add($entry);
|
||||||
|
}
|
||||||
|
|
||||||
return response()->json($this->clean($chartData));
|
return response()->json($this->chartData->render());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -55,6 +55,7 @@ class ChartRequest extends FormRequest
|
|||||||
'start' => $this->dateOrToday($queryParameters, 'start'),
|
'start' => $this->dateOrToday($queryParameters, 'start'),
|
||||||
'end' => $this->dateOrToday($queryParameters, 'end'),
|
'end' => $this->dateOrToday($queryParameters, 'end'),
|
||||||
'preselected' => $this->stringFromQueryParams($queryParameters, 'preselected', 'empty'),
|
'preselected' => $this->stringFromQueryParams($queryParameters, 'preselected', 'empty'),
|
||||||
|
'period' => $this->stringFromQueryParams($queryParameters, 'period', '1M'),
|
||||||
'accounts' => $this->arrayOfStrings($queryParameters, 'accounts'),
|
'accounts' => $this->arrayOfStrings($queryParameters, 'accounts'),
|
||||||
// preselected heeft maar een paar toegestane waardes, dat moet ook goed gaan.
|
// preselected heeft maar een paar toegestane waardes, dat moet ook goed gaan.
|
||||||
// 'query' => $this->arrayOfStrings($queryParameters, 'query'),
|
// 'query' => $this->arrayOfStrings($queryParameters, 'query'),
|
||||||
|
@ -57,14 +57,11 @@ class ChartData
|
|||||||
if (array_key_exists('native_currency_id', $data)) {
|
if (array_key_exists('native_currency_id', $data)) {
|
||||||
$data['native_currency_id'] = (string) $data['native_currency_id'];
|
$data['native_currency_id'] = (string) $data['native_currency_id'];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('start', $data)) {
|
$required = ['start', 'date', 'end', 'entries', 'native_entries'];
|
||||||
throw new FireflyException('Data-set is missing the "start"-variable.');
|
foreach ($required as $field) {
|
||||||
}
|
if (!array_key_exists($field, $data)) {
|
||||||
if (!array_key_exists('end', $data)) {
|
throw new FireflyException(sprintf('Data-set is missing the "%s"-variable.', $field));
|
||||||
throw new FireflyException('Data-set is missing the "end"-variable.');
|
}
|
||||||
}
|
|
||||||
if (!array_key_exists('period', $data)) {
|
|
||||||
throw new FireflyException('Data-set is missing the "period"-variable.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->series[] = $data;
|
$this->series[] = $data;
|
||||||
|
@ -35,15 +35,22 @@ use Illuminate\Support\Facades\Log;
|
|||||||
*/
|
*/
|
||||||
class AccountBalanceGrouped
|
class AccountBalanceGrouped
|
||||||
{
|
{
|
||||||
private array $accountIds;
|
private array $accountIds;
|
||||||
private string $carbonFormat;
|
private string $carbonFormat;
|
||||||
private array $currencies = [];
|
private array $currencies = [];
|
||||||
private array $data = [];
|
private array $data = [];
|
||||||
private TransactionCurrency $default;
|
private TransactionCurrency $default;
|
||||||
private Carbon $end;
|
private Carbon $end;
|
||||||
private array $journals = [];
|
private array $journals = [];
|
||||||
private string $preferredRange;
|
private string $preferredRange;
|
||||||
private Carbon $start;
|
private Carbon $start;
|
||||||
|
private ExchangeRateConverter $converter;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->accountIds = [];
|
||||||
|
$this->converter = app(ExchangeRateConverter::class);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert the given input to a chart compatible array.
|
* Convert the given input to a chart compatible array.
|
||||||
@ -56,32 +63,34 @@ class AccountBalanceGrouped
|
|||||||
/** @var array $currency */
|
/** @var array $currency */
|
||||||
foreach ($this->data as $currency) {
|
foreach ($this->data as $currency) {
|
||||||
// income and expense array prepped:
|
// income and expense array prepped:
|
||||||
$income = [
|
$income = [
|
||||||
'label' => 'earned',
|
'label' => 'earned',
|
||||||
'currency_id' => (string)$currency['currency_id'],
|
'currency_id' => (string) $currency['currency_id'],
|
||||||
'currency_symbol' => $currency['currency_symbol'],
|
'currency_symbol' => $currency['currency_symbol'],
|
||||||
'currency_code' => $currency['currency_code'],
|
'currency_code' => $currency['currency_code'],
|
||||||
'currency_decimal_places' => $currency['currency_decimal_places'],
|
'currency_decimal_places' => $currency['currency_decimal_places'],
|
||||||
'native_currency_id' => (string)$currency['native_currency_id'],
|
'native_currency_id' => (string) $currency['native_currency_id'],
|
||||||
'native_currency_symbol' => $currency['native_currency_symbol'],
|
'native_currency_symbol' => $currency['native_currency_symbol'],
|
||||||
'native_currency_code' => $currency['native_currency_code'],
|
'native_currency_code' => $currency['native_currency_code'],
|
||||||
'native_currency_decimal_places' => $currency['native_currency_decimal_places'],
|
'native_currency_decimal_places' => $currency['native_currency_decimal_places'],
|
||||||
|
'date' => $this->start->toAtomString(),
|
||||||
'start' => $this->start->toAtomString(),
|
'start' => $this->start->toAtomString(),
|
||||||
'end' => $this->end->toAtomString(),
|
'end' => $this->end->toAtomString(),
|
||||||
'period' => $this->preferredRange,
|
'period' => $this->preferredRange,
|
||||||
'entries' => [],
|
'entries' => [],
|
||||||
'native_entries' => [],
|
'native_entries' => [],
|
||||||
];
|
];
|
||||||
$expense = [
|
$expense = [
|
||||||
'label' => 'spent',
|
'label' => 'spent',
|
||||||
'currency_id' => (string)$currency['currency_id'],
|
'currency_id' => (string) $currency['currency_id'],
|
||||||
'currency_symbol' => $currency['currency_symbol'],
|
'currency_symbol' => $currency['currency_symbol'],
|
||||||
'currency_code' => $currency['currency_code'],
|
'currency_code' => $currency['currency_code'],
|
||||||
'currency_decimal_places' => $currency['currency_decimal_places'],
|
'currency_decimal_places' => $currency['currency_decimal_places'],
|
||||||
'native_currency_id' => (string)$currency['native_currency_id'],
|
'native_currency_id' => (string) $currency['native_currency_id'],
|
||||||
'native_currency_symbol' => $currency['native_currency_symbol'],
|
'native_currency_symbol' => $currency['native_currency_symbol'],
|
||||||
'native_currency_code' => $currency['native_currency_code'],
|
'native_currency_code' => $currency['native_currency_code'],
|
||||||
'native_currency_decimal_places' => $currency['native_currency_decimal_places'],
|
'native_currency_decimal_places' => $currency['native_currency_decimal_places'],
|
||||||
|
'date' => $this->start->toAtomString(),
|
||||||
'start' => $this->start->toAtomString(),
|
'start' => $this->start->toAtomString(),
|
||||||
'end' => $this->end->toAtomString(),
|
'end' => $this->end->toAtomString(),
|
||||||
'period' => $this->preferredRange,
|
'period' => $this->preferredRange,
|
||||||
@ -91,22 +100,22 @@ class AccountBalanceGrouped
|
|||||||
// loop all possible periods between $start and $end, and add them to the correct dataset.
|
// loop all possible periods between $start and $end, and add them to the correct dataset.
|
||||||
$currentStart = clone $this->start;
|
$currentStart = clone $this->start;
|
||||||
while ($currentStart <= $this->end) {
|
while ($currentStart <= $this->end) {
|
||||||
$key = $currentStart->format($this->carbonFormat);
|
$key = $currentStart->format($this->carbonFormat);
|
||||||
$label = $currentStart->toAtomString();
|
$label = $currentStart->toAtomString();
|
||||||
// normal entries
|
// normal entries
|
||||||
$income['entries'][$label] = app('steam')->bcround($currency[$key]['earned'] ?? '0', $currency['currency_decimal_places']);
|
$income['entries'][$label] = app('steam')->bcround($currency[$key]['earned'] ?? '0', $currency['currency_decimal_places']);
|
||||||
$expense['entries'][$label] = app('steam')->bcround($currency[$key]['spent'] ?? '0', $currency['currency_decimal_places']);
|
$expense['entries'][$label] = app('steam')->bcround($currency[$key]['spent'] ?? '0', $currency['currency_decimal_places']);
|
||||||
|
|
||||||
// converted entries
|
// converted entries
|
||||||
$income['native_entries'][$label] = app('steam')->bcround($currency[$key]['native_earned'] ?? '0', $currency['native_currency_decimal_places']);
|
$income['native_entries'][$label] = app('steam')->bcround($currency[$key]['native_earned'] ?? '0', $currency['native_currency_decimal_places']);
|
||||||
$expense['native_entries'][$label] = app('steam')->bcround($currency[$key]['native_spent'] ?? '0', $currency['native_currency_decimal_places']);
|
$expense['native_entries'][$label] = app('steam')->bcround($currency[$key]['native_spent'] ?? '0', $currency['native_currency_decimal_places']);
|
||||||
|
|
||||||
// next loop
|
// next loop
|
||||||
$currentStart = app('navigation')->addPeriod($currentStart, $this->preferredRange, 0);
|
$currentStart = app('navigation')->addPeriod($currentStart, $this->preferredRange, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
$chartData[] = $income;
|
$chartData[] = $income;
|
||||||
$chartData[] = $expense;
|
$chartData[] = $expense;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $chartData;
|
return $chartData;
|
||||||
@ -124,76 +133,7 @@ class AccountBalanceGrouped
|
|||||||
// loop. group by currency and by period.
|
// loop. group by currency and by period.
|
||||||
/** @var array $journal */
|
/** @var array $journal */
|
||||||
foreach ($this->journals as $journal) {
|
foreach ($this->journals as $journal) {
|
||||||
// format the date according to the period
|
$this->processJournal($journal);
|
||||||
$period = $journal['date']->format($this->carbonFormat);
|
|
||||||
$currencyId = (int)$journal['currency_id'];
|
|
||||||
$currency = $this->currencies[$currencyId] ?? TransactionCurrency::find($currencyId);
|
|
||||||
$this->currencies[$currencyId] = $currency; // may just re-assign itself, don't mind.
|
|
||||||
|
|
||||||
// set the array with monetary info, if it does not exist.
|
|
||||||
$this->data[$currencyId] ??= [
|
|
||||||
'currency_id' => (string)$currencyId,
|
|
||||||
'currency_symbol' => $journal['currency_symbol'],
|
|
||||||
'currency_code' => $journal['currency_code'],
|
|
||||||
'currency_name' => $journal['currency_name'],
|
|
||||||
'currency_decimal_places' => $journal['currency_decimal_places'],
|
|
||||||
// native currency info (could be the same)
|
|
||||||
'native_currency_id' => (string)$this->default->id,
|
|
||||||
'native_currency_code' => $this->default->code,
|
|
||||||
'native_currency_symbol' => $this->default->symbol,
|
|
||||||
'native_currency_decimal_places' => $this->default->decimal_places,
|
|
||||||
];
|
|
||||||
|
|
||||||
// set the array (in monetary info) with spent/earned in this $period, if it does not exist.
|
|
||||||
$this->data[$currencyId][$period] ??= [
|
|
||||||
'period' => $period,
|
|
||||||
'spent' => '0',
|
|
||||||
'earned' => '0',
|
|
||||||
'native_spent' => '0',
|
|
||||||
'native_earned' => '0',
|
|
||||||
];
|
|
||||||
// is this journal's amount in- our outgoing?
|
|
||||||
$key = 'spent';
|
|
||||||
$amount = app('steam')->negative($journal['amount']);
|
|
||||||
// deposit = incoming
|
|
||||||
// transfer or reconcile or opening balance, and these accounts are the destination.
|
|
||||||
if (
|
|
||||||
TransactionType::DEPOSIT === $journal['transaction_type_type']
|
|
||||||
|
|
||||||
|| (
|
|
||||||
(
|
|
||||||
TransactionType::TRANSFER === $journal['transaction_type_type']
|
|
||||||
|| TransactionType::RECONCILIATION === $journal['transaction_type_type']
|
|
||||||
|| TransactionType::OPENING_BALANCE === $journal['transaction_type_type']
|
|
||||||
)
|
|
||||||
&& in_array($journal['destination_account_id'], $this->accountIds, true)
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
$key = 'earned';
|
|
||||||
$amount = app('steam')->positive($journal['amount']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// get conversion rate
|
|
||||||
try {
|
|
||||||
$rate = $converter->getCurrencyRate($currency, $this->default, $journal['date']);
|
|
||||||
} catch (FireflyException $e) {
|
|
||||||
app('log')->error($e->getMessage());
|
|
||||||
$rate = '1';
|
|
||||||
}
|
|
||||||
$amountConverted = bcmul($amount, $rate);
|
|
||||||
|
|
||||||
// perhaps transaction already has the foreign amount in the native currency.
|
|
||||||
if ((int)$journal['foreign_currency_id'] === $this->default->id) {
|
|
||||||
$amountConverted = $journal['foreign_amount'] ?? '0';
|
|
||||||
$amountConverted = 'earned' === $key ? app('steam')->positive($amountConverted) : app('steam')->negative($amountConverted);
|
|
||||||
}
|
|
||||||
|
|
||||||
// add normal entry
|
|
||||||
$this->data[$currencyId][$period][$key] = bcadd($this->data[$currencyId][$period][$key], $amount);
|
|
||||||
|
|
||||||
// add converted entry
|
|
||||||
$convertedKey = sprintf('native_%s', $key);
|
|
||||||
$this->data[$currencyId][$period][$convertedKey] = bcadd($this->data[$currencyId][$period][$convertedKey], $amountConverted);
|
|
||||||
}
|
}
|
||||||
$converter->summarize();
|
$converter->summarize();
|
||||||
}
|
}
|
||||||
@ -209,12 +149,12 @@ class AccountBalanceGrouped
|
|||||||
$defaultCurrencyId = $default->id;
|
$defaultCurrencyId = $default->id;
|
||||||
$this->currencies = [$default->id => $default]; // currency cache
|
$this->currencies = [$default->id => $default]; // currency cache
|
||||||
$this->data[$defaultCurrencyId] = [
|
$this->data[$defaultCurrencyId] = [
|
||||||
'currency_id' => (string)$defaultCurrencyId,
|
'currency_id' => (string) $defaultCurrencyId,
|
||||||
'currency_symbol' => $default->symbol,
|
'currency_symbol' => $default->symbol,
|
||||||
'currency_code' => $default->code,
|
'currency_code' => $default->code,
|
||||||
'currency_name' => $default->name,
|
'currency_name' => $default->name,
|
||||||
'currency_decimal_places' => $default->decimal_places,
|
'currency_decimal_places' => $default->decimal_places,
|
||||||
'native_currency_id' => (string)$defaultCurrencyId,
|
'native_currency_id' => (string) $defaultCurrencyId,
|
||||||
'native_currency_symbol' => $default->symbol,
|
'native_currency_symbol' => $default->symbol,
|
||||||
'native_currency_code' => $default->code,
|
'native_currency_code' => $default->code,
|
||||||
'native_currency_name' => $default->name,
|
'native_currency_name' => $default->name,
|
||||||
@ -242,4 +182,111 @@ class AccountBalanceGrouped
|
|||||||
{
|
{
|
||||||
$this->start = $start;
|
$this->start = $start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function processJournal(array $journal): void
|
||||||
|
{
|
||||||
|
// format the date according to the period
|
||||||
|
$period = $journal['date']->format($this->carbonFormat);
|
||||||
|
$currencyId = (int) $journal['currency_id'];
|
||||||
|
$currency = $this->findCurrency($currencyId);
|
||||||
|
|
||||||
|
// set the array with monetary info, if it does not exist.
|
||||||
|
$this->createDefaultDataEntry($journal);
|
||||||
|
// set the array (in monetary info) with spent/earned in this $period, if it does not exist.
|
||||||
|
$this->createDefaultPeriodEntry($journal);
|
||||||
|
|
||||||
|
// is this journal's amount in- our outgoing?
|
||||||
|
$key = $this->getDataKey($journal);
|
||||||
|
$amount = 'spent' === $key ? app('steam')->negative($journal['amount']) : app('steam')->positive($journal['amount']);
|
||||||
|
|
||||||
|
// get conversion rate
|
||||||
|
$rate = $this->getRate($currency, $journal['date']);
|
||||||
|
$amountConverted = bcmul($amount, $rate);
|
||||||
|
|
||||||
|
// perhaps transaction already has the foreign amount in the native currency.
|
||||||
|
if ((int) $journal['foreign_currency_id'] === $this->default->id) {
|
||||||
|
$amountConverted = $journal['foreign_amount'] ?? '0';
|
||||||
|
$amountConverted = 'earned' === $key ? app('steam')->positive($amountConverted) : app('steam')->negative($amountConverted);
|
||||||
|
}
|
||||||
|
|
||||||
|
// add normal entry
|
||||||
|
$this->data[$currencyId][$period][$key] = bcadd($this->data[$currencyId][$period][$key], $amount);
|
||||||
|
|
||||||
|
// add converted entry
|
||||||
|
$convertedKey = sprintf('native_%s', $key);
|
||||||
|
$this->data[$currencyId][$period][$convertedKey] = bcadd($this->data[$currencyId][$period][$convertedKey], $amountConverted);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function findCurrency(int $currencyId): TransactionCurrency
|
||||||
|
{
|
||||||
|
if (array_key_exists($currencyId, $this->currencies)) {
|
||||||
|
return $this->currencies[$currencyId];
|
||||||
|
}
|
||||||
|
$this->currencies[$currencyId] = TransactionCurrency::find($currencyId);
|
||||||
|
return $this->currencies[$currencyId];
|
||||||
|
}
|
||||||
|
|
||||||
|
private function createDefaultDataEntry(array $journal): void
|
||||||
|
{
|
||||||
|
$currencyId = (int) $journal['currency_id'];
|
||||||
|
$this->data[$currencyId] ??= [
|
||||||
|
'currency_id' => (string) $currencyId,
|
||||||
|
'currency_symbol' => $journal['currency_symbol'],
|
||||||
|
'currency_code' => $journal['currency_code'],
|
||||||
|
'currency_name' => $journal['currency_name'],
|
||||||
|
'currency_decimal_places' => $journal['currency_decimal_places'],
|
||||||
|
// native currency info (could be the same)
|
||||||
|
'native_currency_id' => (string) $this->default->id,
|
||||||
|
'native_currency_code' => $this->default->code,
|
||||||
|
'native_currency_symbol' => $this->default->symbol,
|
||||||
|
'native_currency_decimal_places' => $this->default->decimal_places,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
private function createDefaultPeriodEntry(array $journal): void
|
||||||
|
{
|
||||||
|
$currencyId = (int) $journal['currency_id'];
|
||||||
|
$period = $journal['date']->format($this->carbonFormat);
|
||||||
|
$this->data[$currencyId][$period] ??= [
|
||||||
|
'period' => $period,
|
||||||
|
'spent' => '0',
|
||||||
|
'earned' => '0',
|
||||||
|
'native_spent' => '0',
|
||||||
|
'native_earned' => '0',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getDataKey(array $journal): string
|
||||||
|
{
|
||||||
|
|
||||||
|
$key = 'spent';
|
||||||
|
// deposit = incoming
|
||||||
|
// transfer or reconcile or opening balance, and these accounts are the destination.
|
||||||
|
if (
|
||||||
|
TransactionType::DEPOSIT === $journal['transaction_type_type']
|
||||||
|
|
||||||
|
|| (
|
||||||
|
(
|
||||||
|
TransactionType::TRANSFER === $journal['transaction_type_type']
|
||||||
|
|| TransactionType::RECONCILIATION === $journal['transaction_type_type']
|
||||||
|
|| TransactionType::OPENING_BALANCE === $journal['transaction_type_type']
|
||||||
|
)
|
||||||
|
&& in_array($journal['destination_account_id'], $this->accountIds, true)
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
$key = 'earned';
|
||||||
|
}
|
||||||
|
return $key;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getRate(TransactionCurrency $currency, Carbon $date): string
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$rate = $this->converter->getCurrencyRate($currency, $this->default, $date);
|
||||||
|
} catch (FireflyException $e) {
|
||||||
|
app('log')->error($e->getMessage());
|
||||||
|
$rate = '1';
|
||||||
|
}
|
||||||
|
return $rate;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
77
app/Support/Http/Api/CollectsAccountsFromFilter.php
Normal file
77
app/Support/Http/Api/CollectsAccountsFromFilter.php
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* CollectsAccountsFromFilter.php
|
||||||
|
* Copyright (c) 2024 james@firefly-iii.org.
|
||||||
|
*
|
||||||
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Support\Http\Api;
|
||||||
|
|
||||||
|
use FireflyIII\Models\AccountType;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
|
trait CollectsAccountsFromFilter
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* TODO Duplicate function but I think it belongs here or in a separate trait
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private function getAccountList(array $queryParameters): Collection
|
||||||
|
{
|
||||||
|
$collection = new Collection();
|
||||||
|
|
||||||
|
// always collect from the query parameter, even when it's empty.
|
||||||
|
foreach ($queryParameters['accounts'] as $accountId) {
|
||||||
|
$account = $this->repository->find((int) $accountId);
|
||||||
|
if (null !== $account) {
|
||||||
|
$collection->push($account);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// if no "preselected", and found accounts
|
||||||
|
if ('empty' === $queryParameters['preselected'] && $collection->count() > 0) {
|
||||||
|
return $collection;
|
||||||
|
}
|
||||||
|
// if no preselected, but no accounts:
|
||||||
|
if ('empty' === $queryParameters['preselected'] && 0 === $collection->count()) {
|
||||||
|
$defaultSet = $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT])->pluck('id')->toArray();
|
||||||
|
$frontpage = app('preferences')->get('frontpageAccounts', $defaultSet);
|
||||||
|
|
||||||
|
if (!(is_array($frontpage->data) && count($frontpage->data) > 0)) {
|
||||||
|
$frontpage->data = $defaultSet;
|
||||||
|
$frontpage->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->repository->getAccountsById($frontpage->data);
|
||||||
|
}
|
||||||
|
|
||||||
|
// both options are overruled by "preselected"
|
||||||
|
if ('all' === $queryParameters['preselected']) {
|
||||||
|
return $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]);
|
||||||
|
}
|
||||||
|
if ('assets' === $queryParameters['preselected']) {
|
||||||
|
return $this->repository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT]);
|
||||||
|
}
|
||||||
|
if ('liabilities' === $queryParameters['preselected']) {
|
||||||
|
return $this->repository->getAccountsByType([AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $collection;
|
||||||
|
}
|
||||||
|
}
|
@ -45,6 +45,24 @@ Route::group(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// V2 API routes for charts
|
||||||
|
Route::group(
|
||||||
|
[
|
||||||
|
'namespace' => 'FireflyIII\Api\V2\Controllers\Chart',
|
||||||
|
'prefix' => 'v2/chart',
|
||||||
|
'as' => 'api.v1.chart.',
|
||||||
|
],
|
||||||
|
static function (): void {
|
||||||
|
Route::get('account/dashboard', ['uses' => 'AccountController@dashboard', 'as' => 'account.dashboard']);
|
||||||
|
// Route::get('budget/dashboard', ['uses' => 'BudgetController@dashboard', 'as' => 'budget.dashboard']);
|
||||||
|
// Route::get('category/dashboard', ['uses' => 'CategoryController@dashboard', 'as' => 'category.dashboard']);
|
||||||
|
Route::get('balance/balance', ['uses' => 'BalanceController@balance', 'as' => 'balance.balance']);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// JsonApiRoute::server('v3')
|
// JsonApiRoute::server('v3')
|
||||||
// ->prefix('v3')
|
// ->prefix('v3')
|
||||||
// ->resources(function (ResourceRegistrar $server) {
|
// ->resources(function (ResourceRegistrar $server) {
|
||||||
@ -106,20 +124,7 @@ Route::group(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
// V2 API routes for charts
|
|
||||||
Route::group(
|
|
||||||
[
|
|
||||||
'namespace' => 'FireflyIII\Api\V2\Controllers\Chart',
|
|
||||||
'prefix' => 'v2/chart',
|
|
||||||
'as' => 'api.v1.chart.',
|
|
||||||
],
|
|
||||||
static function (): void {
|
|
||||||
Route::get('account/dashboard', ['uses' => 'AccountController@dashboard', 'as' => 'account.dashboard']);
|
|
||||||
Route::get('budget/dashboard', ['uses' => 'BudgetController@dashboard', 'as' => 'budget.dashboard']);
|
|
||||||
Route::get('category/dashboard', ['uses' => 'CategoryController@dashboard', 'as' => 'category.dashboard']);
|
|
||||||
Route::get('balance/balance', ['uses' => 'BalanceController@balance', 'as' => 'balance.balance']);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// V2 API route for accounts.
|
// V2 API route for accounts.
|
||||||
Route::group(
|
Route::group(
|
||||||
|
Loading…
Reference in New Issue
Block a user