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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\ResourceModel;
use Magento\Framework\DB\Select;
use Magento\Framework\Model\AbstractModel;
/**
* EAV attribute resource model (Using Forms)
*
* @api
* @since 100.0.2
*/
abstract class Attribute extends \Magento\Eav\Model\ResourceModel\Entity\Attribute
{
/**
* Get EAV website table
*
* Get table, where website-dependent attribute parameters are stored
* If realization doesn't demand this functionality, let this function just return null
*
* @return string|null
*/
abstract protected function _getEavWebsiteTable();
/**
* Get Form attribute table
*
* Get table, where dependency between form name and attribute ids are stored
*
* @return string|null
*/
abstract protected function _getFormAttributeTable();
/**
* Perform actions before object save
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return $this
*/
protected function _beforeSave(AbstractModel $object)
{
$validateRules = $object->getData('validate_rules');
if (is_array($validateRules)) {
$object->setData('validate_rules', $this->getSerializer()->serialize($validateRules));
}
return parent::_beforeSave($object);
}
/**
* Retrieve select object for load object data
*
* @param string $field
* @param mixed $value
* @param AbstractModel $object
* @return Select
*/
protected function _getLoadSelect($field, $value, $object)
{
$select = parent::_getLoadSelect($field, $value, $object);
$websiteId = (int)$object->getWebsite()->getId();
if ($websiteId) {
$connection = $this->getConnection();
$columns = [];
$scopeTable = $this->_getEavWebsiteTable();
$describe = $connection->describeTable($scopeTable);
unset($describe['attribute_id']);
foreach (array_keys($describe) as $columnName) {
$columns['scope_' . $columnName] = $columnName;
}
$conditionSql = $connection->quoteInto(
$this->getMainTable() . '.attribute_id = scope_table.attribute_id AND scope_table.website_id =?',
$websiteId
);
$select->joinLeft(['scope_table' => $scopeTable], $conditionSql, $columns);
}
return $select;
}
/**
* Save attribute/form relations after attribute save
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return $this
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
protected function _afterSave(AbstractModel $object)
{
$forms = $object->getData('used_in_forms');
$connection = $this->getConnection();
if (is_array($forms)) {
$where = ['attribute_id=?' => $object->getId()];
$connection->delete($this->_getFormAttributeTable(), $where);
$data = [];
foreach ($forms as $formCode) {
$data[] = ['form_code' => $formCode, 'attribute_id' => (int)$object->getId()];
}
if ($data) {
$connection->insertMultiple($this->_getFormAttributeTable(), $data);
}
}
// update sort order
if (!$object->isObjectNew() && $object->dataHasChangedFor('sort_order')) {
$data = ['sort_order' => $object->getSortOrder()];
$where = ['attribute_id=?' => (int)$object->getId()];
$connection->update($this->getTable('eav_entity_attribute'), $data, $where);
}
// save scope attributes
$websiteId = (int)$object->getWebsite()->getId();
if ($websiteId) {
$table = $this->_getEavWebsiteTable();
$describe = $this->getConnection()->describeTable($table);
$data = [];
if (!$object->getScopeWebsiteId() || $object->getScopeWebsiteId() != $websiteId) {
$data = $this->getScopeValues($object);
}
$data['attribute_id'] = (int)$object->getId();
$data['website_id'] = (int)$websiteId;
unset($describe['attribute_id']);
unset($describe['website_id']);
$updateColumns = [];
foreach (array_keys($describe) as $columnName) {
$data[$columnName] = $object->getData('scope_' . $columnName);
$updateColumns[] = $columnName;
}
$connection->insertOnDuplicate($table, $data, $updateColumns);
}
return parent::_afterSave($object);
}
/**
* Return scope values for attribute and website
*
* @param \Magento\Eav\Model\Attribute $object
* @return array
*/
public function getScopeValues(\Magento\Eav\Model\Attribute $object)
{
$connection = $this->getConnection();
$bind = ['attribute_id' => (int)$object->getId(), 'website_id' => (int)$object->getWebsite()->getId()];
$select = $connection->select()->from(
$this->_getEavWebsiteTable()
)->where(
'attribute_id = :attribute_id'
)->where(
'website_id = :website_id'
)->limit(
1
);
$result = $connection->fetchRow($select, $bind);
if (!$result) {
$result = [];
}
return $result;
}
/**
* Return forms in which the attribute
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return array
*/
public function getUsedInForms(AbstractModel $object)
{
$connection = $this->getConnection();
$bind = ['attribute_id' => (int)$object->getId()];
$select = $connection->select()->from(
$this->_getFormAttributeTable(),
'form_code'
)->where(
'attribute_id = :attribute_id'
);
return $connection->fetchCol($select, $bind);
}
}