-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathOptionManagement.php
294 lines (263 loc) · 8.94 KB
/
OptionManagement.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Eav\Model\Entity\Attribute;
use Magento\Eav\Api\AttributeOptionManagementInterface;
use Magento\Eav\Api\AttributeOptionUpdateInterface;
use Magento\Eav\Api\Data\AttributeInterface as EavAttributeInterface;
use Magento\Eav\Api\Data\AttributeOptionInterface;
use Magento\Eav\Model\AttributeRepository;
use Magento\Eav\Model\ResourceModel\Entity\Attribute;
use Magento\Framework\Exception\InputException;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\Exception\StateException;
/**
* Eav Option Management
*/
class OptionManagement implements AttributeOptionManagementInterface, AttributeOptionUpdateInterface
{
/**
* @var AttributeRepository
*/
protected $attributeRepository;
/**
* @var Attribute
*/
protected $resourceModel;
/**
* @param AttributeRepository $attributeRepository
* @param Attribute $resourceModel
* @codeCoverageIgnore
*/
public function __construct(
AttributeRepository $attributeRepository,
Attribute $resourceModel
) {
$this->attributeRepository = $attributeRepository;
$this->resourceModel = $resourceModel;
}
/**
* Add option to attribute.
*
* @param int $entityType
* @param string $attributeCode
* @param AttributeOptionInterface $option
* @return string
* @throws InputException
* @throws NoSuchEntityException
* @throws StateException
*/
public function add($entityType, $attributeCode, $option)
{
$attribute = $this->loadAttribute($entityType, (string)$attributeCode);
$label = trim((string)$option->getLabel());
if ($label === '') {
throw new InputException(__('The attribute option label is empty. Enter the value and try again.'));
}
if ($attribute->getSource()->getOptionId($label) !== null) {
throw new InputException(
__(
'Admin store attribute option label "%1" is already exists.',
$option->getLabel()
)
);
}
$optionId = $this->getNewOptionId($option);
$this->saveOption($attribute, $option, $optionId);
return $this->retrieveOptionId($attribute, $option);
}
/**
* @inheritdoc
*/
public function update(
string $entityType,
string $attributeCode,
int $optionId,
AttributeOptionInterface $option
): bool {
$attribute = $this->loadAttribute($entityType, (string)$attributeCode);
if (empty($optionId)) {
throw new InputException(__('The option id is empty. Enter the value and try again.'));
}
$label = trim((string)$option->getLabel());
if ($label === '') {
throw new InputException(__('The attribute option label is empty. Enter the value and try again.'));
}
if ($attribute->getSource()->getOptionText($optionId) === false) {
throw new InputException(
__(
'The \'%1\' attribute doesn\'t include an option id \'%2\'.',
$attribute->getAttributeCode(),
$optionId
)
);
}
$optionIdByLabel = $attribute->getSource()->getOptionId($label);
if (!empty($optionIdByLabel) && (int)$optionIdByLabel !== (int)$optionId) {
throw new InputException(
__(
'Admin store attribute option label \'%1\' is already exists.',
$option->getLabel()
)
);
}
$this->saveOption($attribute, $option, $optionId);
return true;
}
/**
* Save attribute option
*
* @param EavAttributeInterface $attribute
* @param AttributeOptionInterface $option
* @param int|string $optionId
* @return AttributeOptionInterface
* @throws StateException
*/
private function saveOption(
EavAttributeInterface $attribute,
AttributeOptionInterface $option,
$optionId
): AttributeOptionInterface {
$optionLabel = $option->getLabel() !== null ? trim($option->getLabel()) : '';
$options = [];
$options['value'][$optionId][0] = $optionLabel;
$options['order'][$optionId] = $option->getSortOrder();
$options['is_default'][$optionId] = $option->getIsDefault();
if (is_array($option->getStoreLabels())) {
foreach ($option->getStoreLabels() as $label) {
$options['value'][$optionId][$label->getStoreId()] = $label->getLabel();
}
}
if ($option->getIsDefault()) {
$attribute->setDefault([$optionId]);
}
$attribute->setOption($options);
try {
$this->resourceModel->save($attribute);
} catch (\Exception $e) {
throw new StateException(__('The "%1" attribute can\'t be saved.', $attribute->getAttributeCode()));
}
return $option;
}
/**
* Get option id to create new option
*
* @param AttributeOptionInterface $option
* @return string
*/
private function getNewOptionId(AttributeOptionInterface $option): string
{
$optionId = trim($option->getValue() ?: '');
if (empty($optionId)) {
$optionId = 'new_option';
}
return 'id_' . $optionId;
}
/**
* @inheritdoc
*/
public function delete($entityType, $attributeCode, $optionId)
{
$attribute = $this->loadAttribute($entityType, $attributeCode);
$this->validateOption($attribute, $optionId);
$removalMarker = [
'option' => [
'value' => [$optionId => []],
'delete' => [$optionId => '1'],
],
];
$attribute->addData($removalMarker);
try {
$this->resourceModel->save($attribute);
} catch (\Exception $e) {
throw new StateException(__('The "%1" attribute can\'t be saved.', $attributeCode));
}
return true;
}
/**
* @inheritdoc
*/
public function getItems($entityType, $attributeCode)
{
if (empty($attributeCode)) {
throw new InputException(__('The attribute code is empty. Enter the code and try again.'));
}
$attribute = $this->attributeRepository->get($entityType, $attributeCode);
try {
$options = $attribute->getOptions();
} catch (\Exception $e) {
throw new StateException(__('The options for "%1" attribute can\'t be loaded.', $attributeCode));
}
return $options;
}
/**
* Validate option
*
* @param EavAttributeInterface $attribute
* @param int $optionId
* @return void
* @throws NoSuchEntityException
*/
protected function validateOption($attribute, $optionId)
{
if ($attribute->getSource()->getOptionText($optionId) === false) {
throw new NoSuchEntityException(
__(
'The "%1" attribute doesn\'t include an option with "%2" ID.',
$attribute->getAttributeCode(),
$optionId
)
);
}
}
/**
* Load attribute
*
* @param string|int $entityType
* @param string $attributeCode
* @return EavAttributeInterface
* @throws InputException
* @throws NoSuchEntityException
* @throws StateException
*/
private function loadAttribute($entityType, string $attributeCode): EavAttributeInterface
{
if (empty($attributeCode)) {
throw new InputException(__('The attribute code is empty. Enter the code and try again.'));
}
$attribute = $this->attributeRepository->get($entityType, $attributeCode);
if (!$attribute->usesSource()) {
throw new StateException(__('The "%1" attribute doesn\'t work with options.', $attributeCode));
}
$attribute->setStoreId(0);
return $attribute;
}
/**
* Retrieve option id
*
* @param EavAttributeInterface $attribute
* @param AttributeOptionInterface $option
* @return string
*/
private function retrieveOptionId(
EavAttributeInterface $attribute,
AttributeOptionInterface $option
) : string {
$label = $option->getLabel() !== null ? trim($option->getLabel()) : '';
$optionId = $attribute->getSource()->getOptionId($label);
if ($optionId) {
$option->setValue($optionId);
} elseif (is_array($option->getStoreLabels())) {
foreach ($option->getStoreLabels() as $label) {
$optionId = $attribute->getSource()->getOptionId($label->getLabel());
if ($optionId) {
break;
}
}
}
return (string) $optionId;
}
}