| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-03-30 11:03:39 +01:00
										 |  |  |  * UpdatedGroupEventHandler.php | 
					
						
							| 
									
										
										
										
											2020-01-28 08:45:38 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02: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. | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02: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. | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02: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/>. | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-04-09 07:44:22 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Handlers\Events; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-30 11:03:39 +01:00
										 |  |  | use FireflyIII\Events\UpdatedTransactionGroup; | 
					
						
							| 
									
										
										
										
											2020-07-01 05:51:15 +02:00
										 |  |  | use FireflyIII\Models\Account; | 
					
						
							|  |  |  | use FireflyIII\Models\Transaction; | 
					
						
							| 
									
										
										
										
											2019-06-21 19:06:50 +02:00
										 |  |  | use FireflyIII\Models\TransactionJournal; | 
					
						
							| 
									
										
										
										
											2020-07-01 05:51:15 +02:00
										 |  |  | use FireflyIII\Models\TransactionType; | 
					
						
							| 
									
										
										
										
											2020-08-24 07:03:17 +02:00
										 |  |  | use FireflyIII\Repositories\Rule\RuleRepositoryInterface; | 
					
						
							| 
									
										
										
										
											2019-06-21 19:06:50 +02:00
										 |  |  | use FireflyIII\TransactionRules\Engine\RuleEngine; | 
					
						
							| 
									
										
										
										
											2020-08-24 07:03:17 +02:00
										 |  |  | use FireflyIII\TransactionRules\Engine\RuleEngineInterface; | 
					
						
							| 
									
										
										
										
											2020-07-01 06:02:58 +02:00
										 |  |  | use Log; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-03-30 11:03:39 +01:00
										 |  |  |  * Class UpdatedGroupEventHandler | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-03-30 11:03:39 +01:00
										 |  |  | class UpdatedGroupEventHandler | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-01 05:51:15 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * This method will make sure all source / destination accounts are the same. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param UpdatedTransactionGroup $updatedGroupEvent | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function unifyAccounts(UpdatedTransactionGroup $updatedGroupEvent): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $group = $updatedGroupEvent->transactionGroup; | 
					
						
							|  |  |  |         if (1 === $group->transactionJournals->count()) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-07-01 06:02:58 +02:00
										 |  |  |         Log::debug(sprintf('Correct inconsistent accounts in group #%d', $group->id)); | 
					
						
							| 
									
										
										
										
											2020-07-01 05:51:15 +02:00
										 |  |  |         // first journal:
 | 
					
						
							|  |  |  |         /** @var TransactionJournal $first */ | 
					
						
							|  |  |  |         $first = $group->transactionJournals() | 
					
						
							|  |  |  |                        ->orderBy('transaction_journals.date', 'DESC') | 
					
						
							|  |  |  |                        ->orderBy('transaction_journals.order', 'ASC') | 
					
						
							|  |  |  |                        ->orderBy('transaction_journals.id', 'DESC') | 
					
						
							|  |  |  |                        ->orderBy('transaction_journals.description', 'DESC') | 
					
						
							|  |  |  |                        ->first(); | 
					
						
							|  |  |  |         $all   = $group->transactionJournals()->get()->pluck('id')->toArray(); | 
					
						
							|  |  |  |         /** @var Account $sourceAccount */ | 
					
						
							|  |  |  |         $sourceAccount = $first->transactions()->where('amount', '<', '0')->first()->account; | 
					
						
							|  |  |  |         /** @var Account $destAccount */ | 
					
						
							|  |  |  |         $destAccount = $first->transactions()->where('amount', '>', '0')->first()->account; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $type = $first->transactionType->type; | 
					
						
							|  |  |  |         if (TransactionType::TRANSFER === $type || TransactionType::WITHDRAWAL === $type) { | 
					
						
							|  |  |  |             // set all source transactions to source account:
 | 
					
						
							|  |  |  |             Transaction::whereIn('transaction_journal_id', $all) | 
					
						
							|  |  |  |                        ->where('amount', '<', 0)->update(['account_id' => $sourceAccount->id]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (TransactionType::TRANSFER === $type || TransactionType::DEPOSIT === $type) { | 
					
						
							|  |  |  |             // set all destination transactions to destination account:
 | 
					
						
							|  |  |  |             Transaction::whereIn('transaction_journal_id', $all) | 
					
						
							|  |  |  |                        ->where('amount', '>', 0)->update(['account_id' => $destAccount->id]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * This method will check all the rules when a journal is updated. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-03-06 09:41:27 +01:00
										 |  |  |      * @param UpdatedTransactionGroup $updatedGroupEvent | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-03-06 09:41:27 +01:00
										 |  |  |     public function processRules(UpdatedTransactionGroup $updatedGroupEvent): void | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-03-06 09:41:27 +01:00
										 |  |  |         if (false === $updatedGroupEvent->applyRules) { | 
					
						
							|  |  |  |             Log::info(sprintf('Will not run rules on group #%d', $updatedGroupEvent->transactionGroup->id)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $journals = $updatedGroupEvent->transactionGroup->transactionJournals; | 
					
						
							| 
									
										
										
										
											2020-08-24 07:03:17 +02:00
										 |  |  |         $array    = []; | 
					
						
							| 
									
										
										
										
											2019-06-21 19:06:50 +02:00
										 |  |  |         /** @var TransactionJournal $journal */ | 
					
						
							| 
									
										
										
										
											2019-03-30 11:03:39 +01:00
										 |  |  |         foreach ($journals as $journal) { | 
					
						
							| 
									
										
										
										
											2020-08-24 07:03:17 +02:00
										 |  |  |             $array[] = $journal->id; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-24 07:03:17 +02:00
										 |  |  |         $journalIds = implode(',', $array); | 
					
						
							|  |  |  |         Log::debug(sprintf('Add local operator for journal(s): %s', $journalIds)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // collect rules:
 | 
					
						
							|  |  |  |         $ruleRepository = app(RuleRepositoryInterface::class); | 
					
						
							|  |  |  |         $ruleRepository->setUser($updatedGroupEvent->transactionGroup->user); | 
					
						
							|  |  |  |         $rules = $ruleRepository->getUpdateRules(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // file rule engine.
 | 
					
						
							|  |  |  |         $newRuleEngine = app(RuleEngineInterface::class); | 
					
						
							|  |  |  |         $newRuleEngine->setUser($updatedGroupEvent->transactionGroup->user); | 
					
						
							|  |  |  |         $newRuleEngine->addOperator(['type' => 'journal_id', 'value' => $journalIds]); | 
					
						
							|  |  |  |         $newRuleEngine->setRules($rules); | 
					
						
							|  |  |  |         $newRuleEngine->fire(); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-23 12:42:44 +02:00
										 |  |  | } |