-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAttributeRepository.php
223 lines (197 loc) · 7.75 KB
/
AttributeRepository.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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model;
use Magento\Framework\Api\SearchCriteria\CollectionProcessor;
use Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface;
use Magento\Framework\Exception\InputException;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\Exception\StateException;
/**
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class AttributeRepository implements \Magento\Eav\Api\AttributeRepositoryInterface
{
/**
* @var \Magento\Eav\Model\Config
*/
protected $eavConfig;
/**
* @var \Magento\Eav\Model\ResourceModel\Entity\Attribute
*/
protected $eavResource;
/**
* @var \Magento\Eav\Model\ResourceModel\Entity\Attribute\CollectionFactory
*/
protected $attributeCollectionFactory;
/**
* @var \Magento\Eav\Api\Data\AttributeSearchResultsInterfaceFactory
*/
protected $searchResultsFactory;
/**
* @var Entity\AttributeFactory
*/
protected $attributeFactory;
/**
* @var \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface
*/
protected $joinProcessor;
/**
* @var CollectionProcessorInterface
*/
private $collectionProcessor;
/**
* @param Config $eavConfig
* @param \Magento\Eav\Model\ResourceModel\Entity\Attribute $eavResource
* @param \Magento\Eav\Model\ResourceModel\Entity\Attribute\CollectionFactory $attributeCollectionFactory
* @param \Magento\Eav\Api\Data\AttributeSearchResultsInterfaceFactory $searchResultsFactory
* @param Entity\AttributeFactory $attributeFactory
* @param \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $joinProcessor
* @param CollectionProcessorInterface $collectionProcessor
* @codeCoverageIgnore
*/
public function __construct(
\Magento\Eav\Model\Config $eavConfig,
\Magento\Eav\Model\ResourceModel\Entity\Attribute $eavResource,
\Magento\Eav\Model\ResourceModel\Entity\Attribute\CollectionFactory $attributeCollectionFactory,
\Magento\Eav\Api\Data\AttributeSearchResultsInterfaceFactory $searchResultsFactory,
\Magento\Eav\Model\Entity\AttributeFactory $attributeFactory,
\Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $joinProcessor,
?CollectionProcessorInterface $collectionProcessor = null
) {
$this->eavConfig = $eavConfig;
$this->eavResource = $eavResource;
$this->attributeCollectionFactory = $attributeCollectionFactory;
$this->searchResultsFactory = $searchResultsFactory;
$this->attributeFactory = $attributeFactory;
$this->joinProcessor = $joinProcessor;
$this->collectionProcessor = $collectionProcessor ?: $this->getCollectionProcessor();
}
/**
* {@inheritdoc}
*/
public function save(\Magento\Eav\Api\Data\AttributeInterface $attribute)
{
try {
$this->eavResource->save($attribute);
} catch (\Exception $e) {
throw new StateException(__("The attribute can't be saved."), $e);
}
return $attribute;
}
/**
* {@inheritdoc}
*/
public function getList($entityTypeCode, \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria)
{
if (!$entityTypeCode) {
throw InputException::requiredField('entity_type_code');
}
/** @var \Magento\Eav\Model\ResourceModel\Entity\Attribute\Collection $attributeCollection */
$attributeCollection = $this->attributeCollectionFactory->create();
$this->joinProcessor->process($attributeCollection);
$attributeCollection->addFieldToFilter('entity_type_code', ['eq' => $entityTypeCode]);
$attributeCollection->join(
['entity_type' => $attributeCollection->getTable('eav_entity_type')],
'main_table.entity_type_id = entity_type.entity_type_id',
[]
);
$attributeCollection->joinLeft(
['eav_entity_attribute' => $attributeCollection->getTable('eav_entity_attribute')],
'main_table.attribute_id = eav_entity_attribute.attribute_id',
[]
);
$entityType = $this->eavConfig->getEntityType($entityTypeCode);
$additionalTable = $entityType->getAdditionalAttributeTable();
if ($additionalTable) {
$attributeCollection->join(
['additional_table' => $attributeCollection->getTable($additionalTable)],
'main_table.attribute_id = additional_table.attribute_id',
[]
);
}
$this->collectionProcessor->process($searchCriteria, $attributeCollection);
// Group attributes by id to prevent duplicates with different attribute sets
$attributeCollection->addAttributeGrouping();
$attributes = [];
/** @var \Magento\Eav\Api\Data\AttributeInterface $attribute */
foreach ($attributeCollection as $attribute) {
$attributes[] = $this->get($entityTypeCode, $attribute->getAttributeCode());
}
/** @var \Magento\Eav\Api\Data\AttributeSearchResultsInterface $searchResults */
$searchResults = $this->searchResultsFactory->create();
$searchResults->setSearchCriteria($searchCriteria);
$searchResults->setItems($attributes);
// if $searchCriteria has no page size - we can use count() on $attributeCollection
// otherwise - we have to use getSize() on $attributeCollection
// with this approach we can eliminate excessive COUNT requests in case page size is empty
if ($searchCriteria->getPageSize()) {
$searchResults->setTotalCount($attributeCollection->getSize());
} else {
$searchResults->setTotalCount(count($attributeCollection));
}
return $searchResults;
}
/**
* {@inheritdoc}
*/
public function get($entityTypeCode, $attributeCode)
{
/** @var \Magento\Eav\Api\Data\AttributeInterface $attribute */
$attribute = $this->eavConfig->getAttribute($entityTypeCode, $attributeCode);
if (!$attribute || !$attribute->getAttributeId()) {
throw new NoSuchEntityException(
__(
'The attribute with a "%1" attributeCode doesn\'t exist. Verify the attribute and try again.',
$attributeCode
)
);
}
return $attribute;
}
/**
* {@inheritdoc}
*/
public function delete(\Magento\Eav\Api\Data\AttributeInterface $attribute)
{
try {
$this->eavResource->delete($attribute);
} catch (\Exception $e) {
throw new StateException(__("The attribute can't be deleted."));
}
return true;
}
/**
* {@inheritdoc}
*/
public function deleteById($attributeId)
{
/** @var \Magento\Eav\Model\Entity\Attribute $attribute */
$attribute = $this->attributeFactory->create();
$this->eavResource->load($attribute, $attributeId);
if (!$attribute->getAttributeId()) {
throw new NoSuchEntityException(
__('The attribute with a "%1" ID doesn\'t exist. Verify the attribute and try again.', $attributeId)
);
}
$this->delete($attribute);
return true;
}
/**
* Retrieve collection processor
*
* @deprecated 101.0.0
* @return CollectionProcessorInterface
*/
private function getCollectionProcessor()
{
if (!$this->collectionProcessor) {
$this->collectionProcessor = \Magento\Framework\App\ObjectManager::getInstance()->get(
CollectionProcessor::class
);
}
return $this->collectionProcessor;
}
}