Completed
Pull Request — feature/unmaneged-properties (#20)
by Yo
04:10 queued 01:24
created

ListUpdater::updateUnmanaged()   B

Complexity

Conditions 4
Paths 6

Size

Total Lines 22
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 20

Importance

Changes 0
Metric Value
dl 0
loc 22
ccs 0
cts 16
cp 0
rs 8.9197
c 0
b 0
f 0
cc 4
eloc 14
nc 6
nop 2
crap 20
1
<?php
2
namespace Yoanm\ComposerConfigManager\Application\Updater;
3
4
use Yoanm\ComposerConfigManager\Domain\Model\ConfigurationItemInterface;
5
6
class ListUpdater
7
{
8
    /**
9
     * @param ConfigurationItemInterface[] $newEntityList
10
     * @param ConfigurationItemInterface[] $oldEntityList
11
     *
12
     * @return ConfigurationItemInterface[]
13
     */
14 3
    public function update(array $newEntityList, array $oldEntityList)
15
    {
16 3
        $existingEntityIdList = [];
17 3
        foreach ($newEntityList as $entity) {
18 3
            $existingEntityIdList[$entity->getItemId()] = true;
19 3
        }
20 3
        $normalizedOldEntityList = [];
21 3
        foreach ($oldEntityList as $oldEntity) {
22 2
            if (!array_key_exists($oldEntity->getItemId(), $existingEntityIdList)) {
23 2
                $normalizedOldEntityList[] = $oldEntity;
24 2
            } else {
25
                // A new entity have been defined, loop over new entity list and append all entities with the same id
26 1
                $oldEntityId = $oldEntity->getItemId();
27 1
                foreach ($newEntityList as $newEntityKey => $newEntity) {
28 1
                    if ($newEntity->getItemId() == $oldEntityId) {
29 1
                        $normalizedOldEntityList[] = $newEntity;
30 1
                        unset($newEntityList[$newEntityKey]);
31 1
                    }
32 1
                }
33
            }
34 3
        }
35
36 3
        return array_merge($normalizedOldEntityList, $newEntityList);
37
    }
38
39
    /**
40
     * @param array $newPropertyList
41
     * @param array $oldPropertyList
42
     *
43
     * @return array
44
     */
45
    public function updateUnmanaged(array $newPropertyList, array $oldPropertyList)
46
    {
47
        $newPropertyKeyList = [];
48
        foreach ($newPropertyList as $propertyKey => $value) {
49
            $newPropertyKeyList[$propertyKey] = true;
50
        }
51
        $normalizedOldPropertyList = [];
52
        foreach ($oldPropertyList as $propertyKey => $oldPropertyValue) {
53
            if (!isset($newPropertyKeyList[$propertyKey])) {
54
                $normalizedOldPropertyList[$propertyKey] = $oldPropertyValue;
55
            } else {
56
                // A new value have been defined
57
                $normalizedOldPropertyList[$propertyKey] = $this->updateUnmanaged(
58
                    $newPropertyList[$propertyKey],
59
                    $oldPropertyValue
60
                );
61
                unset($newPropertyList[$propertyKey]);
62
            }
63
        }
64
65
        return array_merge($normalizedOldPropertyList, $newPropertyList);
66
    }
67
}
68