249 lines
7.3 KiB
PHP
249 lines
7.3 KiB
PHP
<?php
|
|
namespace Typo3Update\Sniffs\LegacyClassnames;
|
|
|
|
/*
|
|
* Copyright (C) 2017 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
use PHP_CodeSniffer_File as PhpcsFile;
|
|
|
|
/**
|
|
* Provide common uses for all sniffs, regarding class name checks.
|
|
*/
|
|
trait ClassnameCheckerTrait
|
|
{
|
|
/**
|
|
* Contains mapping from old -> new class names.
|
|
* @var array
|
|
*/
|
|
private $legacyClassnames = [];
|
|
|
|
/**
|
|
* A list of extension names that might contain legacy class names.
|
|
* Used to check clas names for warnings.
|
|
*
|
|
* Configure through ruleset.xml.
|
|
*
|
|
* @var array<string>
|
|
*/
|
|
public $legacyExtensions = ['Extbase', 'Fluid'];
|
|
|
|
/**
|
|
* @param string $mappingFile File containing php array for mapping.
|
|
*/
|
|
private function initialize($mappingFile = __DIR__ . '/../../../../../LegacyClassnames.php')
|
|
{
|
|
if ($this->legacyClassnames !== []) {
|
|
return;
|
|
}
|
|
|
|
$legacyClassnames = require $mappingFile;
|
|
$this->legacyClassnames = $legacyClassnames['aliasToClassNameMapping'];
|
|
}
|
|
|
|
/**
|
|
* Define whether the T_STRING default behaviour should be checked before
|
|
* or after the $stackPtr.
|
|
*
|
|
* @return bool
|
|
*/
|
|
protected function findPrev()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Processes the tokens that this sniff is interested in.
|
|
*
|
|
* This is the default implementation, as most of the time next T_STRING is
|
|
* the class name. This way only the register method has to be registered
|
|
* in default cases.
|
|
*
|
|
* @param PHP_CodeSniffer_File $phpcsFile The file where the token was found.
|
|
* @param int $stackPtr The position in the stack where
|
|
* the token was found.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function process(PhpcsFile $phpcsFile, $stackPtr)
|
|
{
|
|
$tokens = $phpcsFile->getTokens();
|
|
|
|
$classnamePosition = $phpcsFile->findNext(T_STRING, $stackPtr);
|
|
if ($this->findPrev()) {
|
|
$classnamePosition = $phpcsFile->findPrevious(T_STRING, $stackPtr);
|
|
}
|
|
if ($classnamePosition === false) {
|
|
return;
|
|
}
|
|
|
|
$classname = $tokens[$classnamePosition]['content'];
|
|
$this->addFixableError($phpcsFile, $classnamePosition, $classname);
|
|
}
|
|
|
|
/**
|
|
* Checks whether a mapping exists for the given $classname,
|
|
* indicating it's legacy.
|
|
*
|
|
* @param string $classname
|
|
* @return bool
|
|
*/
|
|
private function isLegacyClassname($classname)
|
|
{
|
|
$this->initialize();
|
|
return isset($this->legacyClassnames[strtolower($classname)]);
|
|
}
|
|
|
|
/**
|
|
* Guesses whether the given classname is legacy. Will not check
|
|
* isLegacyClassname
|
|
*
|
|
* @param string $classname
|
|
* @return bool
|
|
*/
|
|
private function isMaybeLegacyClassname($classname)
|
|
{
|
|
if (strpos($classname, 'Tx_') === false) {
|
|
return false;
|
|
}
|
|
|
|
$extensionName = call_user_func(function ($classname) {
|
|
$nameParts = explode('_', $classname);
|
|
return $nameParts[1];
|
|
}, $classname);
|
|
|
|
if (!in_array($extensionName, $this->legacyExtensions)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param string $classname
|
|
* @return string
|
|
*/
|
|
private function getNewClassname($classname)
|
|
{
|
|
$this->initialize();
|
|
return $this->legacyClassnames[strtolower($classname)];
|
|
}
|
|
|
|
/**
|
|
* Add an fixable error if given $classname is legacy.
|
|
*
|
|
* @param PhpcsFile $phpcsFile
|
|
* @param int $classnamePosition
|
|
* @param string $classname
|
|
*/
|
|
public function addFixableError(PhpcsFile $phpcsFile, $classnamePosition, $classname)
|
|
{
|
|
$classname = trim($classname, '\\\'"'); // Remove trailing slash, and quotes.
|
|
$this->addMaybeWarning($phpcsFile, $classnamePosition, $classname);
|
|
|
|
if ($this->isLegacyClassname($classname) === false) {
|
|
return;
|
|
}
|
|
|
|
$fix = $phpcsFile->addFixableError(
|
|
'Legacy classes are not allowed; found "%s", use "%s" instead',
|
|
$classnamePosition,
|
|
'legacyClassname',
|
|
[$classname, $this->getNewClassname($classname)]
|
|
);
|
|
|
|
if ($fix === true) {
|
|
$this->replaceLegacyClassname($phpcsFile, $classnamePosition, $classname);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add an warning if given $classname is maybe legacy.
|
|
*
|
|
* @param PhpcsFile $phpcsFile
|
|
* @param int $classnamePosition
|
|
* @param string $classname
|
|
*/
|
|
private function addMaybeWarning(PhpcsFile $phpcsFile, $classnamePosition, $classname)
|
|
{
|
|
if ($this->isLegacyClassname($classname) || $this->isMaybeLegacyClassname($classname) === false) {
|
|
return;
|
|
}
|
|
|
|
$phpcsFile->addWarning(
|
|
'Legacy classes are not allowed; found %s that might be a legacy class that does not exist anymore',
|
|
$classnamePosition,
|
|
'mightBeLegacyClassname',
|
|
[$classname]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Replaces the classname at $classnamePosition with $classname in $phpcsFile.
|
|
*
|
|
* @param PhpcsFile $phpcsFile
|
|
* @param int $classnamePosition
|
|
* @param string $classname
|
|
*/
|
|
private function replaceLegacyClassname(PhpcsFile $phpcsFile, $classnamePosition, $classname)
|
|
{
|
|
$prefix = '\\';
|
|
if ($phpcsFile->getTokens()[$classnamePosition -1]['code'] === T_NS_SEPARATOR) {
|
|
$prefix = '';
|
|
}
|
|
|
|
$phpcsFile->fixer->replaceToken(
|
|
$classnamePosition,
|
|
$this->getTokenForReplacement($prefix . $this->getNewClassname($classname))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* String to use for replacing / fixing the token.
|
|
* Default is class name itself, can be overwritten in sniff for special behaviour.
|
|
*
|
|
* @param string $classname
|
|
* @return string
|
|
*/
|
|
protected function getTokenForReplacement($classname)
|
|
{
|
|
return $classname;
|
|
}
|
|
|
|
/**
|
|
* Use this inside your getTokenForReplacement if $classname is inside a string.
|
|
* Strings will be converted to single quotes.
|
|
*
|
|
* @param string $classname
|
|
* @return string
|
|
*/
|
|
protected function getTokenReplacementForString($classname)
|
|
{
|
|
$stringSign = $this->originalTokenContent[0];
|
|
$token = explode($stringSign, $this->originalTokenContent);
|
|
$token[1] = $classname;
|
|
|
|
// Migrate double quote to single quote.
|
|
// This way no escaping of backslashes in class names is necessary.
|
|
if ($stringSign === '"') {
|
|
$stringSign = "'";
|
|
}
|
|
|
|
return implode($stringSign, $token);
|
|
}
|
|
}
|