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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\Attribute\Data;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\Exception\LocalizedException as CoreException;
use Magento\Framework\Validator\EmailAddress;
/**
* EAV Attribute Abstract Data Model
*
* @api
* @author Magento Core Team <core@magentocommerce.com>
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @since 100.0.2
*/
abstract class AbstractData
{
/**
* Attribute instance
*
* @var \Magento\Eav\Model\Attribute
*/
protected $_attribute;
/**
* Entity instance
*
* @var \Magento\Framework\Model\AbstractModel
*/
protected $_entity;
/**
* Request Scope name
*
* @var string
*/
protected $_requestScope;
/**
* Scope visibility flag
*
* @var bool
*/
protected $_requestScopeOnly = true;
/**
* Is AJAX request flag
*
* @var bool
*/
protected $_isAjax = false;
/**
* Array of full extracted data
* Needed for depends attributes
*
* @var array
*/
protected $_extractedData = [];
/**
* Date filter format
*
* @var string
*/
protected $_dateFilterFormat;
/**
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
*/
protected $_localeDate;
/**
* @var \Magento\Framework\Locale\ResolverInterface
*/
protected $_localeResolver;
/**
* @var \Psr\Log\LoggerInterface
*/
protected $_logger;
/**
* @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
* @param \Psr\Log\LoggerInterface $logger
* @param \Magento\Framework\Locale\ResolverInterface $localeResolver
* @codeCoverageIgnore
*/
public function __construct(
\Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate,
\Psr\Log\LoggerInterface $logger,
\Magento\Framework\Locale\ResolverInterface $localeResolver
) {
$this->_localeDate = $localeDate;
$this->_logger = $logger;
$this->_localeResolver = $localeResolver;
}
/**
* Set attribute instance
*
* @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute
* @return $this
* @codeCoverageIgnore
*/
public function setAttribute(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute)
{
$this->_attribute = $attribute;
return $this;
}
/**
* Return Attribute instance
*
* @throws CoreException
* @return \Magento\Eav\Model\Attribute
*/
public function getAttribute()
{
if (!$this->_attribute) {
throw new CoreException(__('Attribute object is undefined'));
}
return $this->_attribute;
}
/**
* Set Request scope
*
* @param string $scope
* @return $this
* @codeCoverageIgnore
*/
public function setRequestScope($scope)
{
$this->_requestScope = $scope;
return $this;
}
/**
* Set scope visibility
*
* Search value only in scope or search value in scope and global
*
* @param bool $flag
* @return $this
* @codeCoverageIgnore
*/
public function setRequestScopeOnly($flag)
{
$this->_requestScopeOnly = (bool)$flag;
return $this;
}
/**
* Set entity instance
*
* @param \Magento\Framework\Model\AbstractModel $entity
* @return $this
* @codeCoverageIgnore
*/
public function setEntity(\Magento\Framework\Model\AbstractModel $entity)
{
$this->_entity = $entity;
return $this;
}
/**
* Returns entity instance
*
* @return \Magento\Framework\Model\AbstractModel
* @throws CoreException
*/
public function getEntity()
{
if (!$this->_entity) {
throw new CoreException(__('Entity object is undefined'));
}
return $this->_entity;
}
/**
* Set array of full extracted data
*
* @param array $data
* @return $this
* @codeCoverageIgnore
*/
public function setExtractedData(array $data)
{
$this->_extractedData = $data;
return $this;
}
/**
* Return extracted data
*
* @param string $index
* @return mixed
*/
public function getExtractedData($index = null)
{
if ($index !== null) {
if (isset($this->_extractedData[$index])) {
return $this->_extractedData[$index];
}
return null;
}
return $this->_extractedData;
}
/**
* Apply attribute input filter to value
*
* @param string $value
* @return string
*/
protected function _applyInputFilter($value)
{
if ($value === false) {
return false;
}
$filter = $this->_getFormFilter();
if ($filter) {
$value = $filter->inputFilter($value);
}
return $value;
}
/**
* Return Data Form Input/Output Filter
*
* @return \Magento\Framework\Data\Form\Filter\FilterInterface|false
*/
protected function _getFormFilter()
{
$filterCode = $this->getAttribute()->getInputFilter();
if ($filterCode) {
$filterClass = 'Magento\Framework\Data\Form\Filter\\' . ucfirst($filterCode);
if ($filterCode == 'date') {
$filter = new $filterClass($this->_dateFilterFormat(), $this->_localeResolver);
} else {
$filter = new $filterClass();
}
return $filter;
}
return false;
}
/**
* Get/Set/Reset date filter format
*
* @param string|null|false $format
* @return $this|string
*/
protected function _dateFilterFormat($format = null)
{
if ($format === null) {
// get format
if ($this->_dateFilterFormat === null) {
$this->_dateFilterFormat = \IntlDateFormatter::SHORT;
}
return $this->_localeDate->getDateFormat($this->_dateFilterFormat);
} elseif ($format === false) {
// reset value
$this->_dateFilterFormat = null;
return $this;
}
$this->_dateFilterFormat = $format;
return $this;
}
/**
* Apply attribute output filter to value
*
* @param string $value
* @return string
*/
protected function _applyOutputFilter($value)
{
$filter = $this->_getFormFilter();
if ($filter) {
$value = $filter->outputFilter($value);
}
return $value;
}
/**
* Validate value by attribute input validation rule
*
* @param string $value
* @return array|true
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
protected function _validateInputRule($value)
{
// skip validate empty value
if (empty($value)) {
return true;
}
$validateRules = $this->getAttribute()->getValidateRules();
if (!empty($validateRules['input_validation'])) {
$label = $this->getAttribute()->getStoreLabel();
$allowWhiteSpace = false;
switch ($validateRules['input_validation']) {
case 'alphanum-with-spaces':
$allowWhiteSpace = true;
// Continue to alphanumeric validation
case 'alphanumeric':
$validator = new \Zend_Validate_Alnum($allowWhiteSpace);
$validator->setMessage(__('"%1" invalid type entered.', $label), \Zend_Validate_Alnum::INVALID);
$validator->setMessage(
__('"%1" contains non-alphabetic or non-numeric characters.', $label),
\Zend_Validate_Alnum::NOT_ALNUM
);
$validator->setMessage(__('"%1" is an empty string.', $label), \Zend_Validate_Alnum::STRING_EMPTY);
if (!$validator->isValid($value)) {
return $validator->getMessages();
}
break;
case 'numeric':
$validator = new \Zend_Validate_Digits();
$validator->setMessage(__('"%1" invalid type entered.', $label), \Zend_Validate_Digits::INVALID);
$validator->setMessage(
__('"%1" contains non-numeric characters.', $label),
\Zend_Validate_Digits::NOT_DIGITS
);
$validator->setMessage(
__('"%1" is an empty string.', $label),
\Zend_Validate_Digits::STRING_EMPTY
);
if (!$validator->isValid($value)) {
return $validator->getMessages();
}
break;
case 'alpha':
$validator = new \Zend_Validate_Alpha(true);
$validator->setMessage(__('"%1" invalid type entered.', $label), \Zend_Validate_Alpha::INVALID);
$validator->setMessage(
__('"%1" contains non-alphabetic characters.', $label),
\Zend_Validate_Alpha::NOT_ALPHA
);
$validator->setMessage(__('"%1" is an empty string.', $label), \Zend_Validate_Alpha::STRING_EMPTY);
if (!$validator->isValid($value)) {
return $validator->getMessages();
}
break;
case 'email':
/**
__("'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded")
__("Invalid type given. String expected")
__("'%value%' appears to be a DNS hostname but contains a dash in an invalid position")
__("'%value%' does not match the expected structure for a DNS hostname")
__("'%value%' appears to be a DNS hostname but cannot match against hostname schema
* for TLD '%tld%'")
__("'%value%' does not appear to be a valid local network name")
__("'%value%' does not appear to be a valid URI hostname")
__("'%value%' appears to be an IP address but IP addresses are not allowed")
__("'%value%' appears to be a local network name but local network names are not allowed")
__("'%value%' appears to be a DNS hostname but cannot extract TLD part")
__("'%value%' appears to be a DNS hostname but cannot match TLD against known list")
*/
$validator = new EmailAddress();
$validator->setMessage(
__('"%1" invalid type entered.', $label),
\Zend_Validate_EmailAddress::INVALID
);
$validator->setMessage(
__('"%1" is not a valid email address.', $label),
\Zend_Validate_EmailAddress::INVALID_FORMAT
);
$validator->setMessage(
__('"%1" is not a valid hostname.', $label),
\Zend_Validate_EmailAddress::INVALID_HOSTNAME
);
$validator->setMessage(
__('"%1" is not a valid hostname.', $label),
\Zend_Validate_EmailAddress::INVALID_MX_RECORD
);
$validator->setMessage(
__('"%1" is not a valid hostname.', $label),
\Zend_Validate_EmailAddress::INVALID_MX_RECORD
);
$validator->setMessage(
__('"%1" is not a valid email address.', $label),
\Zend_Validate_EmailAddress::DOT_ATOM
);
$validator->setMessage(
__('"%1" is not a valid email address.', $label),
\Zend_Validate_EmailAddress::QUOTED_STRING
);
$validator->setMessage(
__('"%1" is not a valid email address.', $label),
\Zend_Validate_EmailAddress::INVALID_LOCAL_PART
);
$validator->setMessage(
__('"%1" uses too many characters.', $label),
\Zend_Validate_EmailAddress::LENGTH_EXCEEDED
);
$validator->setMessage(
__("'%value%' looks like an IP address, which is not an acceptable format."),
\Zend_Validate_Hostname::IP_ADDRESS_NOT_ALLOWED
);
$validator->setMessage(
__("'%value%' looks like a DNS hostname but contains a dash in an invalid position."),
\Zend_Validate_Hostname::INVALID_DASH
);
$validator->setMessage(
__(
"'%value%' looks like a DNS hostname but we cannot match it against the "
. "hostname schema for TLD '%tld%'."
),
\Zend_Validate_Hostname::INVALID_HOSTNAME_SCHEMA
);
$validator->setMessage(
__("'%value%' looks like a DNS hostname but cannot extract TLD part."),
\Zend_Validate_Hostname::UNDECIPHERABLE_TLD
);
$validator->setMessage(
__("'%value%' does not look like a valid local network name."),
\Zend_Validate_Hostname::INVALID_LOCAL_NAME
);
$validator->setMessage(
__("'%value%' looks like a local network name, which is not an acceptable format."),
\Zend_Validate_Hostname::LOCAL_NAME_NOT_ALLOWED
);
$validator->setMessage(
__(
"'%value%' appears to be a DNS hostname, but the given punycode notation cannot be decoded."
),
\Zend_Validate_Hostname::CANNOT_DECODE_PUNYCODE
);
if (!$validator->isValid($value)) {
return array_unique($validator->getMessages());
}
break;
case 'url':
$parsedUrl = parse_url($value);
if ($parsedUrl === false || empty($parsedUrl['scheme']) || empty($parsedUrl['host'])) {
return [__('"%1" is not a valid URL.', $label)];
}
$validator = new \Zend_Validate_Hostname();
if (!$validator->isValid($parsedUrl['host'])) {
return [__('"%1" is not a valid URL.', $label)];
}
break;
case 'date':
$validator = new \Zend_Validate_Date(
[
'format' => \Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT,
'locale' => $this->_localeResolver->getLocale(),
]
);
$validator->setMessage(__('"%1" invalid type entered.', $label), \Zend_Validate_Date::INVALID);
$validator->setMessage(__('"%1" is not a valid date.', $label), \Zend_Validate_Date::INVALID_DATE);
$validator->setMessage(
__('"%1" does not fit the entered date format.', $label),
\Zend_Validate_Date::FALSEFORMAT
);
if (!$validator->isValid($value)) {
return array_unique($validator->getMessages());
}
break;
}
}
return true;
}
/**
* Set is AJAX Request flag
*
* @param bool $flag
* @return $this
* @codeCoverageIgnore
*/
public function setIsAjaxRequest($flag = true)
{
$this->_isAjax = (bool)$flag;
return $this;
}
/**
* Return is AJAX Request
*
* @return bool
* @SuppressWarnings(PHPMD.BooleanGetMethodName)
* @codeCoverageIgnore
*/
public function getIsAjaxRequest()
{
return $this->_isAjax;
}
/**
* Return Original Attribute value from Request
*
* @param RequestInterface $request
* @return mixed
*/
protected function _getRequestValue(RequestInterface $request)
{
$attrCode = $this->getAttribute()->getAttributeCode();
if ($this->_requestScope) {
if (strpos($this->_requestScope, '/') !== false) {
$params = $request->getParams();
$parts = explode('/', $this->_requestScope);
foreach ($parts as $part) {
if (isset($params[$part])) {
$params = $params[$part];
} else {
$params = [];
}
}
} else {
$params = $request->getParam($this->_requestScope);
}
if (isset($params[$attrCode])) {
$value = $params[$attrCode];
} else {
$value = false;
}
if (!$this->_requestScopeOnly && $value === false) {
$value = $request->getParam($attrCode, false);
}
} else {
$value = $request->getParam($attrCode, false);
}
return $value;
}
/**
* Extract data from request and return value
*
* @param RequestInterface $request
* @return array|string|bool
*/
abstract public function extractValue(RequestInterface $request);
/**
* Validate data
*
* @param array|string $value
* @throws CoreException
* @return bool
*/
abstract public function validateValue($value);
/**
* Export attribute value to entity model
*
* @param array|string $value
* @return $this
*/
abstract public function compactValue($value);
/**
* Restore attribute value from SESSION to entity model
*
* @param array|string $value
* @return $this
*/
abstract public function restoreValue($value);
/**
* Return formatted attribute value from entity model
*
* @param string $format
* @return string|array
*/
abstract public function outputValue($format = \Magento\Eav\Model\AttributeDataFactory::OUTPUT_FORMAT_TEXT);
}