| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * BelongsUser.php | 
					
						
							| 
									
										
										
										
											2020-02-16 13:56:25 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * 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/>. | 
					
						
							| 
									
										
										
										
											2018-02-23 16:59:21 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 10:08:34 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  | namespace FireflyIII\Rules; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Exceptions\FireflyException; | 
					
						
							|  |  |  | use FireflyIII\Models\Account; | 
					
						
							|  |  |  | use FireflyIII\Models\Bill; | 
					
						
							|  |  |  | use FireflyIII\Models\Budget; | 
					
						
							|  |  |  | use FireflyIII\Models\Category; | 
					
						
							|  |  |  | use FireflyIII\Models\PiggyBank; | 
					
						
							| 
									
										
										
										
											2022-01-24 07:24:01 +01:00
										 |  |  | use FireflyIII\Models\TransactionJournal; | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  | use Illuminate\Contracts\Validation\ValidationRule; | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class BelongsUser | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  | class BelongsUser implements ValidationRule | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  |     public function validate(string $attribute, mixed $value, \Closure $fail): void | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         $attribute = $this->parseAttribute($attribute); | 
					
						
							|  |  |  |         if (!auth()->check()) { | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  |             $fail('validation.belongs_user')->translate(); | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  |             return; | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-10-29 06:33:43 +01:00
										 |  |  |         app('log')->debug(sprintf('Going to validate %s', $attribute)); | 
					
						
							| 
									
										
										
										
											2021-09-18 10:20:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-01 14:43:56 +01:00
										 |  |  |         $result    = match ($attribute) { | 
					
						
							| 
									
										
										
										
											2023-07-15 16:02:42 +02:00
										 |  |  |             'piggy_bank_id'               => $this->validatePiggyBankId((int)$value), | 
					
						
							|  |  |  |             'piggy_bank_name'             => $this->validatePiggyBankName($value), | 
					
						
							|  |  |  |             'bill_id'                     => $this->validateBillId((int)$value), | 
					
						
							|  |  |  |             'transaction_journal_id'      => $this->validateJournalId((int)$value), | 
					
						
							|  |  |  |             'bill_name'                   => $this->validateBillName($value), | 
					
						
							|  |  |  |             'budget_id'                   => $this->validateBudgetId((int)$value), | 
					
						
							|  |  |  |             'category_id'                 => $this->validateCategoryId((int)$value), | 
					
						
							|  |  |  |             'budget_name'                 => $this->validateBudgetName($value), | 
					
						
							| 
									
										
										
										
											2022-12-29 19:42:26 +01:00
										 |  |  |             'source_id', 'destination_id' => $this->validateAccountId((int)$value), | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  |             default                       => throw new FireflyException(sprintf('Rule BelongsUser cannot handle "%s"', $attribute)), | 
					
						
							| 
									
										
										
										
											2021-09-18 10:20:19 +02:00
										 |  |  |         }; | 
					
						
							| 
									
										
										
										
											2023-09-21 15:50:49 +02:00
										 |  |  |         if (false === $result) { | 
					
						
							|  |  |  |             $fail('validation.belongs_user')->translate(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function parseAttribute(string $attribute): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $parts = explode('.', $attribute); | 
					
						
							|  |  |  |         if (1 === count($parts)) { | 
					
						
							|  |  |  |             return $attribute; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (3 === count($parts)) { | 
					
						
							|  |  |  |             return $parts[2]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $attribute; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private function validatePiggyBankId(int $value): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $count = PiggyBank::leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id') | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  |             ->where('piggy_banks.id', '=', $value) | 
					
						
							|  |  |  |             ->where('accounts.user_id', '=', auth()->user()->id)->count() | 
					
						
							|  |  |  |         ; | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private function validatePiggyBankName(string $value): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $count = $this->countField(PiggyBank::class, 'name', $value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-22 20:11:09 +01:00
										 |  |  |     protected function countField(string $class, string $field, string $value): int | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $value   = trim($value); | 
					
						
							|  |  |  |         $objects = []; | 
					
						
							|  |  |  |         // get all objects belonging to user:
 | 
					
						
							|  |  |  |         if (PiggyBank::class === $class) { | 
					
						
							|  |  |  |             $objects = PiggyBank::leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id') | 
					
						
							|  |  |  |                 ->where('accounts.user_id', '=', auth()->user()->id)->get(['piggy_banks.*']) | 
					
						
							|  |  |  |             ; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PiggyBank::class !== $class) { | 
					
						
							|  |  |  |             $objects = $class::where('user_id', '=', auth()->user()->id)->get(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $count   = 0; | 
					
						
							|  |  |  |         foreach ($objects as $object) { | 
					
						
							|  |  |  |             $objectValue = trim((string)$object->{$field}); // @phpstan-ignore-line
 | 
					
						
							|  |  |  |             app('log')->debug(sprintf('Comparing object "%s" with value "%s"', $objectValue, $value)); | 
					
						
							|  |  |  |             if ($objectValue === $value) { | 
					
						
							|  |  |  |                 ++$count; | 
					
						
							|  |  |  |                 app('log')->debug(sprintf('Hit! Count is now %d', $count)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function validateBillId(int $value): bool | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-04-04 08:31:15 +02:00
										 |  |  |         if (0 === $value) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |         $count = Bill::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count(); | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function validateJournalId(int $value): bool | 
					
						
							| 
									
										
										
										
											2022-01-24 07:24:01 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (0 === $value) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |         $count = TransactionJournal::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count(); | 
					
						
							| 
									
										
										
										
											2022-01-24 07:24:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |     private function validateBillName(string $value): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $count = $this->countField(Bill::class, 'name', $value); | 
					
						
							| 
									
										
										
										
											2023-10-29 06:33:43 +01:00
										 |  |  |         app('log')->debug(sprintf('Result of countField for bill name "%s" is %d', $value, $count)); | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private function validateBudgetId(int $value): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-09-01 14:49:26 +02:00
										 |  |  |         if (0 === $value) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |         $count = Budget::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function validateCategoryId(int $value): bool | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |         $count = Category::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count(); | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function validateBudgetName(string $value): bool | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |         $count = $this->countField(Budget::class, 'name', $value); | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |     private function validateAccountId(int $value): bool | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-03-21 09:15:40 +01:00
										 |  |  |         if (0 === $value) { | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |             // its ok to submit 0. other checks will fail.
 | 
					
						
							| 
									
										
										
										
											2021-03-21 09:15:40 +01:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |         $count = Account::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count(); | 
					
						
							| 
									
										
										
										
											2018-07-26 06:10:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return 1 === $count; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-16 15:17:36 +01:00
										 |  |  | } |