auth = $auth; } /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $theNext * @SuppressWarnings(PHPMD.CyclomaticComplexity) * * @return mixed */ public function handle(Request $request, Closure $theNext) { if ($this->auth->check()) { // ignore preference. set the range to be the current month: if (!Session::has('start') && !Session::has('end')) { /** @var \FireflyIII\Models\Preference $viewRange */ $viewRange = Preferences::get('viewRange', '1M')->data; $start = new Carbon; $start = Navigation::updateStartDate($viewRange, $start); $end = Navigation::updateEndDate($viewRange, $start); Session::put('start', $start); Session::put('end', $end); } if (!Session::has('first')) { /** @var \FireflyIII\Repositories\Journal\JournalRepositoryInterface $repository */ $repository = App::make('FireflyIII\Repositories\Journal\JournalRepositoryInterface'); $journal = $repository->first(); if ($journal) { Session::put('first', $journal->date); } else { Session::put('first', Carbon::now()->startOfYear()); } } $current = Carbon::now()->formatLocalized('%B %Y'); $next = Carbon::now()->endOfMonth()->addDay()->formatLocalized('%B %Y'); $prev = Carbon::now()->startOfMonth()->subDay()->formatLocalized('%B %Y'); View::share('currentMonthName', $current); View::share('previousMonthName', $prev); View::share('nextMonthName', $next); } return $theNext($request); } }