mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
312 lines
7.9 KiB
PHP
312 lines
7.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* GenericRequest.php
|
|
* Copyright (c) 2021 james@firefly-iii.org
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Api\V1\Requests\Insight;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Models\Account;
|
|
use FireflyIII\Models\AccountType;
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
|
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
|
use FireflyIII\Support\Request\ChecksLogin;
|
|
use FireflyIII\Support\Request\ConvertsDataTypes;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Class GenericRequest
|
|
*/
|
|
class GenericRequest extends FormRequest
|
|
{
|
|
use ConvertsDataTypes, ChecksLogin;
|
|
|
|
private Collection $accounts;
|
|
private Collection $bills;
|
|
private Collection $budgets;
|
|
private Collection $categories;
|
|
private Collection $tags;
|
|
|
|
/**
|
|
* Get all data from the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAll(): array
|
|
{
|
|
return [
|
|
'start' => $this->getCarbonDate('start'),
|
|
'end' => $this->getCarbonDate('end'),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getAssetAccounts(): Collection
|
|
{
|
|
$this->parseAccounts();
|
|
$return = new Collection;
|
|
/** @var Account $account */
|
|
foreach ($this->accounts as $account) {
|
|
$type = $account->accountType->type;
|
|
if (in_array($type, [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE])) {
|
|
$return->push($account);
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function parseAccounts(): void
|
|
{
|
|
if (0 !== $this->accounts->count()) {
|
|
return;
|
|
}
|
|
$repository = app(AccountRepositoryInterface::class);
|
|
$repository->setUser(auth()->user());
|
|
$array = $this->get('accounts');
|
|
if (is_array($array)) {
|
|
foreach ($array as $accountId) {
|
|
$accountId = (int)$accountId;
|
|
$account = $repository->find($accountId);
|
|
if (null !== $account) {
|
|
$this->accounts->push($account);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getBills(): Collection
|
|
{
|
|
$this->parseBills();
|
|
|
|
return $this->bills;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function parseBills(): void
|
|
{
|
|
if (0 !== $this->bills->count()) {
|
|
return;
|
|
}
|
|
$repository = app(BillRepositoryInterface::class);
|
|
$repository->setUser(auth()->user());
|
|
$array = $this->get('bills');
|
|
if (is_array($array)) {
|
|
foreach ($array as $billId) {
|
|
$billId = (int)$billId;
|
|
$bill = $repository->find($billId);
|
|
if (null !== $billId) {
|
|
$this->bills->push($bill);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getBudgets(): Collection
|
|
{
|
|
$this->parseBudgets();
|
|
|
|
return $this->budgets;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function parseBudgets(): void
|
|
{
|
|
if (0 !== $this->budgets->count()) {
|
|
return;
|
|
}
|
|
$repository = app(BudgetRepositoryInterface::class);
|
|
$repository->setUser(auth()->user());
|
|
$array = $this->get('budgets');
|
|
if (is_array($array)) {
|
|
foreach ($array as $budgetId) {
|
|
$budgetId = (int)$budgetId;
|
|
$budget = $repository->find($budgetId);
|
|
if (null !== $budgetId) {
|
|
$this->budgets->push($budget);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getCategories(): Collection
|
|
{
|
|
$this->parseCategories();
|
|
|
|
return $this->categories;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function parseCategories(): void
|
|
{
|
|
if (0 !== $this->categories->count()) {
|
|
return;
|
|
}
|
|
$repository = app(CategoryRepositoryInterface::class);
|
|
$repository->setUser(auth()->user());
|
|
$array = $this->get('categories');
|
|
if (is_array($array)) {
|
|
foreach ($array as $categoryId) {
|
|
$categoryId = (int)$categoryId;
|
|
$category = $repository->find($categoryId);
|
|
if (null !== $categoryId) {
|
|
$this->categories->push($category);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Carbon
|
|
*/
|
|
public function getEnd(): Carbon
|
|
{
|
|
$date = $this->getCarbonDate('end');
|
|
$date->endOfDay();
|
|
|
|
return $date;
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getExpenseAccounts(): Collection
|
|
{
|
|
$this->parseAccounts();
|
|
$return = new Collection;
|
|
/** @var Account $account */
|
|
foreach ($this->accounts as $account) {
|
|
$type = $account->accountType->type;
|
|
if ($type === AccountType::EXPENSE) {
|
|
$return->push($account);
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getRevenueAccounts(): Collection
|
|
{
|
|
$this->parseAccounts();
|
|
$return = new Collection;
|
|
/** @var Account $account */
|
|
foreach ($this->accounts as $account) {
|
|
$type = $account->accountType->type;
|
|
if ($type === AccountType::REVENUE) {
|
|
$return->push($account);
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* @return Carbon
|
|
*/
|
|
public function getStart(): Carbon
|
|
{
|
|
$date = $this->getCarbonDate('start');
|
|
$date->startOfDay();
|
|
|
|
return $date;
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getTags(): Collection
|
|
{
|
|
$this->parseTags();
|
|
|
|
return $this->tags;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private function parseTags(): void
|
|
{
|
|
if (0 !== $this->tags->count()) {
|
|
return;
|
|
}
|
|
$repository = app(TagRepositoryInterface::class);
|
|
$repository->setUser(auth()->user());
|
|
$array = $this->get('tags');
|
|
if (is_array($array)) {
|
|
foreach ($array as $tagId) {
|
|
$tagId = (int)$tagId;
|
|
$tag = $repository->find($tagId);
|
|
if (null !== $tagId) {
|
|
$this->tags->push($tag);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The rules that the incoming request must be matched against.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
// this is cheating but it works to initialize the collections.
|
|
$this->accounts = new Collection;
|
|
$this->budgets = new Collection;
|
|
$this->categories = new Collection;
|
|
$this->bills = new Collection;
|
|
$this->tags = new Collection;
|
|
|
|
return [
|
|
'start' => 'required|date',
|
|
'end' => 'required|date|after:start',
|
|
];
|
|
}
|
|
}
|