| 
									
										
										
										
											2020-05-16 11:21:26 +02:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2022-12-29 19:42:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-16 11:21:26 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * DeleteTransaction.php | 
					
						
							|  |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\TransactionRules\Actions; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-02 06:23:31 +02:00
										 |  |  | use FireflyIII\Events\TriggeredAuditLog; | 
					
						
							|  |  |  | use FireflyIII\Models\RuleAction; | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  | use FireflyIII\Models\TransactionGroup; | 
					
						
							| 
									
										
										
										
											2020-05-16 11:21:26 +02:00
										 |  |  | use FireflyIII\Models\TransactionJournal; | 
					
						
							|  |  |  | use FireflyIII\Services\Internal\Destroy\JournalDestroyService; | 
					
						
							|  |  |  | use FireflyIII\Services\Internal\Destroy\TransactionGroupDestroyService; | 
					
						
							| 
									
										
										
										
											2023-04-01 07:04:42 +02:00
										 |  |  | use Illuminate\Support\Facades\Log; | 
					
						
							| 
									
										
										
										
											2020-05-16 11:21:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class DeleteTransaction. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class DeleteTransaction implements ActionInterface | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-02 06:23:31 +02:00
										 |  |  |     private RuleAction $action; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * TriggerInterface constructor. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |      * @param RuleAction $action | 
					
						
							| 
									
										
										
										
											2022-10-02 06:23:31 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(RuleAction $action) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->action = $action; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-23 07:42:14 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @inheritDoc | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function actOnArray(array $journal): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  |         $count = TransactionJournal::where('transaction_group_id', $journal['transaction_group_id'])->count(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // destroy entire group.
 | 
					
						
							|  |  |  |         if (1 === $count) { | 
					
						
							|  |  |  |             Log::debug( | 
					
						
							|  |  |  |                 sprintf( | 
					
						
							|  |  |  |                     'RuleAction DeleteTransaction DELETED the entire transaction group of journal #%d ("%s").', | 
					
						
							| 
									
										
										
										
											2022-10-30 14:24:37 +01:00
										 |  |  |                     $journal['transaction_journal_id'], | 
					
						
							|  |  |  |                     $journal['description'] | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2021-04-05 22:12:57 +02:00
										 |  |  |             $group   = TransactionGroup::find($journal['transaction_group_id']); | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  |             $service = app(TransactionGroupDestroyService::class); | 
					
						
							|  |  |  |             $service->destroy($group); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-02 06:23:31 +02:00
										 |  |  |             event(new TriggeredAuditLog($this->action->rule, $group, 'delete_group', null, null)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-03-23 06:42:26 +01:00
										 |  |  |         Log::debug( | 
					
						
							|  |  |  |             sprintf('RuleAction DeleteTransaction DELETED transaction journal #%d ("%s").', $journal['transaction_journal_id'], $journal['description']) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // trigger delete factory:
 | 
					
						
							| 
									
										
										
										
											2022-10-02 20:23:11 +02:00
										 |  |  |         $object = TransactionJournal::find($journal['transaction_group_id']); | 
					
						
							|  |  |  |         if (null !== $object) { | 
					
						
							| 
									
										
										
										
											2021-11-04 20:16:35 +01:00
										 |  |  |             /** @var JournalDestroyService $service */ | 
					
						
							|  |  |  |             $service = app(JournalDestroyService::class); | 
					
						
							| 
									
										
										
										
											2022-10-02 20:23:11 +02:00
										 |  |  |             $service->destroy($object); | 
					
						
							|  |  |  |             event(new TriggeredAuditLog($this->action->rule, $object, 'delete_journal', null, null)); | 
					
						
							| 
									
										
										
										
											2021-11-04 20:16:35 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-23 08:51:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2020-08-23 07:42:14 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-05-16 11:21:26 +02:00
										 |  |  | } |