. */ declare(strict_types=1); namespace FireflyIII\Http\Requests; use Carbon\Carbon; use Exception; use FireflyIII\Exceptions\FireflyException; use FireflyIII\Repositories\Account\AccountRepositoryInterface; use FireflyIII\Repositories\Budget\BudgetRepositoryInterface; use FireflyIII\Repositories\Category\CategoryRepositoryInterface; use FireflyIII\Repositories\Tag\TagRepositoryInterface; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Support\Collection; use Log; /** * Class CategoryFormRequest. */ class ReportFormRequest extends FormRequest { /** * Verify the request. * * @return bool */ public function authorize(): bool { // Only allow logged in users return auth()->check(); } /** * Validate list of accounts. * * @return Collection */ public function getAccountList(): Collection { // fixed /** @var AccountRepositoryInterface $repository */ $repository = app(AccountRepositoryInterface::class); $set = $this->get('accounts'); $collection = new Collection; if (is_array($set)) { foreach ($set as $accountId) { $account = $repository->findNull((int) $accountId); if (null !== $account) { $collection->push($account); } } } return $collection; } /** * Validate list of budgets. * * @return Collection */ public function getBudgetList(): Collection { /** @var BudgetRepositoryInterface $repository */ $repository = app(BudgetRepositoryInterface::class); $set = $this->get('budget'); $collection = new Collection; if (is_array($set)) { foreach ($set as $budgetId) { $budget = $repository->findNull((int) $budgetId); if (null !== $budget) { $collection->push($budget); } } } return $collection; } /** * Validate list of categories. * * @return Collection */ public function getCategoryList(): Collection { /** @var CategoryRepositoryInterface $repository */ $repository = app(CategoryRepositoryInterface::class); $set = $this->get('category'); $collection = new Collection; if (is_array($set)) { foreach ($set as $categoryId) { $category = $repository->findNull((int) $categoryId); if (null !== $category) { $collection->push($category); } } } return $collection; } /** * Validate list of accounts which exist twice in system. * * @return Collection */ public function getDoubleList(): Collection { /** @var AccountRepositoryInterface $repository */ $repository = app(AccountRepositoryInterface::class); $set = $this->get('double'); $collection = new Collection; if (is_array($set)) { foreach ($set as $accountId) { $account = $repository->findNull((int) $accountId); if (null !== $account) { $collection->push($account); } } } return $collection; } /** * Validate end date. * * @throws FireflyException * @return Carbon * */ public function getEndDate(): Carbon { $date = new Carbon; $range = $this->get('daterange'); $parts = explode(' - ', (string) $range); if (2 === count($parts)) { try { $date = new Carbon($parts[1]); // @codeCoverageIgnoreStart } catch (Exception $e) { $error = sprintf('"%s" is not a valid date range: %s', $range, $e->getMessage()); Log::error($error); throw new FireflyException($error); // @codeCoverageIgnoreEnd } } return $date; } /** * Validate start date. * * @throws FireflyException * @return Carbon * */ public function getStartDate(): Carbon { $date = new Carbon; $range = $this->get('daterange'); $parts = explode(' - ', (string) $range); if (2 === count($parts)) { try { $date = new Carbon($parts[0]); // @codeCoverageIgnoreStart } catch (Exception $e) { $error = sprintf('"%s" is not a valid date range: %s', $range, $e->getMessage()); Log::error($error); throw new FireflyException($error); // @codeCoverageIgnoreEnd } } return $date; } /** * Validate list of tags. * * @return Collection */ public function getTagList(): Collection { /** @var TagRepositoryInterface $repository */ $repository = app(TagRepositoryInterface::class); $set = $this->get('tag'); $collection = new Collection; Log::debug('Set is:', $set ?? []); if (is_array($set)) { foreach ($set as $tagTag) { Log::debug(sprintf('Now searching for "%s"', $tagTag)); $tag = $repository->findByTag($tagTag); if (null !== $tag) { $collection->push($tag); continue; } $tag = $repository->findNull((int) $tagTag); if (null !== $tag) { $collection->push($tag); continue; } } } return $collection; } /** * Rules for this request. * * @return array */ public function rules(): array { return [ 'report_type' => 'in:audit,default,category,budget,tag,double', ]; } }