mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			233 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			233 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * IsValidAttachmentModel.php
 | |
|  * Copyright (c) 2019 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\Rules;
 | |
| 
 | |
| use FireflyIII\Models\Account;
 | |
| use FireflyIII\Models\Bill;
 | |
| use FireflyIII\Models\Budget;
 | |
| use FireflyIII\Models\Category;
 | |
| use FireflyIII\Models\PiggyBank;
 | |
| use FireflyIII\Models\Tag;
 | |
| use FireflyIII\Models\Transaction;
 | |
| use FireflyIII\Models\TransactionJournal;
 | |
| use FireflyIII\Repositories\Account\AccountRepositoryInterface;
 | |
| use FireflyIII\Repositories\Bill\BillRepositoryInterface;
 | |
| use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
 | |
| use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
 | |
| use FireflyIII\Repositories\Journal\JournalAPIRepositoryInterface;
 | |
| use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
 | |
| use FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface;
 | |
| use FireflyIII\Repositories\Tag\TagRepositoryInterface;
 | |
| use Illuminate\Contracts\Validation\Rule;
 | |
| use Illuminate\Support\Facades\Log;
 | |
| 
 | |
| /**
 | |
|  * Class IsValidAttachmentModel
 | |
|  */
 | |
| class IsValidAttachmentModel implements Rule
 | |
| {
 | |
|     /** @var string */
 | |
|     private $model;
 | |
| 
 | |
|     /**
 | |
|      * IsValidAttachmentModel constructor.
 | |
|      *
 | |
|      *
 | |
|      * @param string $model
 | |
|      */
 | |
|     public function __construct(string $model)
 | |
|     {
 | |
|         $model       = $this->normalizeModel($model);
 | |
|         $this->model = $model;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param string $model
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     private function normalizeModel(string $model): string
 | |
|     {
 | |
|         $search  = ['FireflyIII\Models\\'];
 | |
|         $replace = '';
 | |
|         $model   = str_replace($search, $replace, $model);
 | |
| 
 | |
|         return sprintf('FireflyIII\Models\%s', $model);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the validation error message.
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function message(): string
 | |
|     {
 | |
|         return (string)trans('validation.model_id_invalid');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Determine if the validation rule passes.
 | |
|      *
 | |
|      * @param string $attribute
 | |
|      * @param mixed  $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function passes($attribute, $value): bool
 | |
|     {
 | |
|         if (!auth()->check()) {
 | |
|             return false;
 | |
|         }
 | |
|         $methods = [
 | |
|             Account::class            => 'validateAccount',
 | |
|             Bill::class               => 'validateBill',
 | |
|             Budget::class             => 'validateBudget',
 | |
|             Category::class           => 'validateCategory',
 | |
|             PiggyBank::class          => 'validatePiggyBank',
 | |
|             Tag::class                => 'validateTag',
 | |
|             Transaction::class        => 'validateTransaction',
 | |
|             TransactionJournal::class => 'validateJournal',
 | |
|         ];
 | |
|         if (!array_key_exists($this->model, $methods)) {
 | |
|             Log::error(sprintf('Cannot validate model "%s" in %s.', substr($this->model, 0, 20), __METHOD__));
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
|         $method = $methods[$this->model];
 | |
| 
 | |
|         return $this->$method((int)$value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateAccount(int $value): bool
 | |
|     {
 | |
|         /** @var AccountRepositoryInterface $repository */
 | |
|         $repository = app(AccountRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateBill(int $value): bool
 | |
|     {
 | |
|         /** @var BillRepositoryInterface $repository */
 | |
|         $repository = app(BillRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateBudget(int $value): bool
 | |
|     {
 | |
|         /** @var BudgetRepositoryInterface $repository */
 | |
|         $repository = app(BudgetRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateCategory(int $value): bool
 | |
|     {
 | |
|         /** @var CategoryRepositoryInterface $repository */
 | |
|         $repository = app(CategoryRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateJournal(int $value): bool
 | |
|     {
 | |
|         $repository = app(JournalRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validatePiggyBank(int $value): bool
 | |
|     {
 | |
|         /** @var PiggyBankRepositoryInterface $repository */
 | |
|         $repository = app(PiggyBankRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateTag(int $value): bool
 | |
|     {
 | |
|         /** @var TagRepositoryInterface $repository */
 | |
|         $repository = app(TagRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->find($value);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $value
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     private function validateTransaction(int $value): bool
 | |
|     {
 | |
|         /** @var JournalAPIRepositoryInterface $repository */
 | |
|         $repository = app(JournalAPIRepositoryInterface::class);
 | |
|         $repository->setUser(auth()->user());
 | |
| 
 | |
|         return null !== $repository->findTransaction((int)$value);
 | |
|     }
 | |
| }
 |