firefly-iii/app/Http/Controllers/CategoryController.php

360 lines
13 KiB
PHP
Raw Normal View History

2016-05-20 01:57:45 -05:00
<?php
/**
* CategoryController.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* 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 01:57:45 -05:00
declare(strict_types = 1);
namespace FireflyIII\Http\Controllers;
2015-02-22 09:19:32 -06:00
2015-02-25 08:19:14 -06:00
use Carbon\Carbon;
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
2015-02-22 09:19:32 -06:00
use FireflyIII\Http\Requests\CategoryFormRequest;
2016-05-24 09:08:43 -05:00
use FireflyIII\Models\AccountType;
2015-02-22 09:19:32 -06:00
use FireflyIII\Models\Category;
2016-10-10 00:49:39 -05:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2016-12-27 03:46:11 -06:00
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
2015-09-25 09:00:14 -05:00
use FireflyIII\Support\CacheProperties;
2016-12-28 06:02:56 -06:00
use Illuminate\Http\Request;
2015-09-25 09:00:14 -05:00
use Illuminate\Support\Collection;
use Navigation;
use Preferences;
2015-02-22 09:19:32 -06:00
use Session;
2015-04-01 02:43:19 -05:00
use URL;
use View;
2015-02-22 09:19:32 -06:00
/**
* Class CategoryController
*
* @package FireflyIII\Http\Controllers
*/
class CategoryController extends Controller
{
2015-02-24 15:53:38 -06:00
/**
2016-02-04 00:27:03 -06:00
*
2015-02-24 15:53:38 -06:00
*/
2015-02-22 09:19:32 -06:00
public function __construct()
{
2015-04-28 08:26:30 -05:00
parent::__construct();
2016-10-29 00:44:46 -05:00
$this->middleware(
function ($request, $next) {
View::share('title', trans('firefly.categories'));
View::share('mainTitleIcon', 'fa-bar-chart');
return $next($request);
}
);
2015-02-22 09:19:32 -06:00
}
/**
* @return View
2015-02-22 09:19:32 -06:00
*/
public function create()
{
2016-02-04 00:27:03 -06:00
if (session('categories.create.fromStore') !== true) {
2015-04-01 02:43:19 -05:00
Session::put('categories.create.url', URL::previous());
}
Session::forget('categories.create.fromStore');
2015-05-25 01:12:31 -05:00
Session::flash('gaEventCategory', 'categories');
Session::flash('gaEventAction', 'create');
2015-06-09 10:56:08 -05:00
$subTitle = trans('firefly.create_new_category');
2015-04-01 02:43:19 -05:00
2015-05-05 03:23:01 -05:00
return view('categories.create', compact('subTitle'));
2015-02-22 09:19:32 -06:00
}
/**
* @param Category $category
*
* @return View
2015-02-22 09:19:32 -06:00
*/
public function delete(Category $category)
{
2015-05-25 15:16:00 -05:00
$subTitle = trans('firefly.delete_category', ['name' => $category->name]);
2015-02-22 09:19:32 -06:00
2015-04-01 02:43:19 -05:00
// put previous url in session
Session::put('categories.delete.url', URL::previous());
2015-05-25 01:12:31 -05:00
Session::flash('gaEventCategory', 'categories');
Session::flash('gaEventAction', 'delete');
2015-04-01 02:43:19 -05:00
2015-02-22 09:19:32 -06:00
return view('categories.delete', compact('category', 'subTitle'));
}
2016-12-27 03:46:11 -06:00
2015-02-22 09:19:32 -06:00
/**
2016-12-27 03:46:11 -06:00
* @param CategoryRepositoryInterface $repository
* @param Category $category
2015-02-22 09:19:32 -06:00
*
2016-12-27 03:46:11 -06:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2015-02-22 09:19:32 -06:00
*/
2016-12-27 03:46:11 -06:00
public function destroy(CategoryRepositoryInterface $repository, Category $category)
2015-02-22 09:19:32 -06:00
{
2016-12-19 14:07:22 -06:00
$name = $category->name;
$categoryId = $category->id;
2015-02-22 09:19:32 -06:00
$repository->destroy($category);
2016-03-20 05:38:01 -05:00
Session::flash('success', strval(trans('firefly.deleted_category', ['name' => e($name)])));
Preferences::mark();
2015-02-22 09:19:32 -06:00
2016-12-19 14:07:22 -06:00
$uri = session('categories.delete.url');
if (!(strpos($uri, sprintf('categories/show/%s', $categoryId)) === false)) {
// uri would point back to category
$uri = route('categories.index');
}
return redirect($uri);
2015-02-22 09:19:32 -06:00
}
/**
* @param Category $category
*
* @return View
2015-02-22 09:19:32 -06:00
*/
public function edit(Category $category)
{
2015-06-09 10:56:08 -05:00
$subTitle = trans('firefly.edit_category', ['name' => $category->name]);
2015-02-22 09:19:32 -06:00
2015-04-01 02:43:19 -05:00
// put previous url in session if not redirect from store (not "return_to_edit").
2016-02-04 00:27:03 -06:00
if (session('categories.edit.fromUpdate') !== true) {
2015-04-01 02:43:19 -05:00
Session::put('categories.edit.url', URL::previous());
}
Session::forget('categories.edit.fromUpdate');
2015-05-25 01:12:31 -05:00
Session::flash('gaEventCategory', 'categories');
Session::flash('gaEventAction', 'edit');
2015-04-01 02:43:19 -05:00
2015-02-22 09:19:32 -06:00
return view('categories.edit', compact('category', 'subTitle'));
}
/**
2016-12-27 03:46:11 -06:00
* @param CategoryRepositoryInterface $repository
*
* @return View
2015-02-22 09:19:32 -06:00
*/
2016-12-27 03:46:11 -06:00
public function index(CategoryRepositoryInterface $repository)
2015-02-22 09:19:32 -06:00
{
2016-04-10 01:18:14 -05:00
$categories = $repository->getCategories();
2015-03-04 02:42:47 -06:00
$categories->each(
function (Category $category) use ($repository) {
$category->lastActivity = $repository->lastUseDate($category, new Collection);
2015-03-04 02:42:47 -06:00
}
);
2015-02-22 09:19:32 -06:00
return view('categories.index', compact('categories'));
}
2015-03-04 02:42:47 -06:00
/**
* @return View
2015-03-04 02:42:47 -06:00
*/
2016-11-05 04:28:10 -05:00
public function noCategory()
2015-03-04 02:42:47 -06:00
{
2016-02-05 08:41:40 -06:00
/** @var Carbon $start */
$start = session('start', Carbon::now()->startOfMonth());
/** @var Carbon $end */
2016-11-05 04:28:10 -05:00
$end = session('end', Carbon::now()->startOfMonth());
2016-11-05 04:26:57 -05:00
// new collector:
2016-12-28 04:34:00 -06:00
/** @var JournalCollectorInterface $collector */
$collector = app(JournalCollectorInterface::class, [auth()->user()]);
2016-11-05 04:26:57 -05:00
$collector->setAllAssetAccounts()->setRange($start, $end)->withoutCategory();//->groupJournals();
$journals = $collector->getJournals();
2015-06-09 10:56:08 -05:00
$subTitle = trans(
'firefly.without_category_between',
['start' => $start->formatLocalized($this->monthAndDayFormat), 'end' => $end->formatLocalized($this->monthAndDayFormat)]
);
2015-03-04 02:42:47 -06:00
2016-11-05 04:26:57 -05:00
return view('categories.no-category', compact('journals', 'subTitle'));
2015-03-04 02:42:47 -06:00
}
/**
2016-12-28 06:02:56 -06:00
* @param Request $request
2016-12-27 23:19:18 -06:00
* @param JournalCollectorInterface $collector
* @param Category $category
2015-03-04 02:42:47 -06:00
*
2016-05-24 09:08:43 -05:00
* @return View
2015-03-04 02:42:47 -06:00
*/
2016-12-28 06:02:56 -06:00
public function show(Request $request, JournalCollectorInterface $collector, Category $category)
2015-03-04 02:42:47 -06:00
{
2016-12-27 03:46:11 -06:00
$range = Preferences::get('viewRange', '1M')->data;
$start = session('start', Navigation::startOfPeriod(new Carbon, $range));
2016-05-13 08:53:39 -05:00
$end = session('end', Navigation::endOfPeriod(new Carbon, $range));
2015-03-04 02:42:47 -06:00
$hideCategory = true; // used in list.
2016-12-28 06:02:56 -06:00
$page = intval($request->get('page')) === 0 ? 1 : intval($request->get('page'));
2016-11-05 02:46:55 -05:00
$pageSize = intval(Preferences::get('transactionPageSize', 50)->data);
2016-05-17 09:00:27 -05:00
$subTitle = $category->name;
$subTitleIcon = 'fa-bar-chart';
2016-11-05 02:46:55 -05:00
2016-12-27 23:19:18 -06:00
$collector->setLimit($pageSize)->setPage($page)->setAllAssetAccounts()->setRange($start, $end)->setCategory($category)->withBudgetInformation();
2016-11-05 02:46:55 -05:00
$journals = $collector->getPaginatedJournals();
$journals->setPath('categories/show/' . $category->id);
2015-03-04 02:42:47 -06:00
2016-12-27 03:46:11 -06:00
$entries = $this->getGroupedEntries($category);
return view('categories.show', compact('category', 'journals', 'entries', 'hideCategory', 'subTitle', 'subTitleIcon', 'start', 'end'));
}
/**
2016-12-28 06:02:56 -06:00
* @param Request $request
2016-12-27 03:46:11 -06:00
* @param CategoryRepositoryInterface $repository
* @param Category $category
*
* @return View
*/
2016-12-28 06:02:56 -06:00
public function showAll(Request $request, CategoryRepositoryInterface $repository, Category $category)
2016-12-27 03:46:11 -06:00
{
$range = Preferences::get('viewRange', '1M')->data;
2016-09-25 01:36:35 -05:00
$start = $repository->firstUseDate($category);
2016-05-13 08:53:39 -05:00
if ($start->year == 1900) {
$start = new Carbon;
}
2016-12-27 03:46:11 -06:00
$end = Navigation::endOfPeriod(new Carbon, $range);
$subTitle = $category->name;
$subTitleIcon = 'fa-bar-chart';
$hideCategory = true; // used in list.
2016-12-28 06:02:56 -06:00
$page = intval($request->get('page')) === 0 ? 1 : intval($request->get('page'));
2016-12-27 03:46:11 -06:00
$pageSize = intval(Preferences::get('transactionPageSize', 50)->data);
2016-12-27 04:02:14 -06:00
$showAll = true;
2015-09-25 09:00:14 -05:00
2016-12-27 23:19:18 -06:00
/** @var JournalCollectorInterface $collector */
2016-12-27 03:46:11 -06:00
$collector = app(JournalCollectorInterface::class);
2016-12-27 23:19:18 -06:00
$collector->setLimit($pageSize)->setPage($page)->setAllAssetAccounts()->setCategory($category)->withBudgetInformation();
2016-12-27 03:46:11 -06:00
$journals = $collector->getPaginatedJournals();
$journals->setPath('categories/show/' . $category->id . '/all');
2015-09-25 09:00:14 -05:00
2016-12-27 04:02:14 -06:00
return view('categories.show', compact('category', 'journals', 'hideCategory', 'subTitle', 'subTitleIcon', 'start', 'end', 'showAll'));
2015-03-04 02:42:47 -06:00
}
2016-01-24 08:58:16 -06:00
/**
2016-12-28 06:02:56 -06:00
* @param Request $request
2016-11-05 12:43:18 -05:00
* @param Category $category
2016-12-28 06:02:56 -06:00
* @param string $date
2016-01-24 08:58:16 -06:00
*
* @return View
2016-01-24 08:58:16 -06:00
*/
2016-12-28 06:02:56 -06:00
public function showByDate(Request $request, Category $category, string $date)
2016-01-24 08:58:16 -06:00
{
$carbon = new Carbon($date);
$range = Preferences::get('viewRange', '1M')->data;
$start = Navigation::startOfPeriod($carbon, $range);
$end = Navigation::endOfPeriod($carbon, $range);
$subTitle = $category->name;
2016-12-27 03:46:11 -06:00
$subTitleIcon = 'fa-bar-chart';
2016-01-24 08:58:16 -06:00
$hideCategory = true; // used in list.
2016-12-28 06:02:56 -06:00
$page = intval($request->get('page')) === 0 ? 1 : intval($request->get('page'));
2016-11-05 02:46:55 -05:00
$pageSize = intval(Preferences::get('transactionPageSize', 50)->data);
2016-12-27 23:19:18 -06:00
/** @var JournalCollectorInterface $collector */
$collector = app(JournalCollectorInterface::class);
2016-12-27 23:19:18 -06:00
$collector->setLimit($pageSize)->setPage($page)->setAllAssetAccounts()->setRange($start, $end)->setCategory($category)->withBudgetInformation();
2016-11-05 02:46:55 -05:00
$journals = $collector->getPaginatedJournals();
2016-01-24 08:58:16 -06:00
$journals->setPath('categories/show/' . $category->id . '/' . $date);
2016-12-27 03:46:11 -06:00
return view('categories.show', compact('category', 'journals', 'hideCategory', 'subTitle', 'subTitleIcon', 'start', 'end'));
2016-01-24 08:58:16 -06:00
}
2015-02-22 09:19:32 -06:00
/**
2016-12-27 03:46:11 -06:00
* @param CategoryFormRequest $request
* @param CategoryRepositoryInterface $repository
2015-02-22 09:19:32 -06:00
*
2016-12-27 03:46:11 -06:00
* @return $this|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2015-02-22 09:19:32 -06:00
*/
2016-12-27 03:46:11 -06:00
public function store(CategoryFormRequest $request, CategoryRepositoryInterface $repository)
2015-02-22 09:19:32 -06:00
{
2016-10-23 05:10:22 -05:00
$data = $request->getCategoryData();
$category = $repository->store($data);
2015-02-22 09:19:32 -06:00
2016-03-20 05:38:01 -05:00
Session::flash('success', strval(trans('firefly.stored_category', ['name' => e($category->name)])));
Preferences::mark();
2015-03-29 14:27:51 -05:00
2016-12-28 06:02:56 -06:00
if (intval($request->get('create_another')) === 1) {
2015-04-01 02:43:19 -05:00
Session::put('categories.create.fromStore', true);
2015-02-22 09:19:32 -06:00
2015-07-06 09:27:21 -05:00
return redirect(route('categories.create'))->withInput();
2015-03-25 10:13:39 -05:00
}
2015-07-06 09:27:21 -05:00
return redirect(route('categories.index'));
2015-02-22 09:19:32 -06:00
}
/**
2016-12-27 03:46:11 -06:00
* @param CategoryFormRequest $request
* @param CategoryRepositoryInterface $repository
* @param Category $category
2015-02-22 09:19:32 -06:00
*
2016-12-27 03:46:11 -06:00
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
2015-02-22 09:19:32 -06:00
*/
2016-12-27 03:46:11 -06:00
public function update(CategoryFormRequest $request, CategoryRepositoryInterface $repository, Category $category)
2015-02-22 09:19:32 -06:00
{
2016-10-23 05:10:22 -05:00
$data = $request->getCategoryData();
$repository->update($category, $data);
2015-02-22 09:19:32 -06:00
2016-03-20 05:38:01 -05:00
Session::flash('success', strval(trans('firefly.updated_category', ['name' => e($category->name)])));
Preferences::mark();
2015-02-22 09:19:32 -06:00
2016-12-28 06:02:56 -06:00
if (intval($request->get('return_to_edit')) === 1) {
2015-04-01 02:43:19 -05:00
Session::put('categories.edit.fromUpdate', true);
2015-07-06 09:27:21 -05:00
return redirect(route('categories.edit', [$category->id]));
}
2015-04-01 02:43:19 -05:00
// redirect to previous URL.
2016-02-04 00:27:03 -06:00
return redirect(session('categories.edit.url'));
2015-02-22 09:19:32 -06:00
}
2016-12-27 03:46:11 -06:00
/**
* @param Category $category
*
* @return Collection
*/
private function getGroupedEntries(Category $category): Collection
{
$repository = app(CategoryRepositoryInterface::class);
$accountRepository = app(AccountRepositoryInterface::class);
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
$first = $repository->firstUseDate($category);
if ($first->year == 1900) {
$first = new Carbon;
}
$range = Preferences::get('viewRange', '1M')->data;
$first = Navigation::startOfPeriod($first, $range);
$end = Navigation::endOfX(new Carbon, $range);
$entries = new Collection;
// properties for entries with their amounts.
$cache = new CacheProperties();
$cache->addProperty($first);
$cache->addProperty($end);
$cache->addProperty('categories.entries');
$cache->addProperty($category->id);
if ($cache->has()) {
return $cache->get();
}
while ($end >= $first) {
$end = Navigation::startOfPeriod($end, $range);
$currentEnd = Navigation::endOfPeriod($end, $range);
$spent = $repository->spentInPeriod(new Collection([$category]), $accounts, $end, $currentEnd);
$earned = $repository->earnedInPeriod(new Collection([$category]), $accounts, $end, $currentEnd);
$dateStr = $end->format('Y-m-d');
$dateName = Navigation::periodShow($end, $range);
$entries->push([$dateStr, $dateName, $spent, $earned]);
$end = Navigation::subtractPeriod($end, $range, 1);
}
$cache->store($entries);
return $entries;
}
2015-02-22 09:19:32 -06:00
}