mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
287 lines
11 KiB
PHP
287 lines
11 KiB
PHP
<?php namespace FireflyIII\Http\Controllers;
|
|
|
|
use Auth;
|
|
use Carbon\Carbon;
|
|
use Config;
|
|
use ExpandedForm;
|
|
use FireflyIII\Http\Requests\AccountFormRequest;
|
|
use FireflyIII\Models\Account;
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|
use Input;
|
|
use Preferences;
|
|
use Session;
|
|
use Steam;
|
|
use URL;
|
|
use View;
|
|
|
|
/**
|
|
* Class AccountController
|
|
*
|
|
* @package FireflyIII\Http\Controllers
|
|
*/
|
|
class AccountController extends Controller
|
|
{
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
View::share('mainTitleIcon', 'fa-credit-card');
|
|
View::share('title', trans('firefly.accounts'));
|
|
}
|
|
|
|
/**
|
|
* @param string $what
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function create($what = 'asset')
|
|
{
|
|
|
|
|
|
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
|
$subTitle = trans('firefly.make_new_' . $what . '_account');
|
|
|
|
// put previous url in session if not redirect from store (not "create another").
|
|
if (Session::get('accounts.create.fromStore') !== true) {
|
|
Session::put('accounts.create.url', URL::previous());
|
|
}
|
|
Session::forget('accounts.create.fromStore');
|
|
Session::flash('gaEventCategory', 'accounts');
|
|
Session::flash('gaEventAction', 'create-' . $what);
|
|
|
|
return view('accounts.create', compact('subTitleIcon', 'what', 'subTitle'));
|
|
|
|
}
|
|
|
|
/**
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param Account $account
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function delete(AccountRepositoryInterface $repository, Account $account)
|
|
{
|
|
$typeName = Config::get('firefly.shortNamesByFullName.' . $account->accountType->type);
|
|
$subTitle = trans('firefly.delete_' . $typeName . '_account', ['name' => $account->name]);
|
|
$accountList = Expandedform::makeSelectList($repository->getAccounts([$account->accountType->type]), true);
|
|
unset($accountList[$account->id]);
|
|
|
|
// put previous url in session
|
|
Session::put('accounts.delete.url', URL::previous());
|
|
Session::flash('gaEventCategory', 'accounts');
|
|
Session::flash('gaEventAction', 'delete-' . $typeName);
|
|
|
|
return view('accounts.delete', compact('account', 'subTitle', 'accountList'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param Account $account
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function destroy(AccountRepositoryInterface $repository, Account $account)
|
|
{
|
|
$type = $account->accountType->type;
|
|
$typeName = Config::get('firefly.shortNamesByFullName.' . $type);
|
|
$name = $account->name;
|
|
$moveTo = Auth::user()->accounts()->find(intval(Input::get('move_account_before_delete')));
|
|
|
|
$repository->destroy($account, $moveTo);
|
|
|
|
Session::flash('success', trans('firefly.' . $typeName . '_deleted', ['name' => $name]));
|
|
Preferences::mark();
|
|
|
|
return redirect(Session::get('accounts.delete.url'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param Account $account
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function edit(AccountRepositoryInterface $repository, Account $account)
|
|
{
|
|
|
|
$what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type];
|
|
$subTitle = trans('firefly.edit_' . $what . '_account', ['name' => $account->name]);
|
|
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
|
$openingBalance = $repository->openingBalanceTransaction($account);
|
|
|
|
// put previous url in session if not redirect from store (not "return_to_edit").
|
|
if (Session::get('accounts.edit.fromUpdate') !== true) {
|
|
Session::put('accounts.edit.url', URL::previous());
|
|
}
|
|
Session::forget('accounts.edit.fromUpdate');
|
|
|
|
// pre fill some useful values.
|
|
|
|
// the opening balance is tricky:
|
|
$openingBalanceAmount = null;
|
|
|
|
if ($openingBalance) {
|
|
$transaction = $repository->getFirstTransaction($openingBalance, $account);
|
|
$openingBalanceAmount = $transaction->amount;
|
|
}
|
|
|
|
$preFilled = [
|
|
'accountRole' => $account->getMeta('accountRole'),
|
|
'ccType' => $account->getMeta('ccType'),
|
|
'ccMonthlyPaymentDate' => $account->getMeta('ccMonthlyPaymentDate'),
|
|
'openingBalanceDate' => $openingBalance ? $openingBalance->date->format('Y-m-d') : null,
|
|
'openingBalance' => $openingBalanceAmount,
|
|
'virtualBalance' => round($account->virtual_balance, 2)
|
|
];
|
|
Session::flash('preFilled', $preFilled);
|
|
Session::flash('gaEventCategory', 'accounts');
|
|
Session::flash('gaEventAction', 'edit-' . $what);
|
|
|
|
return view('accounts.edit', compact('account', 'subTitle', 'subTitleIcon', 'openingBalance', 'what'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param $what
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function index(AccountRepositoryInterface $repository, $what)
|
|
{
|
|
$subTitle = trans('firefly.' . $what . '_accounts');
|
|
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
|
$types = Config::get('firefly.accountTypesByIdentifier.' . $what);
|
|
$accounts = $repository->getAccounts($types);
|
|
// last activity:
|
|
/**
|
|
* HERE WE ARE
|
|
*/
|
|
$start = clone Session::get('start', Carbon::now()->startOfMonth());
|
|
$end = clone Session::get('end', Carbon::now()->endOfMonth());
|
|
$start->subDay();
|
|
|
|
// start balances:
|
|
$ids = [];
|
|
foreach ($accounts as $account) {
|
|
$ids[] = $account->id;
|
|
}
|
|
|
|
$startBalances = Steam::balancesById($ids, $start);
|
|
$endBalances = Steam::balancesById($ids, $end);
|
|
$activities = Steam::getLastActivities($ids);
|
|
|
|
$accounts->each(
|
|
function (Account $account) use ($activities, $startBalances, $endBalances) {
|
|
$account->lastActivityDate = isset($activities[$account->id]) ? $activities[$account->id] : null;
|
|
$account->startBalance = isset($startBalances[$account->id]) ? $startBalances[$account->id] : null;
|
|
$account->endBalance = isset($endBalances[$account->id]) ? $endBalances[$account->id] : null;
|
|
}
|
|
);
|
|
|
|
return view('accounts.index', compact('what', 'subTitleIcon', 'subTitle', 'accounts'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param Account $account
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function show(AccountRepositoryInterface $repository, Account $account)
|
|
{
|
|
$page = intval(Input::get('page')) == 0 ? 1 : intval(Input::get('page'));
|
|
$subTitleIcon = Config::get('firefly.subTitlesByIdentifier.' . $account->accountType->type);
|
|
$what = Config::get('firefly.shortNamesByFullName.' . $account->accountType->type);
|
|
$journals = $repository->getJournals($account, $page);
|
|
$subTitle = trans('firefly.details_for_' . $what, ['name' => $account->name]);
|
|
$journals->setPath('accounts/show/' . $account->id);
|
|
|
|
|
|
return view('accounts.show', compact('account', 'what', 'subTitleIcon', 'journals', 'subTitle'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountFormRequest $request
|
|
* @param AccountRepositoryInterface $repository
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function store(AccountFormRequest $request, AccountRepositoryInterface $repository)
|
|
{
|
|
$accountData = [
|
|
'name' => $request->input('name'),
|
|
'accountType' => $request->input('what'),
|
|
'virtualBalance' => round($request->input('virtualBalance'), 2),
|
|
'virtualBalanceCurrency' => intval($request->input('amount_currency_id_virtualBalance')),
|
|
'active' => true,
|
|
'user' => Auth::user()->id,
|
|
'iban' => $request->input('iban'),
|
|
'accountRole' => $request->input('accountRole'),
|
|
'openingBalance' => round($request->input('openingBalance'), 2),
|
|
'openingBalanceDate' => new Carbon((string)$request->input('openingBalanceDate')),
|
|
'openingBalanceCurrency' => intval($request->input('amount_currency_id_openingBalance')),
|
|
|
|
];
|
|
|
|
$account = $repository->store($accountData);
|
|
|
|
Session::flash('success', 'New account "' . $account->name . '" stored!');
|
|
Preferences::mark();
|
|
|
|
if (intval(Input::get('create_another')) === 1) {
|
|
// set value so create routine will not overwrite URL:
|
|
Session::put('accounts.create.fromStore', true);
|
|
|
|
return redirect(route('accounts.create', [$request->input('what')]))->withInput();
|
|
}
|
|
|
|
// redirect to previous URL.
|
|
return redirect(Session::get('accounts.create.url'));
|
|
}
|
|
|
|
/**
|
|
* @param AccountFormRequest $request
|
|
* @param AccountRepositoryInterface $repository
|
|
* @param Account $account
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function update(AccountFormRequest $request, AccountRepositoryInterface $repository, Account $account)
|
|
{
|
|
|
|
$accountData = [
|
|
'name' => $request->input('name'),
|
|
'active' => $request->input('active'),
|
|
'user' => Auth::user()->id,
|
|
'iban' => $request->input('iban'),
|
|
'accountRole' => $request->input('accountRole'),
|
|
'virtualBalance' => round($request->input('virtualBalance'), 2),
|
|
'openingBalance' => round($request->input('openingBalance'), 2),
|
|
'openingBalanceDate' => new Carbon((string)$request->input('openingBalanceDate')),
|
|
'openingBalanceCurrency' => intval($request->input('balance_currency_id')),
|
|
'ccType' => $request->input('ccType'),
|
|
'ccMonthlyPaymentDate' => $request->input('ccMonthlyPaymentDate'),
|
|
];
|
|
|
|
|
|
$repository->update($account, $accountData);
|
|
|
|
Session::flash('success', 'Account "' . $account->name . '" updated.');
|
|
Preferences::mark();
|
|
|
|
if (intval(Input::get('return_to_edit')) === 1) {
|
|
// set value so edit routine will not overwrite URL:
|
|
Session::put('accounts.edit.fromUpdate', true);
|
|
|
|
return redirect(route('accounts.edit', [$account->id]))->withInput(['return_to_edit' => 1]);
|
|
}
|
|
|
|
// redirect to previous URL.
|
|
return redirect(Session::get('accounts.edit.url'));
|
|
|
|
}
|
|
|
|
}
|