1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* TechDivision\Import\Product\Observers\AdditionalAttributeObserver |
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-product |
18
|
|
|
* @link http://www.techdivision.com |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Product\Observers; |
22
|
|
|
|
23
|
|
|
use TechDivision\Import\Product\Utils\ColumnKeys; |
24
|
|
|
use TechDivision\Import\Product\Observers\AbstractProductImportObserver; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Observer that prepares the additional product attribues found in the CSV file |
28
|
|
|
* in the row 'additional_attributes'. |
29
|
|
|
* |
30
|
|
|
* @author Tim Wagner <[email protected]> |
31
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
32
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
33
|
|
|
* @link https://github.com/techdivision/import-product |
34
|
|
|
* @link http://www.techdivision.com |
35
|
|
|
*/ |
36
|
|
|
class AdditionalAttributeObserver extends AbstractProductImportObserver |
37
|
|
|
{ |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Will be invoked by the action on the events the listener has been registered for. |
41
|
|
|
* |
42
|
|
|
* @param array $row The row to handle |
43
|
|
|
* |
44
|
|
|
* @return array The modified row |
45
|
|
|
* @see \TechDivision\Import\Product\Observers\ImportObserverInterface::handle() |
46
|
|
|
*/ |
47
|
|
|
public function handle(array $row) |
48
|
|
|
{ |
49
|
|
|
|
50
|
|
|
// load the header information |
51
|
|
|
$headers = $this->getHeaders(); |
52
|
|
|
|
53
|
|
|
// query whether or not the row has additional attributes |
54
|
|
|
if ($additionalAttributes = $row[$headers[ColumnKeys::ADDITIONAL_ATTRIBUTES]]) { |
55
|
|
|
// query if the additional attributes have a value, at least |
56
|
|
|
if (strstr($additionalAttributes, '=') === false) { |
57
|
|
|
return; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
// explode the additional attributes |
61
|
|
|
$additionalAttributes = explode(',', $additionalAttributes); |
62
|
|
|
|
63
|
|
|
// iterate over the attributes and append them to the row |
64
|
|
|
foreach ($additionalAttributes as $additionalAttribute) { |
65
|
|
|
// explode attribute code/option value from the attribute |
66
|
|
|
list ($attributeCode, $optionValue) = explode('=', $additionalAttribute); |
67
|
|
|
|
68
|
|
|
// try to load the appropriate key for the value |
69
|
|
|
if (isset($headers[$attributeCode])) { |
70
|
|
|
$newKey = $headers[$attributeCode]; |
71
|
|
|
} else { |
72
|
|
|
$headers[$attributeCode] = $newKey = sizeof($headers); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
// append/replace the attribute value |
76
|
|
|
$row[$newKey] = $optionValue; |
77
|
|
|
} |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
// update the header information |
81
|
|
|
$this->setHeaders($headers); |
82
|
|
|
|
83
|
|
|
// return the prepared row |
84
|
|
|
return $row; |
85
|
|
|
} |
86
|
|
|
} |
87
|
|
|
|