firefly-iii/app/Rules/IsValidAttachmentModel.php

147 lines
4.1 KiB
PHP
Raw Normal View History

2018-06-23 23:51:22 -05:00
<?php
/**
* IsValidAttachmentModel.php
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Rules;
2018-12-21 03:11:18 -06:00
use FireflyIII\Models\Bill;
use FireflyIII\Models\ImportJob;
use FireflyIII\Models\Transaction;
2018-06-23 23:51:22 -05:00
use FireflyIII\Models\TransactionJournal;
2018-12-21 03:11:18 -06:00
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
use FireflyIII\Repositories\ImportJob\ImportJobRepositoryInterface;
2018-06-23 23:51:22 -05:00
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
2018-12-21 03:11:18 -06:00
use FireflyIII\User;
2018-06-23 23:51:22 -05:00
use Illuminate\Contracts\Validation\Rule;
2018-12-21 09:38:10 -06:00
use Log;
2018-06-23 23:51:22 -05:00
/**
* Class IsValidAttachmentModel
*/
class IsValidAttachmentModel implements Rule
{
/** @var string */
private $model;
/**
* IsValidAttachmentModel constructor.
*
2019-07-31 09:53:09 -05:00
* @codeCoverageIgnore
*
2018-06-23 23:51:22 -05:00
* @param string $model
*/
public function __construct(string $model)
{
2019-07-31 09:53:09 -05:00
$model = $this->normalizeModel($model);
2018-06-23 23:51:22 -05:00
$this->model = $model;
}
/**
* Get the validation error message.
2019-07-31 09:53:09 -05:00
* @codeCoverageIgnore
2018-06-23 23:51:22 -05:00
* @return string
*/
public function message(): string
{
2018-07-15 02:38:49 -05:00
return (string)trans('validation.model_id_invalid');
2018-06-23 23:51:22 -05:00
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
*
* @return bool
2018-07-25 23:10:17 -05:00
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
2018-06-23 23:51:22 -05:00
*/
public function passes($attribute, $value): bool
{
if (!auth()->check()) {
return false;
}
2019-07-31 09:53:09 -05:00
if (Bill::class === $this->model) {
2018-12-21 03:11:18 -06:00
/** @var BillRepositoryInterface $repository */
$repository = app(BillRepositoryInterface::class);
/** @var User $user */
$user = auth()->user();
$repository->setUser($user);
$bill = $repository->find((int)$value);
return null !== $bill;
}
2019-07-31 09:53:09 -05:00
if (ImportJob::class === $this->model) {
2018-12-21 03:11:18 -06:00
/** @var ImportJobRepositoryInterface $repository */
$repository = app(ImportJobRepositoryInterface::class);
/** @var User $user */
$user = auth()->user();
$repository->setUser($user);
$importJob = $repository->find((int)$value);
return null !== $importJob;
}
2019-07-31 09:53:09 -05:00
if (Transaction::class === $this->model) {
2018-12-21 03:11:18 -06:00
/** @var JournalRepositoryInterface $repository */
$repository = app(JournalRepositoryInterface::class);
/** @var User $user */
$user = auth()->user();
$repository->setUser($user);
$transaction = $repository->findTransaction((int)$value);
return null !== $transaction;
}
2018-07-25 23:10:17 -05:00
2019-07-31 09:53:09 -05:00
if (TransactionJournal::class === $this->model) {
2018-07-25 23:10:17 -05:00
$repository = app(JournalRepositoryInterface::class);
$user = auth()->user();
$repository->setUser($user);
$result = $repository->findNull((int)$value);
return null !== $result;
2018-06-23 23:51:22 -05:00
}
2019-07-31 09:53:09 -05:00
Log::error(sprintf('No model was recognized from string "%s"', $this->model));
2018-07-25 23:10:17 -05:00
return false;
2018-06-23 23:51:22 -05:00
}
2019-07-31 09:53:09 -05:00
/**
* @param string $model
*
* @return string
*/
private function normalizeModel(string $model): string
{
$search = ['FireflyIII\Models\\'];
$replace = '';
$model = str_replace($search, $replace, $model);
$model = sprintf('FireflyIII\Models\%s', $model);
return $model;
}
}