firefly-iii/app/controllers/PiggybankController.php

96 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2014-07-31 15:01:52 -05:00
use Firefly\Storage\Account\AccountRepositoryInterface as ARI;
use Firefly\Storage\Piggybank\PiggybankRepositoryInterface as PRI;
/**
* Class PiggybankController
*/
class PiggybankController extends BaseController
{
protected $_repository;
protected $_accounts;
public function __construct(PRI $repository, ARI $accounts)
{
$this->_repository = $repository;
$this->_accounts = $accounts;
View::share('menu', 'home');
}
public function create()
{
2014-07-31 15:01:52 -05:00
$accounts = $this->_accounts->getActiveDefaultAsSelectList();
return View::make('piggybanks.create')->with('accounts', $accounts);
}
public function delete()
{
}
public function destroy()
{
}
public function edit()
{
}
2014-08-01 00:04:36 -05:00
public function updateAmount(Piggybank $piggybank) {
$this->_repository->updateAmount($piggybank,Input::get('amount'));
}
public function index()
{
2014-07-31 15:01:52 -05:00
$count = $this->_repository->count();
$piggybanks = $this->_repository->get();
$accounts = [];
// get accounts:
2014-08-01 00:04:36 -05:00
foreach ($piggybanks as $piggyBank) {
2014-07-31 15:01:52 -05:00
$account = $piggyBank->account;
2014-08-01 00:04:36 -05:00
$piggyBank->pct = round(($piggyBank->amount / $piggyBank->target) * 100, 2) . '%';
2014-07-31 15:01:52 -05:00
$id = $account->id;
2014-08-01 00:04:36 -05:00
if (!isset($accounts[$id])) {
2014-07-31 15:01:52 -05:00
$account->balance = $account->balance();
2014-08-01 00:04:36 -05:00
$account->left = $account->balance - $piggyBank->amount;
2014-07-31 15:01:52 -05:00
} else {
2014-08-01 00:04:36 -05:00
echo $account->left.'-';
echo '('.$piggyBank->amount.')';
2014-07-31 15:01:52 -05:00
$account->left -= $piggyBank->amount;
2014-08-01 00:04:36 -05:00
echo $account->left;
2014-07-31 15:01:52 -05:00
}
$accounts[$id] = $account;
}
2014-08-01 00:04:36 -05:00
return View::make('piggybanks.index')->with('count', $count)->with('accounts', $accounts)->with(
'piggybanks', $piggybanks
);
}
public function show()
{
}
public function store()
{
2014-07-31 15:01:52 -05:00
$piggyBank = $this->_repository->store(Input::all());
2014-08-01 00:04:36 -05:00
if (!$piggyBank->id) {
Session::flash('error', 'Could not save piggy bank: ' . $piggyBank->errors()->first());
2014-07-31 15:01:52 -05:00
return Redirect::route('piggybanks.create')->withInput();
} else {
2014-08-01 00:04:36 -05:00
Session::flash('success', 'New piggy bank created!');
2014-07-31 15:01:52 -05:00
return Redirect::route('piggybanks.index');
}
}
public function update()
{
}
}