| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * PrependNotes.php | 
					
						
							|  |  |  |  * Copyright (c) 2017 thegrumpydictator@gmail.com | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * This file is part of Firefly III. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  |  * along with Firefly III.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\TransactionRules\Actions; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-03 10:41:48 +02:00
										 |  |  | use FireflyIII\Models\Note; | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  | use FireflyIII\Models\RuleAction; | 
					
						
							|  |  |  | use FireflyIII\Models\TransactionJournal; | 
					
						
							|  |  |  | use Log; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |  * Class PrependNotes. | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | class PrependNotes implements ActionInterface | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-25 15:20:53 +01:00
										 |  |  |     /** @var RuleAction The rule action */ | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |     private $action; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * TriggerInterface constructor. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param RuleAction $action | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(RuleAction $action) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->action = $action; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2017-11-25 15:20:53 +01:00
										 |  |  |      * Prepend notes with X | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |      * @param TransactionJournal $journal | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function act(TransactionJournal $journal): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-10-03 10:41:48 +02:00
										 |  |  |         $dbNote = $journal->notes()->first(); | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |         if (null === $dbNote) { | 
					
						
							| 
									
										
										
										
											2017-10-03 10:41:48 +02:00
										 |  |  |             $dbNote = new Note; | 
					
						
							|  |  |  |             $dbNote->noteable()->associate($journal); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $notes = $dbNote->text; | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |         Log::debug(sprintf('RuleAction PrependNotes prepended "%s" with "%s".', $notes, $this->action->action_value)); | 
					
						
							| 
									
										
										
										
											2017-10-03 10:41:48 +02:00
										 |  |  |         $notes        = $this->action->action_value . $notes; | 
					
						
							|  |  |  |         $dbNote->text = $notes; | 
					
						
							|  |  |  |         $dbNote->save(); | 
					
						
							| 
									
										
										
										
											2017-10-03 05:28:00 +02:00
										 |  |  |         $journal->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |