mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
132 lines
4.7 KiB
PHP
132 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* ViewController.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\Http\Controllers\Transaction;
|
|
|
|
|
|
use FireflyIII\Http\Controllers\Controller;
|
|
use FireflyIII\Models\TransactionGroup;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use FireflyIII\Repositories\TransactionGroup\TransactionGroupRepositoryInterface;
|
|
use FireflyIII\Transformers\TransactionGroupTransformer;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpFoundation\ParameterBag;
|
|
|
|
/**
|
|
* Class ShowController
|
|
*/
|
|
class ShowController extends Controller
|
|
{
|
|
/** @var TransactionGroupRepositoryInterface */
|
|
private $repository;
|
|
|
|
/**
|
|
* ShowController constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// some useful repositories:
|
|
$this->middleware(
|
|
function ($request, $next) {
|
|
$this->repository = app(TransactionGroupRepositoryInterface::class);
|
|
|
|
app('view')->share('title', (string)trans('firefly.transactions'));
|
|
app('view')->share('mainTitleIcon', 'fa-exchange');
|
|
|
|
return $next($request);
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param TransactionGroup $transactionGroup
|
|
*
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function show(Request $request, TransactionGroup $transactionGroup)
|
|
{
|
|
/** @var TransactionJournal $first */
|
|
$first = $transactionGroup->transactionJournals->first();
|
|
$splits = $transactionGroup->transactionJournals->count();
|
|
$type = $first->transactionType->type;
|
|
$title = 1 === $splits ? $first->description : $transactionGroup->title;
|
|
$subTitle = sprintf('%s: "%s"', $type, $title);
|
|
$message = $request->get('message');
|
|
|
|
/** @var TransactionGroupTransformer $transformer */
|
|
$transformer = app(TransactionGroupTransformer::class);
|
|
$transformer->setParameters(new ParameterBag);
|
|
$groupArray = $transformer->transformObject($transactionGroup);
|
|
|
|
// do some amount calculations:
|
|
$amounts = $this->getAmounts($groupArray);
|
|
|
|
|
|
$events = $this->repository->getPiggyEvents($transactionGroup);
|
|
$attachments = $this->repository->getAttachments($transactionGroup);
|
|
$links = $this->repository->getLinks($transactionGroup);
|
|
|
|
return view(
|
|
'transactions.show', compact(
|
|
'transactionGroup', 'amounts', 'first', 'type', 'subTitle', 'splits', 'groupArray',
|
|
'events', 'attachments', 'links', 'message'
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param array $group
|
|
* @return array
|
|
*/
|
|
private function getAmounts(array $group): array
|
|
{
|
|
$amounts = [];
|
|
foreach ($group['transactions'] as $transaction) {
|
|
$symbol = $transaction['currency_symbol'];
|
|
if (!isset($amounts[$symbol])) {
|
|
$amounts[$symbol] = [
|
|
'amount' => '0',
|
|
'symbol' => $symbol,
|
|
'decimal_places' => $transaction['currency_decimal_places'],
|
|
];
|
|
}
|
|
$amounts[$symbol]['amount'] = bcadd($amounts[$symbol]['amount'], $transaction['amount']);
|
|
if (null !== $transaction['foreign_amount']) {
|
|
// same for foreign currency:
|
|
$foreignSymbol = $transaction['foreign_currency_symbol'];
|
|
if (!isset($amounts[$foreignSymbol])) {
|
|
$amounts[$foreignSymbol] = [
|
|
'amount' => '0',
|
|
'symbol' => $foreignSymbol,
|
|
'decimal_places' => $transaction['foreign_currency_decimal_places'],
|
|
];
|
|
}
|
|
$amounts[$foreignSymbol]['amount'] = bcadd($amounts[$foreignSymbol]['amount'], $transaction['foreign_amount']);
|
|
}
|
|
}
|
|
|
|
return $amounts;
|
|
}
|
|
} |