Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
84.62% |
11 / 13 |
|
33.33% |
1 / 3 |
CRAP | |
0.00% |
0 / 1 |
ItemRemovedEventProcessor | |
84.62% |
11 / 13 |
|
33.33% |
1 / 3 |
6.13 | |
0.00% |
0 / 1 |
process | |
90.91% |
10 / 11 |
|
0.00% |
0 / 1 |
4.01 | |||
getAssetDeleter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getItemRelationUpdateService | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2020-2023 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoMediaManager\model\relation\event\processor; |
24 | |
25 | use oat\oatbox\event\Event; |
26 | use oat\oatbox\service\ConfigurableService; |
27 | use oat\taoItems\model\event\ItemRemovedEvent; |
28 | use oat\taoMediaManager\model\AssetDeleter; |
29 | use oat\taoMediaManager\model\relation\service\update\ItemRelationUpdateService; |
30 | |
31 | class ItemRemovedEventProcessor extends ConfigurableService implements EventProcessorInterface |
32 | { |
33 | /** |
34 | * @inheritDoc |
35 | */ |
36 | public function process(Event $event): void |
37 | { |
38 | if (!$event instanceof ItemRemovedEvent) { |
39 | throw new InvalidEventException($event); |
40 | } |
41 | |
42 | $data = $event->jsonSerialize(); |
43 | $itemUri = $data[ItemRemovedEvent::PAYLOAD_KEY_ITEM_URI] ?? null; |
44 | $deleteRelatedAssets = $data[ItemRemovedEvent::PAYLOAD_KEY_DELETE_RELATED_ASSETS] ?? false; |
45 | |
46 | if (empty($itemUri)) { |
47 | throw new InvalidEventException($event, 'Missing itemUri'); |
48 | } |
49 | |
50 | if ($deleteRelatedAssets) { |
51 | $this->getAssetDeleter()->deleteByItemUri($itemUri); |
52 | } |
53 | |
54 | $this->getItemRelationUpdateService() |
55 | ->updateByTargetId($itemUri); |
56 | } |
57 | |
58 | private function getAssetDeleter(): AssetDeleter |
59 | { |
60 | return $this->getServiceLocator()->getContainer()->get(AssetDeleter::class); |
61 | } |
62 | |
63 | private function getItemRelationUpdateService(): ItemRelationUpdateService |
64 | { |
65 | return $this->getServiceLocator()->get(ItemRelationUpdateService::class); |
66 | } |
67 | } |