Some preliminary work on issue #6. Breaks a lot of tests. [skip ci]

This commit is contained in:
James Cole
2014-08-13 20:36:32 +02:00
parent f52cc01a8e
commit 9e77bf51bb
8 changed files with 194 additions and 150 deletions

View File

@@ -25,13 +25,21 @@ class PiggybankController extends BaseController
/**
* @return $this
*/
public function create()
public function createPiggybank()
{
$accounts = $this->_accounts->getActiveDefaultAsSelectList();
return View::make('piggybanks.create-piggybank')->with('accounts', $accounts);
}
public function createRepeated()
{
$accounts = $this->_accounts->getActiveDefaultAsSelectList();
return View::make('piggybanks.create')->with('accounts', $accounts);
}
/**
* @param Piggybank $piggyBank
*
@@ -72,20 +80,12 @@ class PiggybankController extends BaseController
*/
public function index()
{
$count = $this->_repository->count();
$countRepeating = $this->_repository->countRepeating();
$countNonRepeating = $this->_repository->countNonrepeating();
$piggybanks = $this->_repository->get();
$accounts = [];
// get accounts:
foreach ($piggybanks as $piggyBank) {
$account = $piggyBank->account;
$id = $account->id;
$accounts[$id] = $account;
}
return View::make('piggybanks.index')->with('count', $count)->with('accounts', $accounts)->with(
'piggybanks', $piggybanks
);
return View::make('piggybanks.index')->with('piggybanks', $piggybanks)
->with('countRepeating',$countRepeating)
->with('countNonRepeating',$countNonRepeating);
}
/**
@@ -96,6 +96,34 @@ class PiggybankController extends BaseController
return View::make('piggybanks.show')->with('piggyBank', $piggyBank);
}
/**
* @return $this|\Illuminate\Http\RedirectResponse
*/
public function storePiggybank()
{
$data = Input::all();
unset($data['_token']);
// extend the data array with the settings needed to create a piggy bank:
$data['repeats'] = 0;
$data['rep_times'] = 0;
$data['order'] = 0;
$piggyBank = $this->_repository->store($data);
if ($piggyBank->validate()) {
Session::flash('success', 'New piggy bank "' . $piggyBank->name . '" created!');
return Redirect::route('piggybanks.index');
} else {
Session::flash('error', 'Could not save piggy bank: ' . $piggyBank->errors()->first());
return Redirect::route('piggybanks.create.piggybank')->withInput()->withErrors($piggyBank->errors());
}
}
/**
* @return $this|\Illuminate\Http\RedirectResponse
*/