2016-05-20 08:57:45 +02:00
|
|
|
<?php
|
2016-05-20 12:27:31 +02:00
|
|
|
/**
|
|
|
|
* HomeController.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 12:27:31 +02:00
|
|
|
*/
|
|
|
|
|
2016-05-20 08:57:45 +02:00
|
|
|
declare(strict_types = 1);
|
|
|
|
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;
|
2016-02-11 12:49:04 +01:00
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
2016-11-20 08:57:48 +01:00
|
|
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
2016-05-13 17:22:24 +02:00
|
|
|
use FireflyIII\Models\AccountType;
|
2017-03-05 13:21:36 +01:00
|
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
2016-11-22 19:10:38 +01:00
|
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
2016-06-11 07:38:30 +02:00
|
|
|
use Illuminate\Http\Request;
|
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;
|
2015-04-07 18:26:14 +02:00
|
|
|
use Session;
|
2016-10-29 07:44:46 +02:00
|
|
|
use View;
|
2016-02-11 12:49:04 +01:00
|
|
|
|
2015-02-06 21:23:14 +01:00
|
|
|
/**
|
|
|
|
* Class HomeController
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Http\Controllers
|
|
|
|
*/
|
2015-02-06 07:23:26 +01:00
|
|
|
class HomeController extends Controller
|
|
|
|
{
|
2016-01-09 08:20:55 +01:00
|
|
|
/**
|
|
|
|
* HomeController constructor.
|
|
|
|
*/
|
2016-01-08 18:29:47 +01:00
|
|
|
public function __construct()
|
|
|
|
{
|
2016-01-08 19:13:51 +01:00
|
|
|
parent::__construct();
|
2016-10-29 07:44:46 +02:00
|
|
|
View::share('title', 'Firefly III');
|
|
|
|
View::share('mainTitleIcon', 'fa-fire');
|
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
|
|
|
|
*/
|
|
|
|
public function dateRange(Request $request)
|
2015-03-02 13:19:13 +01:00
|
|
|
{
|
2016-02-23 16:15:53 +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) {
|
2016-03-20 11:38:01 +01:00
|
|
|
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
|
|
|
|
2016-04-29 08:56:56 +02:00
|
|
|
Session::put('is_custom_range', $isCustomRange);
|
2015-03-02 13:19:13 +01:00
|
|
|
Session::put('start', $start);
|
|
|
|
Session::put('end', $end);
|
2015-03-02 12:35:14 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 16:15:53 +01:00
|
|
|
/**
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
2016-02-17 21:14:32 +01:00
|
|
|
public function displayError()
|
|
|
|
{
|
|
|
|
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']);
|
2015-07-22 22:13:40 +02:00
|
|
|
Artisan::call('cache:clear');
|
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
|
2015-04-13 20:43:58 +02:00
|
|
|
*
|
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');
|
2016-10-09 08:18:47 +02:00
|
|
|
$count = $repository->count($types);
|
2015-06-01 18:13:54 +02:00
|
|
|
|
2015-06-02 17:14:03 +02:00
|
|
|
if ($count == 0) {
|
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(
|
2016-10-10 07:49:39 +02: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 */
|
2016-02-07 08:31:21 +01:00
|
|
|
$start = session('start', Carbon::now()->startOfMonth());
|
2016-02-05 15:41:40 +01:00
|
|
|
/** @var Carbon $end */
|
2016-10-14 20:01:17 +02:00
|
|
|
$end = session('end', Carbon::now()->endOfMonth());
|
|
|
|
$showTour = Preferences::get('tour', true)->data;
|
|
|
|
$accounts = $repository->getAccountsById($frontPage->data);
|
|
|
|
$showDepositsFrontpage = Preferences::get('showDepositsFrontpage', false)->data;
|
2015-04-09 11:52:35 +02:00
|
|
|
|
2016-11-22 19:10:38 +01: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
|
|
|
|
2015-07-12 12:45:41 +02:00
|
|
|
return view(
|
2016-11-22 19:10:38 +01:00
|
|
|
'index', compact('count', 'showTour', 'title', 'subTitle', 'mainTitleIcon', 'transactions', 'showDepositsFrontpage', 'billCount')
|
2015-07-12 12:45:41 +02:00
|
|
|
);
|
2015-02-06 07:23:26 +01:00
|
|
|
}
|
2015-06-29 15:23:50 +02:00
|
|
|
|
2016-10-20 16:51:05 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
|
|
*/
|
|
|
|
public function testFlash()
|
|
|
|
{
|
|
|
|
Session::flash('success', 'This is a success message.');
|
|
|
|
Session::flash('info', 'This is an info message.');
|
|
|
|
Session::flash('warning', 'This is a warning.');
|
|
|
|
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'));
|
|
|
|
}
|
2016-02-23 20:22:53 +01:00
|
|
|
|
2015-02-06 04:39:52 +01:00
|
|
|
}
|