mirror of
https://github.com/10h30/genesis-simple-sidebars.git
synced 2026-07-15 20:43:21 +09:00
Introducing coding standards validation.
This commit is contained in:
committed by
Nathan Rice
parent
6e40c921ab
commit
fd504d41ac
+166
@@ -0,0 +1,166 @@
|
||||
<?php
|
||||
/**
|
||||
* \PHPCompatibility\Sniffs\Miscellaneous\RemovedAlternativePHPTags.
|
||||
*
|
||||
* PHP version 7.0
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHPCompatibility
|
||||
* @author Juliette Reinders Folmer <phpcompatibility_nospam@adviesenzo.nl>
|
||||
*/
|
||||
|
||||
namespace PHPCompatibility\Sniffs\Miscellaneous;
|
||||
|
||||
use PHPCompatibility\Sniff;
|
||||
use PHP_CodeSniffer_File as File;
|
||||
|
||||
/**
|
||||
* \PHPCompatibility\Sniffs\Miscellaneous\RemovedAlternativePHPTags.
|
||||
*
|
||||
* Check for usage of alternative PHP tags - removed in PHP 7.0.
|
||||
*
|
||||
* PHP version 7.0
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHPCompatibility
|
||||
* @author Juliette Reinders Folmer <phpcompatibility_nospam@adviesenzo.nl>
|
||||
*
|
||||
* Based on `Generic_Sniffs_PHP_DisallowAlternativePHPTags` by Juliette Reinders Folmer
|
||||
* which was merged into PHPCS 2.7.0.
|
||||
*/
|
||||
class RemovedAlternativePHPTagsSniff extends Sniff
|
||||
{
|
||||
|
||||
/**
|
||||
* Whether ASP tags are enabled or not.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
private $aspTags = false;
|
||||
|
||||
/**
|
||||
* Returns an array of tokens this test wants to listen for.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
if (version_compare(PHP_VERSION_ID, '70000', '<') === true) {
|
||||
// phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.asp_tagsRemoved
|
||||
$this->aspTags = (bool) ini_get('asp_tags');
|
||||
}
|
||||
|
||||
return array(
|
||||
T_OPEN_TAG,
|
||||
T_OPEN_TAG_WITH_ECHO,
|
||||
T_INLINE_HTML,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Processes this test, when one of its tokens is encountered.
|
||||
*
|
||||
* @param \PHP_CodeSniffer_File $phpcsFile The file being scanned.
|
||||
* @param int $stackPtr The position of the current token
|
||||
* in the stack passed in $tokens.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function process(File $phpcsFile, $stackPtr)
|
||||
{
|
||||
if ($this->supportsAbove('7.0') === false) {
|
||||
return;
|
||||
}
|
||||
|
||||
$tokens = $phpcsFile->getTokens();
|
||||
$openTag = $tokens[$stackPtr];
|
||||
$content = trim($openTag['content']);
|
||||
|
||||
if ($content === '' || $content === '<?php') {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($openTag['code'] === T_OPEN_TAG || $openTag['code'] === T_OPEN_TAG_WITH_ECHO) {
|
||||
|
||||
if ($content === '<%' || $content === '<%=') {
|
||||
$data = array(
|
||||
'ASP',
|
||||
$content,
|
||||
);
|
||||
$errorCode = 'ASPOpenTagFound';
|
||||
|
||||
} elseif (strpos($content, '<script ') !== false) {
|
||||
$data = array(
|
||||
'Script',
|
||||
$content,
|
||||
);
|
||||
$errorCode = 'ScriptOpenTagFound';
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Account for incorrect script open tags.
|
||||
// The "(?:<s)?" in the regex is to work-around a bug in the tokenizer in PHP 5.2.
|
||||
elseif ($openTag['code'] === T_INLINE_HTML
|
||||
&& preg_match('`((?:<s)?cript (?:[^>]+)?language=[\'"]?php[\'"]?(?:[^>]+)?>)`i', $content, $match) === 1
|
||||
) {
|
||||
$found = $match[1];
|
||||
$data = array(
|
||||
'Script',
|
||||
$found,
|
||||
);
|
||||
$errorCode = 'ScriptOpenTagFound';
|
||||
}
|
||||
|
||||
if (isset($errorCode, $data)) {
|
||||
$phpcsFile->addError(
|
||||
'%s style opening tags have been removed in PHP 7.0. Found "%s"',
|
||||
$stackPtr,
|
||||
$errorCode,
|
||||
$data
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
// If we're still here, we can't be sure if what we find was really intended as ASP open tags.
|
||||
if ($openTag['code'] === T_INLINE_HTML && $this->aspTags === false) {
|
||||
if (strpos($content, '<%') !== false) {
|
||||
$error = 'Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: %s';
|
||||
$snippet = $this->getSnippet($content, '<%');
|
||||
$data = array('<%' . $snippet);
|
||||
|
||||
$phpcsFile->addWarning($error, $stackPtr, 'MaybeASPOpenTagFound', $data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get a snippet from a HTML token.
|
||||
*
|
||||
* @param string $content The content of the HTML token.
|
||||
* @param string $startAt Partial string to use as a starting point for the snippet.
|
||||
* @param int $length The target length of the snippet to get. Defaults to 25.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function getSnippet($content, $startAt = '', $length = 25)
|
||||
{
|
||||
$startPos = 0;
|
||||
|
||||
if ($startAt !== '') {
|
||||
$startPos = strpos($content, $startAt);
|
||||
if ($startPos !== false) {
|
||||
$startPos += strlen($startAt);
|
||||
}
|
||||
}
|
||||
|
||||
$snippet = substr($content, $startPos, $length);
|
||||
if ((strlen($content) - $startPos) > $length) {
|
||||
$snippet .= '...';
|
||||
}
|
||||
|
||||
return $snippet;
|
||||
}
|
||||
}
|
||||
+220
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* \PHPCompatibility\Sniffs\Miscellaneous\ValidIntegersSniff.
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHPCompatibility
|
||||
* @author Juliette Reinders Folmer <phpcompatibility_nospam@adviesenzo.nl>
|
||||
*/
|
||||
|
||||
namespace PHPCompatibility\Sniffs\Miscellaneous;
|
||||
|
||||
use PHPCompatibility\Sniff;
|
||||
use PHP_CodeSniffer_File as File;
|
||||
|
||||
/**
|
||||
* \PHPCompatibility\Sniffs\Miscellaneous\ValidIntegersSniff.
|
||||
*
|
||||
* @category PHP
|
||||
* @package PHPCompatibility
|
||||
* @author Juliette Reinders Folmer <phpcompatibility_nospam@adviesenzo.nl>
|
||||
*/
|
||||
class ValidIntegersSniff extends Sniff
|
||||
{
|
||||
|
||||
/**
|
||||
* Whether PHPCS is run on a PHP < 5.4.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $isLowPHPVersion = false;
|
||||
|
||||
/**
|
||||
* Returns an array of tokens this test wants to listen for.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
$this->isLowPHPVersion = version_compare(PHP_VERSION_ID, '50400', '<');
|
||||
|
||||
return array(
|
||||
T_LNUMBER, // Binary, octal integers.
|
||||
T_CONSTANT_ENCAPSED_STRING, // Hex numeric string.
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Processes this test, when one of its tokens is encountered.
|
||||
*
|
||||
* @param \PHP_CodeSniffer_File $phpcsFile The file being scanned.
|
||||
* @param int $stackPtr The position of the current token in
|
||||
* the stack.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function process(File $phpcsFile, $stackPtr)
|
||||
{
|
||||
$tokens = $phpcsFile->getTokens();
|
||||
$token = $tokens[$stackPtr];
|
||||
|
||||
if ($this->couldBeBinaryInteger($tokens, $stackPtr) === true) {
|
||||
if ($this->supportsBelow('5.3')) {
|
||||
$error = 'Binary integer literals were not present in PHP version 5.3 or earlier. Found: %s';
|
||||
if ($this->isLowPHPVersion === false) {
|
||||
$data = array($token['content']);
|
||||
} else {
|
||||
$data = array($this->getBinaryInteger($phpcsFile, $tokens, $stackPtr));
|
||||
}
|
||||
$phpcsFile->addError($error, $stackPtr, 'BinaryIntegerFound', $data);
|
||||
}
|
||||
|
||||
if ($this->isInvalidBinaryInteger($tokens, $stackPtr) === true) {
|
||||
$error = 'Invalid binary integer detected. Found: %s';
|
||||
$data = array($this->getBinaryInteger($phpcsFile, $tokens, $stackPtr));
|
||||
$phpcsFile->addWarning($error, $stackPtr, 'InvalidBinaryIntegerFound', $data);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
$isError = $this->supportsAbove('7.0');
|
||||
$data = array( $token['content'] );
|
||||
|
||||
if ($this->isInvalidOctalInteger($tokens, $stackPtr) === true) {
|
||||
$this->addMessage(
|
||||
$phpcsFile,
|
||||
'Invalid octal integer detected. Prior to PHP 7 this would lead to a truncated number. From PHP 7 onwards this causes a parse error. Found: %s',
|
||||
$stackPtr,
|
||||
$isError,
|
||||
'InvalidOctalIntegerFound',
|
||||
$data
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->isHexidecimalNumericString($tokens, $stackPtr) === true) {
|
||||
$this->addMessage(
|
||||
$phpcsFile,
|
||||
'The behaviour of hexadecimal numeric strings was inconsistent prior to PHP 7 and support has been removed in PHP 7. Found: %s',
|
||||
$stackPtr,
|
||||
$isError,
|
||||
'HexNumericStringFound',
|
||||
$data
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Could the current token an potentially be a binary integer ?
|
||||
*
|
||||
* @param array $tokens Token stack.
|
||||
* @param int $stackPtr The current position in the token stack.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function couldBeBinaryInteger($tokens, $stackPtr)
|
||||
{
|
||||
$token = $tokens[$stackPtr];
|
||||
|
||||
if ($token['code'] !== T_LNUMBER) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($this->isLowPHPVersion === false) {
|
||||
return (preg_match('`^0b[0-1]+$`D', $token['content']) === 1);
|
||||
}
|
||||
// Pre-5.4, binary strings are tokenized as T_LNUMBER (0) + T_STRING ("b01010101").
|
||||
// At this point, we don't yet care whether it's a valid binary int, that's a separate check.
|
||||
else {
|
||||
return($token['content'] === '0' && $tokens[$stackPtr + 1]['code'] === T_STRING && preg_match('`^b[0-9]+$`D', $tokens[$stackPtr + 1]['content']) === 1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the current token an invalid binary integer ?
|
||||
*
|
||||
* @param array $tokens Token stack.
|
||||
* @param int $stackPtr The current position in the token stack.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function isInvalidBinaryInteger($tokens, $stackPtr)
|
||||
{
|
||||
if ($this->couldBeBinaryInteger($tokens, $stackPtr) === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($this->isLowPHPVersion === false) {
|
||||
// If it's an invalid binary int, the token will be split into two T_LNUMBER tokens.
|
||||
return ($tokens[$stackPtr + 1]['code'] === T_LNUMBER);
|
||||
} else {
|
||||
return (preg_match('`^b[0-1]+$`D', $tokens[$stackPtr + 1]['content']) === 0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the content of the tokens which together look like a binary integer.
|
||||
*
|
||||
* @param \PHP_CodeSniffer_File $phpcsFile The file being scanned.
|
||||
* @param array $tokens Token stack.
|
||||
* @param int $stackPtr The position of the current token in
|
||||
* the stack.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function getBinaryInteger(File $phpcsFile, $tokens, $stackPtr)
|
||||
{
|
||||
$length = 2; // PHP < 5.4 T_LNUMBER + T_STRING.
|
||||
|
||||
if ($this->isLowPHPVersion === false) {
|
||||
$i = $stackPtr;
|
||||
while ($tokens[$i]['code'] === T_LNUMBER) {
|
||||
$i++;
|
||||
}
|
||||
$length = ($i - $stackPtr);
|
||||
}
|
||||
|
||||
return $phpcsFile->getTokensAsString($stackPtr, $length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the current token an invalid octal integer ?
|
||||
*
|
||||
* @param array $tokens Token stack.
|
||||
* @param int $stackPtr The current position in the token stack.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function isInvalidOctalInteger($tokens, $stackPtr)
|
||||
{
|
||||
$token = $tokens[$stackPtr];
|
||||
|
||||
if ($token['code'] === T_LNUMBER && preg_match('`^0[0-7]*[8-9]+[0-9]*$`D', $token['content']) === 1) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the current token a hexidecimal numeric string ?
|
||||
*
|
||||
* @param array $tokens Token stack.
|
||||
* @param int $stackPtr The current position in the token stack.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function isHexidecimalNumericString($tokens, $stackPtr)
|
||||
{
|
||||
$token = $tokens[$stackPtr];
|
||||
|
||||
if ($token['code'] === T_CONSTANT_ENCAPSED_STRING && preg_match('`^0x[a-f0-9]+$`iD', $this->stripQuotes($token['content'])) === 1) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user