Completed
Pull Request — master (#15)
by Tim
01:50
created

OptionSubject::getAttributeBunchProcessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * TechDivision\Import\Attribute\Subjects\OptionSubject
5
 *
6
 * NOTICE OF LICENSE
7
 *
8
 * This source file is subject to the Open Software License (OSL 3.0)
9
 * that is available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * PHP version 5
13
 *
14
 * @author    Tim Wagner <[email protected]>
15
 * @copyright 2016 TechDivision GmbH <[email protected]>
16
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
 * @link      https://github.com/techdivision/import-attribute
18
 * @link      http://www.techdivision.com
19
 */
20
21
namespace TechDivision\Import\Attribute\Subjects;
22
23
use TechDivision\Import\Attribute\Utils\MemberNames;
24
25
/**
26
 * The subject implementation that handles the business logic to persist attribute options.
27
 *
28
 * @author    Tim Wagner <[email protected]>
29
 * @copyright 2016 TechDivision GmbH <[email protected]>
30
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
31
 * @link      https://github.com/techdivision/import-attribute
32
 * @link      http://www.techdivision.com
33
 */
34
class OptionSubject extends AbstractAttributeSubject
35
{
36
37
    /**
38
     * The ID of the option that has been created recently.
39
     *
40
     * @var integer
41
     */
42
    protected $lastOptionId;
43
44
    /**
45
     * The value => option ID mapping.
46
     *
47
     * @var array
48
     */
49
    protected $attributeCodeValueOptionIdMapping = array();
50
51
    /**
52
     * Map's the passed attribue code and value to the option ID that has been created recently.
53
     *
54
     * @param string $attributeCode The attriburte code that has to be mapped
55
     * @param string $value         The value that has to be mapped
56
     *
57
     * @return void
58
     */
59
    public function addAddtributeCodeValueOptionIdMapping($attributeCode, $value)
60
    {
61
        $this->attributeCodeValueOptionIdMapping[$attributeCode][$value] = $this->getLastEntityId();
62
    }
63
64
    /**
65
     * Queries whether or not the attribute with the passed code/value has already been processed.
66
     *
67
     * @param string $attributeCode The attribute code to check
68
     * @param string $value         The option value to check
69
     *
70
     * @return boolean TRUE if the path has been processed, else FALSE
71
     */
72
    public function hasBeenProcessed($attributeCode, $value)
73
    {
74
        return isset($this->attributeCodeValueOptionIdMapping[$attributeCode][$value]);
75
    }
76
77
    /**
78
     * Return's the ID of the attribute that has been created recently.
79
     *
80
     * @return integer The attribute ID
81
     */
82
    public function getLastEntityId()
83
    {
84
        return $this->getLastOptionId();
85
    }
86
87
    /**
88
     * Set's the ID of the option that has been created recently.
89
     *
90
     * @param integer $lastOptionId The option ID
91
     *
92
     * @return void
93
     */
94
    public function setLastOptionId($lastOptionId)
95
    {
96
        $this->lastOptionId = $lastOptionId;
97
    }
98
99
    /**
100
     * Return's the ID of the option that has been created recently.
101
     *
102
     * @return integer The option ID
103
     */
104
    public function getLastOptionId()
105
    {
106
        return $this->lastOptionId;
107
    }
108
109
    /**
110
     * Pre-load the option ID for the passed EAV attribute option.
111
     *
112
     * @param array $attributeOption The EAV attribute option with the ID that has to be pre-loaded
113
     *
114
     * @return void
115
     */
116
    public function preLoadOptionId(array $attributeOption)
117
    {
118
        $this->setLastOptionId($attributeOption[MemberNames::OPTION_ID]);
119
    }
120
}
121