firefly-iii/app/controllers/BudgetController.php

199 lines
5.4 KiB
PHP
Raw Normal View History

<?php
use Carbon\Carbon;
2014-07-27 13:29:58 -05:00
use Firefly\Helper\Controllers\BudgetInterface as BI;
use Firefly\Storage\Budget\BudgetRepositoryInterface as BRI;
/**
* Class BudgetController
*/
class BudgetController extends BaseController
{
protected $_budgets;
2014-07-27 13:29:58 -05:00
protected $_repository;
/**
2014-07-28 14:33:32 -05:00
* @param BI $budgets
* @param BRI $repository
*/
2014-07-27 13:29:58 -05:00
public function __construct(BI $budgets, BRI $repository)
{
$this->_budgets = $budgets;
2014-07-27 13:29:58 -05:00
$this->_repository = $repository;
}
/**
* @return $this|\Illuminate\View\View
*/
2014-07-27 13:29:58 -05:00
public function create()
{
2014-07-27 13:29:58 -05:00
$periods = \Config::get('firefly.periods_to_text');
2014-07-27 13:29:58 -05:00
return View::make('budgets.create')->with('periods', $periods);
}
2014-08-10 08:01:46 -05:00
/**
* @param Budget $budget
*
* @return $this
*/
2014-07-28 14:33:32 -05:00
public function delete(Budget $budget)
{
return View::make('budgets.delete')->with('budget', $budget);
}
2014-08-10 08:01:46 -05:00
/**
* @param Budget $budget
*
* @return \Illuminate\Http\RedirectResponse
*/
2014-08-02 08:23:29 -05:00
public function destroy(Budget $budget)
2014-07-28 14:33:32 -05:00
{
2014-08-19 06:24:11 -05:00
Event::fire('budgets.destroy',[$budget]); // just before deletion.
2014-08-02 08:23:29 -05:00
$result = $this->_repository->destroy($budget);
2014-07-28 14:33:32 -05:00
if ($result === true) {
Session::flash('success', 'The budget was deleted.');
if (Input::get('from') == 'date') {
return Redirect::route('budgets.index');
} else {
return Redirect::route('budgets.index.budget');
}
} else {
Session::flash('error', 'Could not delete the budget. Check the logs to be sure.');
}
return Redirect::route('budgets.index');
}
2014-08-10 08:01:46 -05:00
/**
* @param Budget $budget
*
* @return $this
*/
2014-07-28 14:33:32 -05:00
public function edit(Budget $budget)
{
return View::make('budgets.edit')->with('budget', $budget);
}
/**
* @return $this|\Illuminate\View\View
*/
public function indexByBudget()
{
2014-07-27 13:29:58 -05:00
$budgets = $this->_repository->get();
$today = new Carbon;
return View::make('budgets.indexByBudget')->with('budgets', $budgets)->with('today', $today);
}
/**
* @return $this|\Illuminate\View\View
2014-07-27 13:29:58 -05:00
* @throws Firefly\Exception\FireflyException
*/
2014-07-27 13:29:58 -05:00
public function indexByDate()
{
2014-07-27 13:29:58 -05:00
// get a list of dates by getting all repetitions:
$set = $this->_repository->get();
$budgets = $this->_budgets->organizeByDate($set);
2014-07-27 13:29:58 -05:00
return View::make('budgets.indexByDate')->with('budgets', $budgets);
}
/**
* @param Budget $budget
*
* @return int
*/
public function show(Budget $budget)
{
/**
* Use the
*/
$useSessionDates = Input::get('useSession') == 'true' ? true : false;
2014-07-28 14:33:32 -05:00
$filters = [];
2014-07-28 14:33:32 -05:00
if (!is_null(Input::get('rep'))) {
$repetitionId = intval(Input::get('rep'));
2014-08-10 08:01:46 -05:00
$repetitions = $this->_budgets->organizeRepetition($repetitionId);
2014-07-28 14:33:32 -05:00
$filters[] = $repetitions[0]['limit'];
$filters[] = $repetitions[0]['limitrepetition'];
} else {
if (Input::get('noenvelope') == 'true') {
$repetitions = $this->_budgets->outsideRepetitions($budget);
$filters[] = 'no_envelope';
} else {
// grab all limit repetitions, order them, show them:
$repetitions = $this->_budgets->organizeRepetitions($budget,$useSessionDates);
2014-07-28 14:33:32 -05:00
}
}
return View::make('budgets.show')->with('budget', $budget)->with('repetitions', $repetitions)->with(
'filters', $filters
)->with('highlight', Input::get('highlight'))->with('useSessionDates',$useSessionDates);
}
2014-07-27 13:29:58 -05:00
/**
* @return \Illuminate\Http\RedirectResponse
*/
public function store()
{
$budget = $this->_repository->store(Input::all());
2014-08-10 04:30:14 -05:00
if ($budget->validate()) {
2014-08-19 06:24:11 -05:00
Event::fire('budgets.store',[$budget]);
Session::flash('success', 'Budget created!');
2014-07-27 13:29:58 -05:00
if (Input::get('create') == '1') {
return Redirect::route('budgets.create', ['from' => Input::get('from')]);
}
if (Input::get('from') == 'date') {
return Redirect::route('budgets.index');
} else {
return Redirect::route('budgets.index.budget');
}
} else {
Session::flash('error', 'Could not save the new budget');
2014-08-02 08:23:29 -05:00
return Redirect::route('budgets.create')->withInput()->withErrors($budget->errors());
}
2014-07-27 13:29:58 -05:00
}
2014-08-10 08:01:46 -05:00
/**
* @param Budget $budget
*
* @return $this|\Illuminate\Http\RedirectResponse
*/
2014-08-02 08:23:29 -05:00
public function update(Budget $budget)
2014-07-28 14:33:32 -05:00
{
2014-08-02 08:23:29 -05:00
$budget = $this->_repository->update($budget, Input::all());
if ($budget->validate()) {
2014-08-19 06:24:11 -05:00
Event::fire('budgets.update',[$budget]);
2014-08-02 08:23:29 -05:00
Session::flash('success', 'Budget "' . $budget->name . '" updated.');
2014-07-28 14:33:32 -05:00
2014-08-02 08:23:29 -05:00
if (Input::get('from') == 'date') {
return Redirect::route('budgets.index');
} else {
return Redirect::route('budgets.index.budget');
}
2014-07-28 14:33:32 -05:00
} else {
2014-08-02 08:23:29 -05:00
Session::flash('error', 'Could not update budget: ' . $budget->errors()->first());
return Redirect::route('budgets.edit', $budget->id)->withInput()->withErrors($budget->errors());
2014-07-28 14:33:32 -05:00
}
}
2014-07-23 01:16:04 -05:00
}