Files
firefly-iii/app/Http/Controllers/HomeController.php

244 lines
9.0 KiB
PHP
Raw Normal View History

2016-05-20 08:57:45 +02:00
<?php
/**
* HomeController.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:41:58 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2016-05-20 08:57:45 +02:00
namespace FireflyIII\Http\Controllers;
2015-02-06 04:39:52 +01:00
2015-07-26 15:51:07 +02:00
use Artisan;
2015-02-07 06:49:24 +01:00
use Carbon\Carbon;
2017-12-29 09:05:35 +01:00
use Exception;
2017-12-28 19:03:15 +01:00
use FireflyIII\Events\RequestedVersionCheckStatus;
use FireflyIII\Exceptions\FireflyException;
2016-11-20 08:57:48 +01:00
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
2017-12-19 19:25:50 +01:00
use FireflyIII\Http\Middleware\IsDemoUser;
use FireflyIII\Http\Middleware\IsSandStormUser;
2017-12-15 12:59:21 +01:00
use FireflyIII\Models\AccountType;
2017-03-05 13:21:36 +01:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2017-10-16 19:01:26 +02:00
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
2016-06-11 07:38:30 +02:00
use Illuminate\Http\Request;
use Illuminate\Routing\Route;
2016-05-13 15:53:39 +02:00
use Illuminate\Support\Collection;
2016-06-11 07:38:30 +02:00
use Log;
2015-02-07 06:49:24 +01:00
use Preferences;
2017-12-15 12:59:21 +01:00
use Response;
use Route as RouteFacade;
2016-10-29 07:44:46 +02:00
use View;
2015-02-06 21:23:14 +01:00
/**
2017-11-15 12:25:49 +01:00
* Class HomeController.
2015-02-06 21:23:14 +01:00
*/
2015-02-06 07:23:26 +01:00
class HomeController extends Controller
{
/**
* HomeController constructor.
*/
2016-01-08 18:29:47 +01:00
public function __construct()
{
2016-01-08 19:13:51 +01:00
parent::__construct();
2017-12-16 19:46:36 +01:00
app('view')->share('title', 'Firefly III');
app('view')->share('mainTitleIcon', 'fa-fire');
2017-12-19 19:25:50 +01:00
$this->middleware(IsDemoUser::class)->except(['dateRange', 'index']);
$this->middleware(IsSandStormUser::class)->only('routes');
2016-01-08 18:29:47 +01:00
}
2015-02-06 04:39:52 +01:00
2016-06-11 07:38:30 +02:00
/**
* @param Request $request
2017-12-15 12:59:21 +01:00
*
* @return \Illuminate\Http\JsonResponse
2016-06-11 07:38:30 +02:00
*/
public function dateRange(Request $request)
2015-03-02 13:19:13 +01:00
{
2016-06-11 07:38:30 +02:00
$start = new Carbon($request->get('start'));
$end = new Carbon($request->get('end'));
$label = $request->get('label');
2016-04-29 08:56:56 +02:00
$isCustomRange = false;
2016-04-25 21:37:08 +02:00
2016-06-11 07:38:30 +02:00
Log::debug('Received dateRange', ['start' => $request->get('start'), 'end' => $request->get('end'), 'label' => $request->get('label')]);
2016-04-25 21:37:08 +02:00
// check if the label is "everything" or "Custom range" which will betray
// a possible problem with the budgets.
if ($label === strval(trans('firefly.everything')) || $label === strval(trans('firefly.customRange'))) {
2016-04-29 08:56:56 +02:00
$isCustomRange = true;
2016-06-11 07:38:30 +02:00
Log::debug('Range is now marked as "custom".');
2016-04-25 21:37:08 +02:00
}
2015-03-02 13:19:13 +01:00
$diff = $start->diffInDays($end);
if ($diff > 50) {
2017-12-15 12:59:21 +01:00
$request->session()->flash('warning', strval(trans('firefly.warning_much_data', ['days' => $diff])));
2015-03-02 13:19:13 +01:00
}
2015-03-02 12:35:14 +01:00
2017-12-15 12:59:21 +01:00
$request->session()->put('is_custom_range', $isCustomRange);
Log::debug(sprintf('Set is_custom_range to %s', var_export($isCustomRange, true)));
$request->session()->put('start', $start);
Log::debug(sprintf('Set start to %s', $start->format('Y-m-d H:i:s')));
$request->session()->put('end', $end);
Log::debug(sprintf('Set end to %s', $end->format('Y-m-d H:i:s')));
return Response::json(['ok' => 'ok']);
2015-03-02 12:35:14 +01:00
}
2017-11-01 20:23:28 +01:00
/**
* @throws FireflyException
*/
2016-02-17 21:14:32 +01:00
public function displayError()
{
2017-09-03 16:09:27 +02:00
Log::debug('This is a test message at the DEBUG level.');
Log::info('This is a test message at the INFO level.');
Log::notice('This is a test message at the NOTICE level.');
Log::warning('This is a test message at the WARNING level.');
Log::error('This is a test message at the ERROR level.');
Log::critical('This is a test message at the CRITICAL level.');
Log::alert('This is a test message at the ALERT level.');
Log::emergency('This is a test message at the EMERGENCY level.');
2016-02-17 21:14:32 +01:00
throw new FireflyException('A very simple test error.');
}
2015-04-07 20:54:43 +02:00
/**
2017-02-12 12:21:44 +01:00
* @param Request $request
2016-03-12 14:20:45 +01:00
*
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2015-04-07 20:54:43 +02:00
*/
2017-02-12 12:21:44 +01:00
public function flush(Request $request)
2015-04-07 18:26:14 +02:00
{
2015-07-05 14:37:36 +02:00
Preferences::mark();
2017-02-17 06:42:36 +01:00
$request->session()->forget(['start', 'end', '_previous', 'viewRange', 'range', 'is_custom_range']);
2017-12-10 18:09:36 +01:00
Log::debug('Call cache:clear...');
2015-07-22 22:13:40 +02:00
Artisan::call('cache:clear');
2017-12-10 18:09:36 +01:00
Log::debug('Call config:clear...');
Artisan::call('config:clear');
Log::debug('Call route:clear...');
Artisan::call('route:clear');
Log::debug('Call twig:clean...');
2017-12-11 14:52:30 +01:00
try {
Artisan::call('twig:clean');
2017-12-29 09:05:35 +01:00
} catch (Exception $e) {
2017-12-11 14:52:30 +01:00
// dont care
}
2017-12-10 18:09:36 +01:00
Log::debug('Call view:clear...');
Artisan::call('view:clear');
Log::debug('Done! Redirecting...');
2015-04-07 18:26:14 +02:00
2015-07-06 16:27:21 +02:00
return redirect(route('index'));
2015-03-31 20:46:37 +02:00
}
2015-02-06 07:23:26 +01:00
/**
2017-03-05 13:21:36 +01:00
* @param AccountRepositoryInterface $repository
*
2016-11-05 18:43:18 +01:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|View
2015-02-06 07:23:26 +01:00
*/
2017-03-05 13:21:36 +01:00
public function index(AccountRepositoryInterface $repository)
2015-02-06 07:23:26 +01:00
{
2016-04-26 21:40:15 +02:00
$types = config('firefly.accountTypesByIdentifier.asset');
$count = $repository->count($types);
2015-06-01 18:13:54 +02:00
2017-11-15 12:25:49 +01:00
if (0 === $count) {
2015-07-06 16:27:21 +02:00
return redirect(route('new-user.index'));
2015-06-01 18:13:54 +02:00
}
2016-10-29 07:44:46 +02:00
$subTitle = trans('firefly.welcomeBack');
$transactions = [];
$frontPage = Preferences::get(
2017-11-15 10:52:29 +01:00
'frontPageAccounts',
$repository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET])->pluck('id')->toArray()
2016-05-13 17:22:24 +02:00
);
2016-02-05 15:41:40 +01:00
/** @var Carbon $start */
$start = session('start', Carbon::now()->startOfMonth());
2016-02-05 15:41:40 +01:00
/** @var Carbon $end */
2017-09-16 09:24:48 +02:00
$end = session('end', Carbon::now()->endOfMonth());
$accounts = $repository->getAccountsById($frontPage->data);
2017-11-17 19:31:48 +01:00
$today = new Carbon;
2017-10-16 19:01:26 +02:00
// zero bills? Hide some elements from view.
/** @var BillRepositoryInterface $billRepository */
$billRepository = app(BillRepositoryInterface::class);
$billCount = $billRepository->getBills()->count();
2015-02-07 06:49:24 +01:00
foreach ($accounts as $account) {
2016-11-20 08:57:48 +01:00
$collector = app(JournalCollectorInterface::class);
2016-11-05 10:42:31 +01:00
$collector->setAccounts(new Collection([$account]))->setRange($start, $end)->setLimit(10)->setPage(1);
2016-11-25 16:55:04 +01:00
$set = $collector->getJournals();
$transactions[] = [$set, $account];
2015-02-07 06:49:24 +01:00
}
2015-06-03 21:25:11 +02:00
2017-12-28 19:03:15 +01:00
// fire check update event:
event(new RequestedVersionCheckStatus(auth()->user()));
2015-07-12 12:45:41 +02:00
return view(
2017-11-15 10:52:29 +01:00
'index',
2018-03-09 05:44:35 +01:00
compact('count', 'subTitle', 'transactions', 'billCount', 'start', 'end', 'today')
2015-07-12 12:45:41 +02:00
);
2015-02-06 07:23:26 +01:00
}
2015-06-29 15:23:50 +02:00
/**
* @return string
*/
public function routes()
{
$set = RouteFacade::getRoutes();
2017-10-05 11:49:06 +02:00
$ignore = ['chart.', 'javascript.', 'json.', 'report-data.', 'popup.', 'debugbar.', 'attachments.download', 'attachments.preview',
'bills.rescan', 'budgets.income', 'currencies.def', 'error', 'flush', 'help.show', 'import.file',
'login', 'logout', 'password.reset', 'profile.confirm-email-change', 'profile.undo-email-change',
'register', 'report.options', 'routes', 'rule-groups.down', 'rule-groups.up', 'rules.up', 'rules.down',
'rules.select', 'search.search', 'test-flash', 'transactions.link.delete', 'transactions.link.switch',
2018-01-10 07:29:55 +01:00
'two-factor.lost', 'reports.options', 'debug', 'import.create-job', 'import.download', 'import.start', 'import.status.json',
'preferences.delete-code', 'rules.test-triggers', 'piggy-banks.remove-money', 'piggy-banks.add-money',
'accounts.reconcile.transactions', 'accounts.reconcile.overview', 'export.download',
'transactions.clone', 'two-factor.index',
2017-10-02 16:24:31 +02:00
];
$return = '&nbsp;';
/** @var Route $route */
foreach ($set as $route) {
$name = $route->getName();
2017-11-15 12:25:49 +01:00
if (null !== $name && in_array('GET', $route->methods()) && strlen($name) > 0) {
2018-01-10 07:29:55 +01:00
$found = false;
foreach ($ignore as $string) {
2018-01-10 07:29:55 +01:00
if (!(false === stripos($name, $string))) {
$found = true;
2018-01-10 07:29:55 +01:00
break;
}
}
2018-01-10 07:29:55 +01:00
if ($found === false) {
$return .= 'touch ' . $route->getName() . '.md;';
}
}
}
return $return;
}
2016-10-20 16:51:05 +02:00
/**
2017-12-17 14:30:53 +01:00
* @param Request $request
*
2016-10-20 16:51:05 +02:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
*/
2017-12-15 12:59:21 +01:00
public function testFlash(Request $request)
2016-10-20 16:51:05 +02:00
{
2017-12-15 12:59:21 +01:00
$request->session()->flash('success', 'This is a success message.');
$request->session()->flash('info', 'This is an info message.');
$request->session()->flash('warning', 'This is a warning.');
$request->session()->flash('error', 'This is an error!');
2016-10-22 09:33:03 +02:00
2016-10-20 16:51:05 +02:00
return redirect(route('home'));
}
2015-02-06 04:39:52 +01:00
}