| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-06-30 19:05:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * CurrencyValidation.php | 
					
						
							| 
									
										
										
										
											2020-06-30 19:05:35 +02:00
										 |  |  |  * Copyright (c) 2020 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-30 19:05:35 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  | namespace FireflyIII\Validation; | 
					
						
							| 
									
										
										
										
											2021-04-06 08:51:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  | use Illuminate\Validation\Validator; | 
					
						
							|  |  |  | use Log; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Trait CurrencyValidation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This trait contains validation methods that have to do with currencies. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | trait CurrencyValidation | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * If the transactions contain foreign amounts, there must also be foreign currency information. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Validator $validator | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function validateForeignCurrencyInformation(Validator $validator): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Log::debug('Now in validateForeignCurrencyInformation()'); | 
					
						
							|  |  |  |         $transactions = $this->getTransactionsArray($validator); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($transactions as $index => $transaction) { | 
					
						
							|  |  |  |             // if foreign amount is present, then the currency must be as well.
 | 
					
						
							| 
									
										
										
										
											2021-04-06 08:51:27 +02:00
										 |  |  |             if (array_key_exists('foreign_amount', $transaction) | 
					
						
							|  |  |  |                 && !(array_key_exists('foreign_currency_id', $transaction) | 
					
						
							|  |  |  |                      || array_key_exists( | 
					
						
							|  |  |  |                          'foreign_currency_code', $transaction | 
					
						
							|  |  |  |                      )) | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  |                 && 0 !== bccomp('0', $transaction['foreign_amount']) | 
					
						
							|  |  |  |             ) { | 
					
						
							|  |  |  |                 $validator->errors()->add( | 
					
						
							|  |  |  |                     'transactions.' . $index . '.foreign_amount', | 
					
						
							| 
									
										
										
										
											2022-03-29 15:00:29 +02:00
										 |  |  |                     (string) trans('validation.require_currency_info') | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  |                 ); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             // if the currency is present, then the amount must be present as well.
 | 
					
						
							| 
									
										
										
										
											2021-04-06 08:51:27 +02:00
										 |  |  |             if ((array_key_exists('foreign_currency_id', $transaction) || array_key_exists('foreign_currency_code', $transaction)) | 
					
						
							|  |  |  |                 && !array_key_exists( | 
					
						
							|  |  |  |                     'foreign_amount', $transaction | 
					
						
							|  |  |  |                 )) { | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  |                 $validator->errors()->add( | 
					
						
							|  |  |  |                     'transactions.' . $index . '.foreign_amount', | 
					
						
							| 
									
										
										
										
											2022-03-29 15:00:29 +02:00
										 |  |  |                     (string) trans('validation.require_currency_amount') | 
					
						
							| 
									
										
										
										
											2020-03-21 06:00:36 +01:00
										 |  |  |                 ); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-21 09:15:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param Validator $validator | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     abstract protected function getTransactionsArray(Validator $validator): array; | 
					
						
							| 
									
										
										
										
											2020-05-30 07:33:06 +02:00
										 |  |  | } |