2014-06-28 02:41:44 -05:00
|
|
|
<?php
|
2014-12-13 06:07:32 -06:00
|
|
|
use Carbon\Carbon;
|
2014-06-30 00:26:38 -05:00
|
|
|
|
2014-07-15 15:16:29 -05:00
|
|
|
/**
|
|
|
|
* Class HomeController
|
2014-09-09 13:00:04 -05:00
|
|
|
*
|
2014-07-15 15:16:29 -05:00
|
|
|
*/
|
2014-07-06 08:18:11 -05:00
|
|
|
class HomeController extends BaseController
|
|
|
|
{
|
2014-08-09 01:18:07 -05:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function flush()
|
|
|
|
{
|
|
|
|
Cache::flush();
|
|
|
|
|
|
|
|
return Redirect::route('index');
|
|
|
|
}
|
|
|
|
|
2014-07-15 15:16:29 -05:00
|
|
|
/**
|
|
|
|
* @return $this|\Illuminate\View\View
|
|
|
|
*/
|
2014-07-06 08:18:11 -05:00
|
|
|
public function index()
|
|
|
|
{
|
2014-09-09 13:00:04 -05:00
|
|
|
// count, maybe Firefly needs some introducing text to show:
|
2014-11-11 11:16:59 -06:00
|
|
|
/** @var \FireflyIII\Database\Account $acct */
|
|
|
|
$acct = App::make('FireflyIII\Database\Account');
|
|
|
|
|
|
|
|
/** @var \FireflyIII\Database\TransactionJournal $jrnls */
|
|
|
|
$jrnls = App::make('FireflyIII\Database\TransactionJournal');
|
|
|
|
|
2014-11-12 07:38:32 -06:00
|
|
|
/** @var \FireflyIII\Shared\Preferences\PreferencesInterface $preferences */
|
|
|
|
$preferences = App::make('FireflyIII\Shared\Preferences\PreferencesInterface');
|
|
|
|
|
2014-11-11 11:16:59 -06:00
|
|
|
$count = $acct->countAssetAccounts();
|
|
|
|
|
2014-12-13 06:07:32 -06:00
|
|
|
$start = Session::get('start', Carbon::now()->startOfMonth());
|
|
|
|
$end = Session::get('end', Carbon::now()->endOfMonth());
|
2014-07-05 12:44:26 -05:00
|
|
|
|
2014-07-20 11:24:27 -05:00
|
|
|
|
|
|
|
// get the preference for the home accounts to show:
|
2014-11-12 07:38:32 -06:00
|
|
|
$frontpage = $preferences->get('frontpageAccounts', []);
|
2014-07-23 09:44:20 -05:00
|
|
|
if ($frontpage->data == []) {
|
2014-11-11 11:16:59 -06:00
|
|
|
$accounts = $acct->getAssetAccounts();
|
2014-07-21 00:40:38 -05:00
|
|
|
} else {
|
2014-11-11 11:16:59 -06:00
|
|
|
$accounts = $acct->getByIds($frontpage->data);
|
2014-07-21 00:40:38 -05:00
|
|
|
}
|
|
|
|
|
2014-07-20 11:24:27 -05:00
|
|
|
$transactions = [];
|
2014-07-23 09:44:20 -05:00
|
|
|
foreach ($accounts as $account) {
|
2014-11-11 11:16:59 -06:00
|
|
|
$set = $jrnls->getInDateRangeAccount($account, 10, $start, $end);
|
2014-07-24 15:16:42 -05:00
|
|
|
if (count($set) > 0) {
|
|
|
|
$transactions[] = [$set, $account];
|
|
|
|
}
|
2014-07-20 11:24:27 -05:00
|
|
|
}
|
|
|
|
|
2014-07-06 08:18:11 -05:00
|
|
|
// build the home screen:
|
2014-11-12 15:36:02 -06:00
|
|
|
return View::make('index')->with('count', $count)->with('transactions', $transactions)->with('title', 'Firefly')->with('subTitle', 'What\'s playing?')
|
|
|
|
->with('mainTitleIcon', 'fa-fire');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $range
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function rangeJump($range)
|
|
|
|
{
|
|
|
|
|
|
|
|
$valid = ['1D', '1W', '1M', '3M', '6M', '1Y',];
|
|
|
|
|
|
|
|
/** @var \FireflyIII\Shared\Preferences\PreferencesInterface $preferences */
|
|
|
|
$preferences = App::make('FireflyIII\Shared\Preferences\PreferencesInterface');
|
|
|
|
|
|
|
|
if (in_array($range, $valid)) {
|
|
|
|
$preferences->set('viewRange', $range);
|
|
|
|
Session::forget('range');
|
|
|
|
}
|
|
|
|
|
|
|
|
return Redirect::back();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function sessionNext()
|
|
|
|
{
|
2014-11-21 04:12:22 -06:00
|
|
|
Navigation::next();
|
2014-11-12 15:36:02 -06:00
|
|
|
|
|
|
|
return Redirect::back();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function sessionPrev()
|
|
|
|
{
|
2014-11-21 04:12:22 -06:00
|
|
|
Navigation::prev();
|
2014-11-12 15:36:02 -06:00
|
|
|
|
|
|
|
return Redirect::back();
|
2014-07-06 08:18:11 -05:00
|
|
|
}
|
2014-07-04 04:39:21 -05:00
|
|
|
}
|