| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2022-12-29 19:41:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |  * PiggyBankEventHandler.php | 
					
						
							| 
									
										
										
										
											2023-01-02 06:52:18 +01:00
										 |  |  |  * Copyright (c) 2023 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 06:52:18 +01:00
										 |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  | namespace FireflyIII\Handlers\Events; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Events\ChangedPiggyBankAmount; | 
					
						
							|  |  |  | use FireflyIII\Models\PiggyBankEvent; | 
					
						
							| 
									
										
										
										
											2022-12-11 07:29:06 +01:00
										 |  |  | use Illuminate\Support\Facades\Log; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Class PiggyBankEventHandler | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class PiggyBankEventHandler | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |      * @param ChangedPiggyBankAmount $event | 
					
						
							| 
									
										
										
										
											2023-07-01 12:18:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function changePiggyAmount(ChangedPiggyBankAmount $event): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // find journal if group is present.
 | 
					
						
							|  |  |  |         $journal = $event->transactionJournal; | 
					
						
							|  |  |  |         if (null !== $event->transactionGroup) { | 
					
						
							|  |  |  |             $journal = $event->transactionGroup->transactionJournals()->first(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-02-11 07:36:45 +01:00
										 |  |  |         $date = $journal?->date ?? today(config('app.timezone')); | 
					
						
							| 
									
										
										
										
											2022-12-11 07:29:06 +01:00
										 |  |  |         // sanity check: event must not already exist for this journal and piggy bank.
 | 
					
						
							|  |  |  |         if (null !== $journal) { | 
					
						
							|  |  |  |             $exists = PiggyBankEvent::where('piggy_bank_id', $event->piggyBank->id) | 
					
						
							|  |  |  |                                     ->where('transaction_journal_id', $journal->id) | 
					
						
							|  |  |  |                                     ->exists(); | 
					
						
							| 
									
										
										
										
											2022-12-11 10:43:52 +01:00
										 |  |  |             if ($exists) { | 
					
						
							| 
									
										
										
										
											2022-12-11 07:29:06 +01:00
										 |  |  |                 Log::warning('Already have event for this journal and piggy, will not create another.'); | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-11 07:17:59 +01:00
										 |  |  |         PiggyBankEvent::create( | 
					
						
							|  |  |  |             [ | 
					
						
							|  |  |  |                 'piggy_bank_id'          => $event->piggyBank->id, | 
					
						
							|  |  |  |                 'transaction_journal_id' => $journal?->id, | 
					
						
							|  |  |  |                 'date'                   => $date->format('Y-m-d'), | 
					
						
							|  |  |  |                 'amount'                 => $event->amount, | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |