. */ declare(strict_types=1); namespace FireflyIII\Http\Controllers\Report; use Carbon\Carbon; use FireflyIII\Http\Controllers\Controller; use FireflyIII\Repositories\Account\AccountTaskerInterface; use FireflyIII\Support\CacheProperties; use Illuminate\Support\Collection; use Log; use Throwable; /** * Class OperationsController. */ class OperationsController extends Controller { /** @var AccountTaskerInterface Some specific account things. */ private $tasker; /** * OperationsController constructor. * @codeCoverageIgnore */ public function __construct() { parent::__construct(); // translations: $this->middleware( function ($request, $next) { $this->tasker = app(AccountTaskerInterface::class); return $next($request); } ); } /** * View of income and expense. * * @param Collection $accounts * @param Carbon $start * @param Carbon $end * * @return mixed|string */ public function expenses(Collection $accounts, Carbon $start, Carbon $end) { // chart properties for cache: $cache = new CacheProperties; $cache->addProperty($start); $cache->addProperty($end); $cache->addProperty('expense-report'); $cache->addProperty($accounts->pluck('id')->toArray()); if ($cache->has()) { return $cache->get(); // @codeCoverageIgnore } $entries = $this->tasker->getExpenseReport($start, $end, $accounts); $type = 'expense-entry'; try { $result = view('reports.partials.income-expenses', compact('entries', 'type'))->render(); // @codeCoverageIgnoreStart } catch (Throwable $e) { Log::debug(sprintf('Could not render reports.partials.income-expense: %s', $e->getMessage())); $result = 'Could not render view.'; } // @codeCoverageIgnoreEnd $cache->store($result); return $result; } /** * View of income. * * @param Collection $accounts * @param Carbon $start * @param Carbon $end * * @return string */ public function income(Collection $accounts, Carbon $start, Carbon $end): string { // chart properties for cache: $cache = new CacheProperties; $cache->addProperty($start); $cache->addProperty($end); $cache->addProperty('income-report'); $cache->addProperty($accounts->pluck('id')->toArray()); if ($cache->has()) { return $cache->get(); // @codeCoverageIgnore } $entries = $this->tasker->getIncomeReport($start, $end, $accounts); $type = 'income-entry'; try { $result = view('reports.partials.income-expenses', compact('entries', 'type'))->render(); // @codeCoverageIgnoreStart } catch (Throwable $e) { Log::debug(sprintf('Could not render reports.partials.income-expenses: %s', $e->getMessage())); $result = 'Could not render view.'; } // @codeCoverageIgnoreEnd $cache->store($result); return $result; } /** * Overview of income and expense. * * @param Collection $accounts * @param Carbon $start * @param Carbon $end * * @return mixed|string */ public function operations(Collection $accounts, Carbon $start, Carbon $end) { // chart properties for cache: $cache = new CacheProperties; $cache->addProperty($start); $cache->addProperty($end); $cache->addProperty('inc-exp-report'); $cache->addProperty($accounts->pluck('id')->toArray()); if ($cache->has()) { return $cache->get(); // @codeCoverageIgnore } $incomes = $this->tasker->getIncomeReport($start, $end, $accounts); $expenses = $this->tasker->getExpenseReport($start, $end, $accounts); $incomeSum = array_sum( array_map( function ($item) { return $item['sum']; }, $incomes ) ); $expensesSum = array_sum( array_map( function ($item) { return $item['sum']; }, $expenses ) ); try { $result = view('reports.partials.operations', compact('incomeSum', 'expensesSum'))->render(); // @codeCoverageIgnoreStart } catch (Throwable $e) { Log::debug(sprintf('Could not render reports.partials.operations: %s', $e->getMessage())); $result = 'Could not render view.'; } // @codeCoverageIgnoreEnd $cache->store($result); return $result; } }