| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-10 19:31:55 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |  * TransactionRequest.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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  | namespace FireflyIII\Api\V1\Requests\Data\Bulk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Enums\ClauseType; | 
					
						
							|  |  |  | use FireflyIII\Rules\IsValidBulkClause; | 
					
						
							|  |  |  | use FireflyIII\Support\Request\ChecksLogin; | 
					
						
							|  |  |  | use FireflyIII\Support\Request\ConvertsDataTypes; | 
					
						
							|  |  |  | use FireflyIII\Validation\Api\Data\Bulk\ValidatesBulkTransactionQuery; | 
					
						
							|  |  |  | use Illuminate\Foundation\Http\FormRequest; | 
					
						
							| 
									
										
										
										
											2024-01-09 20:48:17 +01:00
										 |  |  | use Illuminate\Support\Facades\Log; | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  | use Illuminate\Validation\Validator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class TransactionRequest | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class TransactionRequest extends FormRequest | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-30 14:23:00 +01:00
										 |  |  |     use ChecksLogin; | 
					
						
							|  |  |  |     use ConvertsDataTypes; | 
					
						
							|  |  |  |     use ValidatesBulkTransactionQuery; | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function getAll(): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $data = []; | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $data = [ | 
					
						
							|  |  |  |                 'query' => json_decode($this->get('query'), true, 8, JSON_THROW_ON_ERROR), | 
					
						
							|  |  |  |             ]; | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  |         } catch (\JsonException $e) { | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  |             // dont really care. the validation should catch invalid json.
 | 
					
						
							| 
									
										
										
										
											2023-10-29 06:32:00 +01:00
										 |  |  |             app('log')->error($e->getMessage()); | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $data; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function rules(): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return [ | 
					
						
							|  |  |  |             'query' => ['required', 'min:1', 'max:255', 'json', new IsValidBulkClause(ClauseType::TRANSACTION)], | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function withValidator(Validator $validator): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $validator->after( | 
					
						
							| 
									
										
										
										
											2023-12-21 04:59:23 +01:00
										 |  |  |             function (Validator $validator): void { | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  |                 // validate transaction query data.
 | 
					
						
							|  |  |  |                 $this->validateTransactionQuery($validator); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2024-02-22 01:29:01 +01:00
										 |  |  |         if ($validator->fails()) { | 
					
						
							| 
									
										
										
										
											2024-01-09 20:48:17 +01:00
										 |  |  |             Log::channel('audit')->error(sprintf('Validation errors in %s', __CLASS__), $validator->errors()->toArray()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-10 18:43:21 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-08-10 19:31:55 +02:00
										 |  |  | } |