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

219 lines
7.4 KiB
PHP
Raw Normal View History

2015-05-16 09:41:14 +02: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-02-05 12:08:25 +01:00
declare(strict_types = 1);
2015-05-16 09:41:14 +02:00
namespace FireflyIII\Http\Controllers\Chart;
use Carbon\Carbon;
2016-05-02 20:49:19 +02:00
use FireflyIII\Generator\Chart\Category\CategoryChartGeneratorInterface;
2015-05-16 09:41:14 +02:00
use FireflyIII\Http\Controllers\Controller;
2016-07-02 17:39:58 +02:00
use FireflyIII\Models\AccountType;
2015-05-16 09:41:14 +02:00
use FireflyIII\Models\Category;
2016-10-10 07:49:39 +02:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2015-12-29 22:48:55 +01:00
use FireflyIII\Repositories\Category\CategoryRepositoryInterface as CRI;
2015-06-03 18:22:47 +02:00
use FireflyIII\Support\CacheProperties;
2015-06-27 11:44:18 +02:00
use Illuminate\Support\Collection;
2015-05-16 09:41:14 +02:00
use Navigation;
use Preferences;
use Response;
2016-01-02 16:32:08 +01:00
use stdClass;
2015-05-16 09:41:14 +02:00
/**
* Class CategoryController
*
* @package FireflyIII\Http\Controllers\Chart
*/
class CategoryController extends Controller
{
2016-05-02 20:49:19 +02:00
/** @var CategoryChartGeneratorInterface */
2015-06-27 11:44:18 +02:00
protected $generator;
/**
2016-02-04 07:27:03 +01:00
*
2015-06-27 11:44:18 +02:00
*/
public function __construct()
{
parent::__construct();
// create chart generator:
2016-05-02 20:49:19 +02:00
$this->generator = app(CategoryChartGeneratorInterface::class);
2015-06-27 11:44:18 +02:00
}
2015-05-16 09:41:14 +02:00
/**
2015-05-16 10:13:41 +02:00
* Show an overview for a category for all time, per month/week/year.
2015-05-16 09:41:14 +02:00
*
2016-10-10 07:49:39 +02:00
* @param CRI $repository
* @param AccountRepositoryInterface $accountRepository
* @param Category $category
2015-05-16 09:41:14 +02:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
2016-10-10 07:49:39 +02:00
public function all(CRI $repository, AccountRepositoryInterface $accountRepository, Category $category)
2015-05-16 09:41:14 +02:00
{
2016-09-25 08:36:35 +02:00
$start = $repository->firstUseDate($category);
2016-05-09 20:15:26 +02:00
$range = Preferences::get('viewRange', '1M')->data;
$start = Navigation::startOfPeriod($start, $range);
$categoryCollection = new Collection([$category]);
$end = new Carbon;
$entries = new Collection;
$cache = new CacheProperties;
2016-10-10 07:49:39 +02:00
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
2015-06-27 11:44:18 +02:00
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty('all');
$cache->addProperty('categories');
if ($cache->has()) {
2016-05-13 15:53:39 +02:00
return Response::json($cache->get());
2015-06-27 11:44:18 +02:00
}
2015-12-31 07:49:19 +01:00
2015-06-27 11:44:18 +02:00
while ($start <= $end) {
2015-05-16 10:13:41 +02:00
$currentEnd = Navigation::endOfPeriod($start, $range);
2016-07-02 17:39:58 +02:00
$spent = $repository->spentInPeriod($categoryCollection, $accounts, $start, $currentEnd);
$earned = $repository->earnedInPeriod($categoryCollection, $accounts, $start, $currentEnd);
2016-05-15 18:36:40 +02:00
$date = Navigation::periodShow($start, $range);
$entries->push([clone $start, $date, $spent, $earned]);
2015-05-16 10:13:41 +02:00
$start = Navigation::addPeriod($start, $range, 0);
2015-05-16 09:41:14 +02:00
}
$entries = $entries->reverse();
2015-09-25 20:15:38 +02:00
$entries = $entries->slice(0, 48);
$entries = $entries->reverse();
$data = $this->generator->all($entries);
2015-06-27 11:44:18 +02:00
$cache->store($data);
2015-05-16 09:41:14 +02:00
2015-06-27 11:44:18 +02:00
return Response::json($data);
2016-05-09 20:15:26 +02:00
2015-05-16 09:41:14 +02:00
}
2016-01-29 07:33:49 +01:00
/**
2016-05-09 20:15:26 +02:00
* @param CRI $repository
2016-01-29 07:33:49 +01:00
* @param Category $category
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function currentPeriod(CRI $repository, Category $category)
2016-01-29 07:33:49 +01:00
{
2016-02-04 07:27:03 +01:00
$start = clone session('start', Carbon::now()->startOfMonth());
$end = session('end', Carbon::now()->endOfMonth());
2016-01-29 07:33:49 +01:00
$data = $this->makePeriodChart($repository, $category, $start, $end);
return Response::json($data);
}
2015-05-16 09:41:14 +02:00
/**
2016-10-10 07:49:39 +02:00
* @param CRI $repository
* @param AccountRepositoryInterface $accountRepository
2015-05-16 09:41:14 +02:00
*
* @return \Illuminate\Http\JsonResponse
2015-05-16 09:41:14 +02:00
*/
2016-10-10 07:49:39 +02:00
public function frontpage(CRI $repository, AccountRepositoryInterface $accountRepository)
2015-05-16 09:41:14 +02:00
{
2016-02-04 07:27:03 +01:00
$start = session('start', Carbon::now()->startOfMonth());
$end = session('end', Carbon::now()->endOfMonth());
// chart properties for cache:
2015-06-03 21:25:11 +02:00
$cache = new CacheProperties;
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty('category');
$cache->addProperty('frontpage');
if ($cache->has()) {
2016-05-13 15:53:39 +02:00
return Response::json($cache->get());
2016-05-09 20:15:26 +02:00
}
$categories = $repository->getCategories();
2016-10-10 07:49:39 +02:00
$accounts = $accountRepository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT]);
2016-05-09 20:15:26 +02:00
$set = new Collection;
/** @var Category $category */
foreach ($categories as $category) {
$spent = $repository->spentInPeriod(new Collection([$category]), $accounts, $start, $end);
2016-05-09 20:15:26 +02:00
if (bccomp($spent, '0') === -1) {
$category->spent = $spent;
$set->push($category);
}
}
2016-01-02 16:32:08 +01:00
// this is a "fake" entry for the "no category" entry.
2016-05-09 20:15:26 +02:00
$entry = new stdClass;
2016-01-15 13:08:25 +01:00
$entry->name = trans('firefly.no_category');
2016-05-09 20:15:26 +02:00
$entry->spent = $repository->spentInPeriodWithoutCategory(new Collection, $start, $end);
2016-01-02 16:32:08 +01:00
$set->push($entry);
2016-01-15 13:08:25 +01:00
$set = $set->sortBy('spent');
2015-06-27 11:44:18 +02:00
$data = $this->generator->frontpage($set);
$cache->store($data);
return Response::json($data);
2016-05-09 20:15:26 +02:00
}
2016-04-30 22:30:11 +02:00
/**
2016-05-09 20:15:26 +02:00
* @param CRI $repository
* @param Category $category
*
* @param $date
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function specificPeriod(CRI $repository, Category $category, $date)
{
$carbon = new Carbon($date);
$range = Preferences::get('viewRange', '1M')->data;
$start = Navigation::startOfPeriod($carbon, $range);
$end = Navigation::endOfPeriod($carbon, $range);
2016-01-29 07:33:49 +01:00
$data = $this->makePeriodChart($repository, $category, $start, $end);
2015-05-16 09:41:14 +02:00
2015-06-27 11:44:18 +02:00
return Response::json($data);
2015-05-16 09:41:14 +02:00
}
/**
2016-05-09 20:15:26 +02:00
* @param CRI $repository
2016-01-29 07:33:49 +01:00
* @param Category $category
* @param Carbon $start
* @param Carbon $end
2016-01-15 19:37:09 +01:00
*
2016-01-29 07:33:49 +01:00
* @return array
*/
private function makePeriodChart(CRI $repository, Category $category, Carbon $start, Carbon $end)
{
2016-05-09 20:15:26 +02:00
$categoryCollection = new Collection([$category]);
$cache = new CacheProperties;
2016-10-10 07:49:39 +02:00
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
2016-07-02 17:42:27 +02:00
$cache->addProperty($start);
$cache->addProperty($end);
2016-07-02 17:42:27 +02:00
$cache->addProperty($accounts);
2016-01-29 07:33:49 +01:00
$cache->addProperty($category->id);
$cache->addProperty('specific-period');
2016-05-09 20:15:26 +02:00
2016-07-02 17:42:27 +02:00
if ($cache->has()) {
2016-05-15 18:36:40 +02:00
return $cache->get();
}
2016-01-29 07:33:49 +01:00
$entries = new Collection;
while ($start <= $end) {
2016-07-02 17:42:27 +02:00
$spent = $repository->spentInPeriod($categoryCollection, $accounts, $start, $start);
$earned = $repository->earnedInPeriod($categoryCollection, $accounts, $start, $start);
2016-05-15 18:36:40 +02:00
$date = Navigation::periodShow($start, '1D');
2016-01-29 07:33:49 +01:00
$entries->push([clone $start, $date, $spent, $earned]);
$start->addDay();
}
2016-01-29 07:33:49 +01:00
$data = $this->generator->period($entries);
$cache->store($data);
return $data;
2016-05-09 20:15:26 +02:00
}
2015-05-20 19:56:14 +02:00
}