| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StoredJournalEventHandler.php | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * Copyright (c) 2017 thegrumpydictator@gmail.com | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * This file is part of Firefly III. | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * Firefly III is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Firefly III 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 General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							| 
									
										
										
										
											2017-12-17 14:41:58 +01:00
										 |  |  |  * along with Firefly III. If not, see <http://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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Events\StoredTransactionJournal; | 
					
						
							|  |  |  | use FireflyIII\Models\Rule; | 
					
						
							|  |  |  | use FireflyIII\Models\RuleGroup; | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  | use FireflyIII\Repositories\Journal\JournalRepositoryInterface as JRI; | 
					
						
							|  |  |  | use FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface as PRI; | 
					
						
							|  |  |  | use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface as RGRI; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | use FireflyIII\Support\Events\BillScanner; | 
					
						
							| 
									
										
										
										
											2017-09-14 17:40:02 +02:00
										 |  |  | use FireflyIII\TransactionRules\Processor; | 
					
						
							| 
									
										
										
										
											2016-11-04 16:04:36 +01:00
										 |  |  | use Log; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |  * @codeCoverageIgnore | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |  * Class StoredJournalEventHandler | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class StoredJournalEventHandler | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |     /** @var JRI */ | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |     public $journalRepository; | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |     /** @var PRI */ | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |     public $repository; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |     /** @var RGRI */ | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |     public $ruleGroupRepository; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * StoredJournalEventHandler constructor. | 
					
						
							| 
									
										
										
										
											2017-06-05 08:31:22 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param PRI  $repository | 
					
						
							|  |  |  |      * @param JRI  $journalRepository | 
					
						
							|  |  |  |      * @param RGRI $ruleGroupRepository | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |     public function __construct(PRI $repository, JRI $journalRepository, RGRI $ruleGroupRepository) | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:43 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |         $this->repository          = $repository; | 
					
						
							|  |  |  |         $this->journalRepository   = $journalRepository; | 
					
						
							|  |  |  |         $this->ruleGroupRepository = $ruleGroupRepository; | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * This method connects a new transfer to a piggy bank. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-12-27 20:45:23 +01:00
										 |  |  |      * @param StoredTransactionJournal $event | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							| 
									
										
										
										
											2017-09-16 09:24:48 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @SuppressWarnings(PHPMD.CyclomaticComplexity) | 
					
						
							|  |  |  |      * @SuppressWarnings(PHPMD.ExcessiveMethodLength) | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-27 20:45:23 +01:00
										 |  |  |     public function connectToPiggyBank(StoredTransactionJournal $event): bool | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-12-27 20:45:23 +01:00
										 |  |  |         $journal     = $event->journal; | 
					
						
							|  |  |  |         $piggyBankId = $event->piggyBankId; | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |         $piggyBank   = $this->repository->find($piggyBankId); | 
					
						
							| 
									
										
										
										
											2016-11-04 16:04:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |         // is a transfer?
 | 
					
						
							|  |  |  |         if (!$this->journalRepository->isTransfer($journal)) { | 
					
						
							| 
									
										
										
										
											2017-03-12 20:43:37 +01:00
										 |  |  |             Log::info(sprintf('Will not connect %s #%d to a piggy bank.', $journal->transactionType->type, $journal->id)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |         // piggy exists?
 | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |         if (null === $piggyBank->id) { | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |             Log::error(sprintf('There is no piggy bank with ID #%d', $piggyBankId)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // repetition exists?
 | 
					
						
							|  |  |  |         $repetition = $this->repository->getRepetition($piggyBank, $journal->date); | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |         if (null === $repetition->id) { | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |             Log::error(sprintf('No piggy bank repetition on %s!', $journal->date->format('Y-m-d'))); | 
					
						
							| 
									
										
										
										
											2016-11-04 16:04:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |         // get the amount
 | 
					
						
							|  |  |  |         $amount = $this->repository->getExactAmount($piggyBank, $repetition, $journal); | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |         if (0 === bccomp($amount, '0')) { | 
					
						
							| 
									
										
										
										
											2017-03-01 20:57:52 +01:00
										 |  |  |             Log::debug('Amount is zero, will not create event.'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-28 07:51:09 +02:00
										 |  |  |         // update amount
 | 
					
						
							|  |  |  |         $this->repository->addAmountToRepetition($repetition, $amount); | 
					
						
							|  |  |  |         $event = $this->repository->createEventWithJournal($piggyBank, $amount, $journal); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 20:45:23 +01:00
										 |  |  |         Log::debug(sprintf('Created piggy bank event #%d', $event->id)); | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * This method grabs all the users rules and processes them. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-12-06 16:55:13 +01:00
										 |  |  |      * @param StoredTransactionJournal $storedJournalEvent | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-06 16:55:13 +01:00
										 |  |  |     public function processRules(StoredTransactionJournal $storedJournalEvent): 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:55:13 +01:00
										 |  |  |         $journal = $storedJournalEvent->journal; | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |         $groups  = $this->ruleGroupRepository->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->ruleGroupRepository->getActiveStoreRules($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) { | 
					
						
							| 
									
										
										
										
											2017-04-28 10:34:11 +02:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * This method calls a special bill scanner that will check if the stored journal is part of a bill. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-12-06 16:55:13 +01:00
										 |  |  |      * @param StoredTransactionJournal $storedJournalEvent | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-06 16:55:13 +01:00
										 |  |  |     public function scanBills(StoredTransactionJournal $storedJournalEvent): bool | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-12-06 16:55:13 +01:00
										 |  |  |         $journal = $storedJournalEvent->journal; | 
					
						
							| 
									
										
										
										
											2016-10-22 09:31:27 +02:00
										 |  |  |         BillScanner::scan($journal); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-23 12:42:44 +02:00
										 |  |  | } |