| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * UpdatedJournalEventHandler.php | 
					
						
							|  |  |  |  * Copyright (C) 2016 thegrumpydictator@gmail.com | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This software may be modified and distributed under the terms of the | 
					
						
							|  |  |  |  * Creative Commons Attribution-ShareAlike 4.0 International License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See the LICENSE file for details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-09 07:44:22 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Handlers\Events; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Events\UpdatedTransactionJournal; | 
					
						
							|  |  |  | use FireflyIII\Models\Rule; | 
					
						
							|  |  |  | use FireflyIII\Models\RuleGroup; | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  | use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | use FireflyIII\Rules\Processor; | 
					
						
							|  |  |  | use FireflyIII\Support\Events\BillScanner; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |  * @codeCoverageIgnore | 
					
						
							|  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  * Class UpdatedJournalEventHandler | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package FireflyIII\Handlers\Events | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class UpdatedJournalEventHandler | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |     /** @var  RuleGroupRepositoryInterface */ | 
					
						
							|  |  |  |     public $repository; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * StoredJournalEventHandler constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(RuleGroupRepositoryInterface $ruleGroupRepository) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->repository = $ruleGroupRepository; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * This method will check all the rules when a journal is updated. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-12-06 16:58:39 +01:00
										 |  |  |      * @param UpdatedTransactionJournal $updatedJournalEvent | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-14 18:59:12 +01:00
										 |  |  |     public function processRules(UpdatedTransactionJournal $updatedJournalEvent): bool | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         // get all the user's rule groups, with the rules, order by 'order'.
 | 
					
						
							| 
									
										
										
										
											2016-12-06 16:58:39 +01:00
										 |  |  |         $journal = $updatedJournalEvent->journal; | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |         $groups = $this->repository->getActiveGroups($journal->user); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |         /** @var RuleGroup $group */ | 
					
						
							|  |  |  |         foreach ($groups as $group) { | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |             $rules = $this->repository->getActiveUpdateRules($group); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |             /** @var Rule $rule */ | 
					
						
							|  |  |  |             foreach ($rules as $rule) { | 
					
						
							|  |  |  |                 $processor = Processor::make($rule); | 
					
						
							|  |  |  |                 $processor->handleTransactionJournal($journal); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if ($rule->stop_processing) { | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * This method calls a special bill scanner that will check if the updated journal is part of a bill. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-12-06 16:58:39 +01:00
										 |  |  |      * @param UpdatedTransactionJournal $updatedJournalEvent | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-06 16:58:39 +01:00
										 |  |  |     public function scanBills(UpdatedTransactionJournal $updatedJournalEvent): bool | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-12-06 16:58:39 +01:00
										 |  |  |         $journal = $updatedJournalEvent->journal; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |         BillScanner::scan($journal); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-23 12:42:44 +02:00
										 |  |  | } |