2015-05-16 02:41:14 -05:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2015-05-16 02:41:14 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Http\Controllers\Chart;
|
|
|
|
|
|
|
|
|
|
|
|
use Carbon\Carbon;
|
2016-05-02 13:49:19 -05:00
|
|
|
use FireflyIII\Generator\Chart\Category\CategoryChartGeneratorInterface;
|
2015-05-16 02:41:14 -05:00
|
|
|
use FireflyIII\Http\Controllers\Controller;
|
|
|
|
use FireflyIII\Models\Category;
|
2015-12-29 15:48:55 -06:00
|
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface as CRI;
|
2016-05-11 02:17:47 -05:00
|
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
2015-06-03 11:22:47 -05:00
|
|
|
use FireflyIII\Support\CacheProperties;
|
2015-06-27 04:44:18 -05:00
|
|
|
use Illuminate\Support\Collection;
|
2016-05-09 13:15:26 -05:00
|
|
|
use Log;
|
2015-05-16 02:41:14 -05:00
|
|
|
use Navigation;
|
|
|
|
use Preferences;
|
|
|
|
use Response;
|
2016-01-02 09:32:08 -06:00
|
|
|
use stdClass;
|
2015-05-16 02:41:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class CategoryController
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Http\Controllers\Chart
|
|
|
|
*/
|
|
|
|
class CategoryController extends Controller
|
|
|
|
{
|
2016-02-12 10:34:42 -06:00
|
|
|
const MAKE_POSITIVE = -1;
|
|
|
|
const KEEP_POSITIVE = 1;
|
|
|
|
|
|
|
|
|
2016-05-02 13:49:19 -05:00
|
|
|
/** @var CategoryChartGeneratorInterface */
|
2015-06-27 04:44:18 -05:00
|
|
|
protected $generator;
|
|
|
|
|
|
|
|
/**
|
2016-02-04 00:27:03 -06:00
|
|
|
*
|
2015-06-27 04:44:18 -05:00
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
// create chart generator:
|
2016-05-02 13:49:19 -05:00
|
|
|
$this->generator = app(CategoryChartGeneratorInterface::class);
|
2015-06-27 04:44:18 -05:00
|
|
|
}
|
2015-05-16 02:41:14 -05:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-05-16 03:13:41 -05:00
|
|
|
* Show an overview for a category for all time, per month/week/year.
|
2015-05-16 02:41:14 -05:00
|
|
|
*
|
2016-05-09 13:15:26 -05:00
|
|
|
* @param CRI $repository
|
2015-12-29 15:48:55 -06:00
|
|
|
* @param Category $category
|
2015-05-16 02:41:14 -05:00
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
2016-05-08 06:45:23 -05:00
|
|
|
public function all(CRI $repository, Category $category)
|
2015-05-16 02:41:14 -05:00
|
|
|
{
|
2016-05-09 13:15:26 -05:00
|
|
|
$start = $repository->firstUseDate($category, new Collection);
|
|
|
|
$range = Preferences::get('viewRange', '1M')->data;
|
|
|
|
$start = Navigation::startOfPeriod($start, $range);
|
|
|
|
$categoryCollection = new Collection([$category]);
|
|
|
|
$end = new Carbon;
|
|
|
|
$entries = new Collection;
|
|
|
|
$cache = new CacheProperties;
|
2015-06-27 04:44:18 -05:00
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
|
|
|
$cache->addProperty('all');
|
|
|
|
$cache->addProperty('categories');
|
|
|
|
if ($cache->has()) {
|
2016-05-09 13:15:26 -05:00
|
|
|
//return Response::json($cache->get());
|
2015-06-27 04:44:18 -05:00
|
|
|
}
|
2015-12-31 00:49:19 -06:00
|
|
|
|
2015-06-27 04:44:18 -05:00
|
|
|
while ($start <= $end) {
|
2015-05-16 03:13:41 -05:00
|
|
|
$currentEnd = Navigation::endOfPeriod($start, $range);
|
2016-05-09 13:15:26 -05:00
|
|
|
Log::debug('Searching for expenses from ' . $start . ' to ' . $currentEnd);
|
|
|
|
$spent = $repository->spentInPeriod($categoryCollection, new Collection, $start, $currentEnd);
|
|
|
|
$earned = $repository->earnedInPeriod($categoryCollection, new Collection, $start, $currentEnd);
|
|
|
|
$date = Navigation::periodShow($start, $range);
|
2015-09-25 12:28:39 -05:00
|
|
|
$entries->push([clone $start, $date, $spent, $earned]);
|
2015-05-16 03:13:41 -05:00
|
|
|
$start = Navigation::addPeriod($start, $range, 0);
|
2015-05-16 02:41:14 -05:00
|
|
|
}
|
2015-09-25 13:13:43 -05:00
|
|
|
$entries = $entries->reverse();
|
2015-09-25 13:15:38 -05:00
|
|
|
$entries = $entries->slice(0, 48);
|
2015-09-25 13:13:43 -05:00
|
|
|
$entries = $entries->reverse();
|
2016-01-15 11:21:59 -06:00
|
|
|
$data = $this->generator->all($entries);
|
2015-06-27 04:44:18 -05:00
|
|
|
$cache->store($data);
|
2015-05-16 02:41:14 -05:00
|
|
|
|
2015-06-27 04:44:18 -05:00
|
|
|
return Response::json($data);
|
2016-05-09 13:15:26 -05:00
|
|
|
|
2015-05-16 02:41:14 -05:00
|
|
|
}
|
|
|
|
|
2016-01-29 00:33:49 -06:00
|
|
|
/**
|
2016-05-09 13:15:26 -05:00
|
|
|
* @param CRI $repository
|
2016-01-29 00:33:49 -06:00
|
|
|
* @param Category $category
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
2016-05-08 06:45:23 -05:00
|
|
|
public function currentPeriod(CRI $repository, Category $category)
|
2016-01-29 00:33:49 -06:00
|
|
|
{
|
2016-02-04 00:27:03 -06:00
|
|
|
$start = clone session('start', Carbon::now()->startOfMonth());
|
|
|
|
$end = session('end', Carbon::now()->endOfMonth());
|
2016-01-29 00:33:49 -06:00
|
|
|
$data = $this->makePeriodChart($repository, $category, $start, $end);
|
|
|
|
|
|
|
|
return Response::json($data);
|
|
|
|
}
|
|
|
|
|
2015-05-16 02:41:14 -05:00
|
|
|
/**
|
2015-05-16 03:13:41 -05:00
|
|
|
* Show this month's category overview.
|
|
|
|
*
|
2015-12-29 15:48:55 -06:00
|
|
|
* @param CRI $repository
|
2015-05-16 02:41:14 -05:00
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
2016-05-09 13:15:26 -05:00
|
|
|
public function frontpage(CRI $repository)
|
2015-05-16 02:41:14 -05:00
|
|
|
{
|
2016-02-04 00:27:03 -06:00
|
|
|
$start = session('start', Carbon::now()->startOfMonth());
|
|
|
|
$end = session('end', Carbon::now()->endOfMonth());
|
2015-06-02 10:44:50 -05:00
|
|
|
// chart properties for cache:
|
2015-06-03 14:25:11 -05:00
|
|
|
$cache = new CacheProperties;
|
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
|
|
|
$cache->addProperty('category');
|
|
|
|
$cache->addProperty('frontpage');
|
|
|
|
if ($cache->has()) {
|
2016-05-09 13:15:26 -05:00
|
|
|
//return Response::json($cache->get());
|
|
|
|
}
|
|
|
|
$categories = $repository->getCategories();
|
|
|
|
$set = new Collection;
|
|
|
|
/** @var Category $category */
|
|
|
|
foreach ($categories as $category) {
|
|
|
|
$spent = $repository->spentInPeriod(new Collection([$category]), new Collection, $start, $end);
|
|
|
|
Log::debug('Spent for ' . $category->name . ' is ' . $spent . ' (' . bccomp($spent, '0') . ')');
|
|
|
|
if (bccomp($spent, '0') === -1) {
|
|
|
|
$category->spent = $spent;
|
|
|
|
$set->push($category);
|
|
|
|
}
|
2015-06-02 10:44:50 -05:00
|
|
|
}
|
2016-01-02 09:32:08 -06:00
|
|
|
// this is a "fake" entry for the "no category" entry.
|
2016-05-09 13:15:26 -05:00
|
|
|
$entry = new stdClass;
|
2016-01-15 06:08:25 -06:00
|
|
|
$entry->name = trans('firefly.no_category');
|
2016-05-09 13:15:26 -05:00
|
|
|
$entry->spent = $repository->spentInPeriodWithoutCategory(new Collection, $start, $end);
|
2016-01-02 09:32:08 -06:00
|
|
|
$set->push($entry);
|
|
|
|
|
2016-01-15 06:08:25 -06:00
|
|
|
$set = $set->sortBy('spent');
|
2015-06-27 04:44:18 -05:00
|
|
|
$data = $this->generator->frontpage($set);
|
2015-12-16 06:08:26 -06:00
|
|
|
$cache->store($data);
|
|
|
|
|
|
|
|
return Response::json($data);
|
2016-05-09 13:15:26 -05:00
|
|
|
|
2015-12-16 06:08:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
* @param Collection $categories
|
2015-12-28 00:55:09 -06:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2015-12-16 06:08:26 -06:00
|
|
|
*/
|
2016-05-11 03:02:27 -05:00
|
|
|
public function multiYear(Carbon $start, Carbon $end, Collection $accounts, Collection $categories)
|
2015-12-16 06:08:26 -06:00
|
|
|
{
|
2016-05-11 03:02:27 -05:00
|
|
|
|
|
|
|
/** @var CRI $repository */
|
|
|
|
$repository = app(CRI::class);
|
|
|
|
|
|
|
|
// chart properties for cache:
|
|
|
|
$cache = new CacheProperties();
|
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
|
|
|
$cache->addProperty($accounts);
|
|
|
|
$cache->addProperty($categories);
|
|
|
|
$cache->addProperty('multiYearCategory');
|
|
|
|
|
|
|
|
if ($cache->has()) {
|
|
|
|
//return Response::json($cache->get());
|
|
|
|
}
|
|
|
|
|
|
|
|
$entries = new Collection;
|
|
|
|
|
|
|
|
/** @var Category $category */
|
|
|
|
foreach ($categories as $category) {
|
|
|
|
$entry = ['name' => '', 'spent' => [], 'earned' => []];
|
|
|
|
|
|
|
|
$currentStart = clone $start;
|
|
|
|
while ($currentStart < $end) {
|
|
|
|
// fix the date:
|
|
|
|
$year = $currentStart->year;
|
|
|
|
$currentEnd = clone $currentStart;
|
|
|
|
$currentEnd->endOfYear();
|
|
|
|
|
|
|
|
// get data:
|
|
|
|
if (is_null($category->id)) {
|
|
|
|
$name = trans('firefly.noCategory');
|
|
|
|
$spent = $repository->spentInPeriodWithoutCategory($accounts, $currentStart, $currentEnd);
|
|
|
|
$earned = $repository->earnedInPeriodWithoutCategory($accounts, $currentStart, $currentEnd);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$name = $category->name;
|
|
|
|
$spent = $repository->spentInPeriod(new Collection([$category]), $accounts, $currentStart, $currentEnd);
|
|
|
|
$earned = $repository->earnedInPeriod(new Collection([$category]), $accounts, $currentStart, $currentEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// save to array:
|
|
|
|
$entry['name'] = $name;
|
|
|
|
$entry['spent'][$year] = ($spent * -1);
|
|
|
|
$entry['earned'][$year] = $earned;
|
|
|
|
|
|
|
|
// jump to next year.
|
|
|
|
$currentStart = clone $currentEnd;
|
|
|
|
$currentStart->addDay();
|
|
|
|
}
|
|
|
|
$entries->push($entry);
|
|
|
|
}
|
|
|
|
// generate chart with data:
|
|
|
|
|
|
|
|
$data = $this->generator->multiYear($entries);
|
|
|
|
$cache->store($data);
|
|
|
|
|
|
|
|
return Response::json($data);
|
|
|
|
|
2015-05-16 02:41:14 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-30 15:30:11 -05:00
|
|
|
/**
|
|
|
|
* @param Category $category
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
2016-05-11 02:17:47 -05:00
|
|
|
public function period(Category $category, Carbon $start, Carbon $end, Collection $accounts)
|
2016-04-30 15:30:11 -05:00
|
|
|
{
|
2016-05-11 02:17:47 -05:00
|
|
|
// chart properties for cache:
|
|
|
|
$cache = new CacheProperties();
|
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
|
|
|
$cache->addProperty($accounts);
|
|
|
|
$cache->addProperty($category->id);
|
|
|
|
$cache->addProperty('category');
|
|
|
|
$cache->addProperty('period');
|
|
|
|
if ($cache->has()) {
|
|
|
|
// return Response::json($cache->get());
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var CategoryRepositoryInterface $repository */
|
|
|
|
$repository = app(CategoryRepositoryInterface::class);
|
|
|
|
$categoryCollection = new Collection([$category]);
|
|
|
|
// loop over period, add by users range:
|
|
|
|
$current = clone $start;
|
|
|
|
$viewRange = Preferences::get('viewRange', '1M')->data;
|
|
|
|
$format = strval(trans('config.month'));
|
|
|
|
$set = new Collection;
|
|
|
|
while ($current < $end) {
|
|
|
|
$currentStart = clone $current;
|
|
|
|
$currentEnd = Navigation::endOfPeriod($currentStart, $viewRange);
|
|
|
|
$spent = $repository->spentInPeriod($categoryCollection, $accounts, $currentStart, $currentEnd);
|
|
|
|
$earned = $repository->earnedInPeriod($categoryCollection, $accounts, $currentStart, $currentEnd);
|
|
|
|
|
|
|
|
$entry = [
|
|
|
|
$category->name,
|
|
|
|
$currentStart->formatLocalized($format),
|
|
|
|
$spent,
|
|
|
|
$earned,
|
2016-04-30 15:30:11 -05:00
|
|
|
|
2016-05-11 02:17:47 -05:00
|
|
|
];
|
|
|
|
$set->push($entry);
|
|
|
|
$currentEnd->addDay();
|
|
|
|
$current = clone $currentEnd;
|
|
|
|
}
|
|
|
|
$data = $this->generator->period($set);
|
|
|
|
$cache->store($data);
|
|
|
|
|
|
|
|
return Response::json($data);
|
2016-04-30 15:30:11 -05:00
|
|
|
}
|
|
|
|
|
2015-09-26 00:18:12 -05:00
|
|
|
/**
|
2016-05-09 13:15:26 -05:00
|
|
|
* @param CRI $repository
|
2015-09-26 00:18:12 -05:00
|
|
|
* @param Category $category
|
|
|
|
*
|
2015-12-28 00:55:09 -06:00
|
|
|
* @param $date
|
|
|
|
*
|
2015-09-26 00:18:12 -05:00
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
2016-05-08 06:45:23 -05:00
|
|
|
public function specificPeriod(CRI $repository, Category $category, $date)
|
2015-09-26 00:18:12 -05:00
|
|
|
{
|
|
|
|
$carbon = new Carbon($date);
|
|
|
|
$range = Preferences::get('viewRange', '1M')->data;
|
|
|
|
$start = Navigation::startOfPeriod($carbon, $range);
|
|
|
|
$end = Navigation::endOfPeriod($carbon, $range);
|
2016-01-29 00:33:49 -06:00
|
|
|
$data = $this->makePeriodChart($repository, $category, $start, $end);
|
2015-05-16 02:41:14 -05:00
|
|
|
|
2015-06-27 04:44:18 -05:00
|
|
|
return Response::json($data);
|
2015-05-16 02:41:14 -05:00
|
|
|
}
|
|
|
|
|
2015-12-25 00:42:00 -06:00
|
|
|
/**
|
2016-05-09 13:15:26 -05:00
|
|
|
* @param CRI $repository
|
2016-01-29 00:33:49 -06:00
|
|
|
* @param Category $category
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
2016-01-15 12:37:09 -06:00
|
|
|
*
|
2016-01-29 00:33:49 -06:00
|
|
|
* @return array
|
2015-12-25 00:42:00 -06:00
|
|
|
*/
|
2016-05-08 06:45:23 -05:00
|
|
|
private function makePeriodChart(CRI $repository, Category $category, Carbon $start, Carbon $end)
|
2015-12-25 00:42:00 -06:00
|
|
|
{
|
2016-05-09 13:15:26 -05:00
|
|
|
$categoryCollection = new Collection([$category]);
|
|
|
|
$cache = new CacheProperties;
|
2015-12-25 00:42:00 -06:00
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
2016-01-29 00:33:49 -06:00
|
|
|
$cache->addProperty($category->id);
|
|
|
|
$cache->addProperty('specific-period');
|
2016-05-09 13:15:26 -05:00
|
|
|
|
2015-12-25 00:42:00 -06:00
|
|
|
if ($cache->has()) {
|
2016-05-09 13:15:26 -05:00
|
|
|
// return $cache->get();
|
2015-12-25 00:42:00 -06:00
|
|
|
}
|
2016-01-29 00:33:49 -06:00
|
|
|
$entries = new Collection;
|
2016-05-09 13:15:26 -05:00
|
|
|
Log::debug('Start is ' . $start . ' en end is ' . $end);
|
2016-01-29 00:33:49 -06:00
|
|
|
while ($start <= $end) {
|
2016-05-09 13:15:26 -05:00
|
|
|
Log::debug('Now at ' . $start);
|
|
|
|
$spent = $repository->spentInPeriod($categoryCollection, new Collection, $start, $start);
|
|
|
|
Log::debug('spent: ' . $spent);
|
|
|
|
$earned = $repository->earnedInPeriod($categoryCollection, new Collection, $start, $start);
|
|
|
|
Log::debug('earned: ' . $earned);
|
|
|
|
$date = Navigation::periodShow($start, '1D');
|
2016-01-29 00:33:49 -06:00
|
|
|
$entries->push([clone $start, $date, $spent, $earned]);
|
|
|
|
$start->addDay();
|
2015-12-25 00:42:00 -06:00
|
|
|
}
|
2016-01-29 00:33:49 -06:00
|
|
|
|
|
|
|
$data = $this->generator->period($entries);
|
2015-12-25 00:42:00 -06:00
|
|
|
$cache->store($data);
|
|
|
|
|
|
|
|
return $data;
|
2016-05-09 13:15:26 -05:00
|
|
|
|
2015-12-25 00:42:00 -06:00
|
|
|
}
|
|
|
|
|
2015-05-20 12:56:14 -05:00
|
|
|
}
|