-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathMageEntitySniff.php
117 lines (107 loc) · 2.75 KB
/
MageEntitySniff.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
<?php
/**
* Copyright 2018 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Legacy;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Files\File;
/**
* Detects typical Magento 1.x classes constructions.
*/
class MageEntitySniff implements Sniff
{
/**
* String representation of error.
*
* @var string
*/
protected $errorMessage = 'Possible Magento 2 design violation. Detected typical Magento 1.x construction "%s".';
/**
* Error violation code.
*
* @var string
*/
protected $errorCode = 'FoundLegacyEntity';
/**
* Legacy entity from Magento 1.
*
* @var string
*/
protected $legacyEntity = 'Mage';
/**
* Legacy prefixes from Magento 1.
*
* @var array
*/
protected $legacyPrefixes = [
'Mage_',
'Enterprise_'
];
/**
* @inheritdoc
*/
public function register()
{
return [
T_DOUBLE_COLON,
T_NEW
];
}
/**
* List of tokens for which we should find name before his position.
*
* @var array
*/
protected $nameBefore = [
T_DOUBLE_COLON
];
/**
* @inheritdoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
if (in_array($tokens[$stackPtr]['code'], $this->nameBefore)) {
$oldPosition = $stackPtr;
$stackPtr = $phpcsFile->findPrevious(T_STRING, $stackPtr - 1, null, false, null, true);
if ($stackPtr === false) {
return;
}
$entityName = $tokens[$stackPtr]['content'];
$error = $entityName . $tokens[$oldPosition]['content'];
} else {
$oldPosition = $stackPtr;
$stackPtr = $phpcsFile->findNext(T_STRING, $oldPosition + 1, null, false, null, true);
if ($stackPtr === false) {
return;
}
$entityName = $tokens[$stackPtr]['content'];
$error = $tokens[$oldPosition]['content'] . ' ' . $entityName;
}
if ($entityName === $this->legacyEntity || $this->isPrefixLegacy($entityName)) {
$phpcsFile->addError(
$this->errorMessage,
$stackPtr,
$this->errorCode,
[$error]
);
}
}
/**
* Method checks if passed string contains legacy prefix from Magento 1.
*
* @param string $entityName
* @return bool
*/
private function isPrefixLegacy($entityName)
{
foreach ($this->legacyPrefixes as $entity) {
if (strpos($entityName, $entity) === 0) {
return true;
}
}
return false;
}
}