-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAttributeKeyProvider.php
213 lines (185 loc) · 6.48 KB
/
AttributeKeyProvider.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
<?php
namespace Pim\Bundle\DataGeneratorBundle;
use Pim\Component\Catalog\Model\AttributeInterface;
use Pim\Component\Catalog\Model\ChannelInterface;
use Pim\Component\Catalog\Model\CurrencyInterface;
use Pim\Component\Catalog\Model\LocaleInterface;
use Pim\Component\Catalog\Repository\AttributeRepositoryInterface;
use Pim\Component\Catalog\Repository\ChannelRepositoryInterface;
use Pim\Component\Catalog\Repository\CurrencyRepositoryInterface;
use Pim\Component\Catalog\Repository\LocaleRepositoryInterface;
/**
* Generate the list of attribute keys. The keys are sorted so that we always get
* them in the same consistent order.
*
* @author Philippe Mossiere <[email protected]>
* @copyright 2016 Akeneo SAS (http://www.akeneo.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class AttributeKeyProvider
{
const METRIC_UNIT = 'unit';
/** @var AttributeRepositoryInterface */
private $attributeRepository;
/** @var ChannelRepositoryInterface */
private $channelRepository;
/** @var LocaleRepositoryInterface */
private $localeRepository;
/** @var CurrencyRepositoryInterface */
private $currencyRepository;
/** @var ChannelInterface[] */
private $channels;
/** @var CurrencyInterface[] */
private $currencies;
/** @var LocaleInterface[] */
private $locales;
/**
* ProductValueRawBuilder constructor.
*
* @param AttributeRepositoryInterface $attributeRepository
* @param ChannelRepositoryInterface $channelRepository
* @param LocaleRepositoryInterface $localeRepository
* @param CurrencyRepositoryInterface $currencyRepository
*/
public function __construct(
AttributeRepositoryInterface $attributeRepository,
ChannelRepositoryInterface $channelRepository,
LocaleRepositoryInterface $localeRepository,
CurrencyRepositoryInterface $currencyRepository
) {
$this->attributeRepository = $attributeRepository;
$this->channelRepository = $channelRepository;
$this->localeRepository = $localeRepository;
$this->currencyRepository = $currencyRepository;
}
/**
* Generate the list of attribute keys for a given attribute. The keys are sorted so that we always get
* them in the same consistent order.
*
* Example:
* Attribute: description localizable in english and french for ecommerce
* Attributes keys are:
* [ description-en_US-ecommerce, description-fr_FR-ecommerce ]
*
* @param AttributeInterface $attribute
*
* @return array
*/
public function getAttributeKeys(AttributeInterface $attribute)
{
$keys = [];
$locales = $attribute->isLocalizable() ? $this->getLocales() : [null];
$channels = $attribute->isScopable() ? $this->getChannels() : [null];
foreach ($channels as $channel) {
foreach ($locales as $locale) {
$localeInChannel = null === $channel ||
null === $locale ||
in_array($locale, $channel->getLocales()->toArray());
$localeInSpecific = !$attribute->isLocaleSpecific() ||
null === $locale ||
in_array($locale->getCode(), $attribute->getLocaleSpecificCodes());
if ($localeInChannel && $localeInSpecific) {
$keys[] = $this->createKey($attribute, $channel, $locale);
}
}
}
switch ($attribute->getBackendType()) {
case 'prices':
foreach ($keys as $index => $key) {
foreach ($this->getCurrencies() as $currency) {
$keys[] = $key . '-' . $currency->getCode();
}
unset($keys[$index]);
}
break;
case 'metric':
foreach ($keys as $index => $key) {
$keys[] = $key . '-' . self::METRIC_UNIT;
}
break;
}
sort($keys);
return $keys;
}
/**
* Generate the list of attribute keys for all attributes. The keys are sorted so that we always get
* them in the same consistent order.
*
* @return array
*/
public function getAllAttributesKeys()
{
$keys = [];
foreach ($this->attributeRepository->findAll() as $attribute) {
$keys = array_merge($keys, $this->getAttributeKeys($attribute));
}
sort($keys);
return $keys;
}
/**
* Get all channels
*
* @return ChannelInterface[]
*/
private function getChannels()
{
if (null === $this->channels) {
$this->channels = [];
$channels = $this->channelRepository->findAll();
foreach ($channels as $channel) {
$this->channels[$channel->getCode()] = $channel;
}
}
return $this->channels;
}
/**
* Get active currencies
*
* @return CurrencyInterface[]
*/
private function getCurrencies()
{
if (null === $this->currencies) {
$this->currencies = [];
$currencies = $this->currencyRepository->findBy(['activated' => 1]);
foreach ($currencies as $currency) {
$this->currencies[$currency->getCode()] = $currency;
}
}
return $this->currencies;
}
/**
* Get active locales
*
* @return LocaleInterface[]
*/
private function getLocales()
{
if (null === $this->locales) {
$this->locales = [];
$locales = $this->localeRepository->findBy(['activated' => 1]);
foreach ($locales as $locale) {
$this->locales[$locale->getCode()] = $locale;
}
}
return $this->locales;
}
/**
* Return the key for the given attribute, locale and channem.
*
* @param AttributeInterface $attribute
* @param ChannelInterface|null $channel
* @param LocaleInterface|null $locale
*
* @return string
*/
private function createKey(
AttributeInterface $attribute,
ChannelInterface $channel = null,
LocaleInterface $locale = null
) {
$channelCode = null !== $channel ? '-' . $channel->getCode() : '';
$localeCode = null !== $locale ? '-' . $locale->getCode() : '';
return $attribute->getCode() . $localeCode . $channelCode;
}
}