12
12
use Magento \Framework \App \Cache \StateInterface ;
13
13
use Magento \Framework \App \CacheInterface ;
14
14
use Magento \Framework \Serialize \SerializerInterface ;
15
+ use Magento \Store \Model \StoreManagerInterface ;
15
16
16
17
/**
17
18
* Cache for attribute metadata
@@ -53,24 +54,33 @@ class AttributeMetadataCache
53
54
*/
54
55
private $ serializer ;
55
56
57
+ /**
58
+ * @var StoreManagerInterface
59
+ */
60
+ private $ storeManager ;
61
+
56
62
/**
57
63
* Constructor
58
64
*
59
65
* @param CacheInterface $cache
60
66
* @param StateInterface $state
61
67
* @param SerializerInterface $serializer
62
68
* @param AttributeMetadataHydrator $attributeMetadataHydrator
69
+ * @param StoreManagerInterface $storeManager
63
70
*/
64
71
public function __construct (
65
72
CacheInterface $ cache ,
66
73
StateInterface $ state ,
67
74
SerializerInterface $ serializer ,
68
- AttributeMetadataHydrator $ attributeMetadataHydrator
75
+ AttributeMetadataHydrator $ attributeMetadataHydrator ,
76
+ StoreManagerInterface $ storeManager = null
69
77
) {
70
78
$ this ->cache = $ cache ;
71
79
$ this ->state = $ state ;
72
80
$ this ->serializer = $ serializer ;
73
81
$ this ->attributeMetadataHydrator = $ attributeMetadataHydrator ;
82
+ $ this ->storeManager = $ storeManager ?: \Magento \Framework \App \ObjectManager::getInstance ()
83
+ ->get (StoreManagerInterface::class);
74
84
}
75
85
76
86
/**
@@ -82,19 +92,20 @@ public function __construct(
82
92
*/
83
93
public function load ($ entityType , $ suffix = '' )
84
94
{
85
- if (isset ($ this ->attributes [$ entityType . $ suffix ])) {
86
- return $ this ->attributes [$ entityType . $ suffix ];
95
+ $ storeId = $ this ->storeManager ->getStore ()->getId ();
96
+ if (isset ($ this ->attributes [$ entityType . $ suffix . $ storeId ])) {
97
+ return $ this ->attributes [$ entityType . $ suffix . $ storeId ];
87
98
}
88
99
if ($ this ->isEnabled ()) {
89
- $ cacheKey = self ::ATTRIBUTE_METADATA_CACHE_PREFIX . $ entityType . $ suffix ;
100
+ $ cacheKey = self ::ATTRIBUTE_METADATA_CACHE_PREFIX . $ entityType . $ suffix . $ storeId ;
90
101
$ serializedData = $ this ->cache ->load ($ cacheKey );
91
102
if ($ serializedData ) {
92
103
$ attributesData = $ this ->serializer ->unserialize ($ serializedData );
93
104
$ attributes = [];
94
105
foreach ($ attributesData as $ key => $ attributeData ) {
95
106
$ attributes [$ key ] = $ this ->attributeMetadataHydrator ->hydrate ($ attributeData );
96
107
}
97
- $ this ->attributes [$ entityType . $ suffix ] = $ attributes ;
108
+ $ this ->attributes [$ entityType . $ suffix . $ storeId ] = $ attributes ;
98
109
return $ attributes ;
99
110
}
100
111
}
@@ -111,9 +122,10 @@ public function load($entityType, $suffix = '')
111
122
*/
112
123
public function save ($ entityType , array $ attributes , $ suffix = '' )
113
124
{
114
- $ this ->attributes [$ entityType . $ suffix ] = $ attributes ;
125
+ $ storeId = $ this ->storeManager ->getStore ()->getId ();
126
+ $ this ->attributes [$ entityType . $ suffix . $ storeId ] = $ attributes ;
115
127
if ($ this ->isEnabled ()) {
116
- $ cacheKey = self ::ATTRIBUTE_METADATA_CACHE_PREFIX . $ entityType . $ suffix ;
128
+ $ cacheKey = self ::ATTRIBUTE_METADATA_CACHE_PREFIX . $ entityType . $ suffix . $ storeId ;
117
129
$ attributesData = [];
118
130
foreach ($ attributes as $ key => $ attribute ) {
119
131
$ attributesData [$ key ] = $ this ->attributeMetadataHydrator ->extract ($ attribute );
0 commit comments