Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare (strict_types=1); namespace Rector\DowngradePhp72\Rector\FuncCall; use Php..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp72\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\Echo_;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\Return_;
use PhpParser\Node\Stmt\Switch_;
use PHPStan\Analyser\Scope;
use Rector\Contract\PhpParser\Node\StmtsAwareInterface;
use Rector\Exception\ShouldNotHappenException;
use Rector\Naming\Naming\VariableNaming;
use Rector\NodeAnalyzer\ExprInTopStmtMatcher;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\PhpParser\Parser\InlineCodeParser;
use Rector\Rector\AbstractScopeAwareRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://github.com/symfony/polyfill/commit/cc2bf55accd32b989348e2039e8c91cde46aebed
*
* @see \Rector\Tests\DowngradePhp72\Rector\FuncCall\DowngradeStreamIsattyRector\DowngradeStreamIsattyRectorTest
*/
final class DowngradeStreamIsattyRector extends AbstractScopeAwareRector
{
/**
* @readonly
* @var \Rector\PhpParser\Parser\InlineCodeParser
*/
private $inlineCodeParser;
/**
* @readonly
* @var \Rector\Naming\Naming\VariableNaming
*/
private $variableNaming;
/**
* @readonly
* @var \Rector\NodeAnalyzer\ExprInTopStmtMatcher
*/
private $exprInTopStmtMatcher;
/**
* @var \PhpParser\Node\Expr\Closure|null
*/
private $cachedClosure;
public function __construct(InlineCodeParser $inlineCodeParser, VariableNaming $variableNaming, ExprInTopStmtMatcher $exprInTopStmtMatcher)
{
$this->inlineCodeParser = $inlineCodeParser;
$this->variableNaming = $variableNaming;
$this->exprInTopStmtMatcher = $exprInTopStmtMatcher;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Downgrade stream_isatty() function', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run($stream)
{
$isStream = stream_isatty($stream);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run($stream)
{
$streamIsatty = function ($stream) {
if (\function_exists('stream_isatty')) {
return stream_isatty($stream);
}
if (!\is_resource($stream)) {
trigger_error('stream_isatty() expects parameter 1 to be resource, '.\gettype($stream).' given', \E_USER_WARNING);
return false;
}
if ('\\' === \DIRECTORY_SEPARATOR) {
$stat = @fstat($stream);
// Check if formatted mode is S_IFCHR
return $stat ? 0020000 === ($stat['mode'] & 0170000) : false;
}
return \function_exists('posix_isatty') && @posix_isatty($stream);
};
$isStream = $streamIsatty($stream);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [StmtsAwareInterface::class, Switch_::class, Return_::class, Expression::class, Echo_::class];
}
/**
* @param StmtsAwareInterface|Switch_|Return_|Expression|Echo_ $node
* @return Node[]|null
*/
public function refactorWithScope(Node $node, Scope $scope) : ?array
{
$expr = $this->exprInTopStmtMatcher->match($node, function (Node $subNode) : bool {
if (!$subNode instanceof FuncCall) {
return \false;
}
if (!$this->isName($subNode, 'stream_isatty')) {
return \false;
}
// need pull Scope from target traversed sub Node
$scope = $subNode->getAttribute(AttributeKey::SCOPE);
if (!$scope instanceof Scope) {
return \false;
}
return !$scope->isInFunctionExists('stream_isatty');
});
if (!$expr instanceof FuncCall) {
return null;
}
$function = $this->createClosure();
$variable = new Variable($this->variableNaming->createCountedValueName('streamIsatty', $scope));
$assign = new Assign($variable, $function);
$expr->name = $variable;
return [new Expression($assign), $node];
}
private function createClosure() : Closure
{
if ($this->cachedClosure instanceof Closure) {
return clone $this->cachedClosure;
}
$stmts = $this->inlineCodeParser->parseFile(__DIR__ . '/../../snippet/isatty_closure.php.inc');
/** @var Expression $expression */
$expression = $stmts[0];
$expr = $expression->expr;
if (!$expr instanceof Closure) {
throw new ShouldNotHappenException();
}
$this->cachedClosure = $expr;
return $expr;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp72\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\Echo_;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\Return_;
use PhpParser\Node\Stmt\Switch_;
use PHPStan\Analyser\Scope;
use Rector\Contract\PhpParser\Node\StmtsAwareInterface;
use Rector\Exception\ShouldNotHappenException;
use Rector\Naming\Naming\VariableNaming;
use Rector\NodeAnalyzer\ExprInTopStmtMatcher;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\PhpParser\Parser\InlineCodeParser;
use Rector\Rector\AbstractScopeAwareRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://github.com/symfony/polyfill/commit/cc2bf55accd32b989348e2039e8c91cde46aebed
*
* @see \Rector\Tests\DowngradePhp72\Rector\FuncCall\DowngradeStreamIsattyRector\DowngradeStreamIsattyRectorTest
*/
final class DowngradeStreamIsattyRector extends AbstractScopeAwareRector
{
/**
* @readonly
* @var \Rector\PhpParser\Parser\InlineCodeParser
*/
private $inlineCodeParser;
/**
* @readonly
* @var \Rector\Naming\Naming\VariableNaming
*/
private $variableNaming;
/**
* @readonly
* @var \Rector\NodeAnalyzer\ExprInTopStmtMatcher
*/
private $exprInTopStmtMatcher;
/**
* @var \PhpParser\Node\Expr\Closure|null
*/
private $cachedClosure;
public function __construct(InlineCodeParser $inlineCodeParser, VariableNaming $variableNaming, ExprInTopStmtMatcher $exprInTopStmtMatcher)
{
$this->inlineCodeParser = $inlineCodeParser;
$this->variableNaming = $variableNaming;
$this->exprInTopStmtMatcher = $exprInTopStmtMatcher;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Downgrade stream_isatty() function', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run($stream)
{
$isStream = stream_isatty($stream);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run($stream)
{
$streamIsatty = function ($stream) {
if (\function_exists('stream_isatty')) {
return stream_isatty($stream);
}
if (!\is_resource($stream)) {
trigger_error('stream_isatty() expects parameter 1 to be resource, '.\gettype($stream).' given', \E_USER_WARNING);
return false;
}
if ('\\' === \DIRECTORY_SEPARATOR) {
$stat = @fstat($stream);
// Check if formatted mode is S_IFCHR
return $stat ? 0020000 === ($stat['mode'] & 0170000) : false;
}
return \function_exists('posix_isatty') && @posix_isatty($stream);
};
$isStream = $streamIsatty($stream);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [StmtsAwareInterface::class, Switch_::class, Return_::class, Expression::class, Echo_::class];
}
/**
* @param StmtsAwareInterface|Switch_|Return_|Expression|Echo_ $node
* @return Node[]|null
*/
public function refactorWithScope(Node $node, Scope $scope) : ?array
{
$expr = $this->exprInTopStmtMatcher->match($node, function (Node $subNode) : bool {
if (!$subNode instanceof FuncCall) {
return \false;
}
if (!$this->isName($subNode, 'stream_isatty')) {
return \false;
}
// need pull Scope from target traversed sub Node
$scope = $subNode->getAttribute(AttributeKey::SCOPE);
if (!$scope instanceof Scope) {
return \false;
}
return !$scope->isInFunctionExists('stream_isatty');
});
if (!$expr instanceof FuncCall) {
return null;
}
$function = $this->createClosure();
$variable = new Variable($this->variableNaming->createCountedValueName('streamIsatty', $scope));
$assign = new Assign($variable, $function);
$expr->name = $variable;
return [new Expression($assign), $node];
}
private function createClosure() : Closure
{
if ($this->cachedClosure instanceof Closure) {
return clone $this->cachedClosure;
}
$stmts = $this->inlineCodeParser->parseFile(__DIR__ . '/../../snippet/isatty_closure.php.inc');
/** @var Expression $expression */
$expression = $stmts[0];
$expr = $expression->expr;
if (!$expr instanceof Closure) {
throw new ShouldNotHappenException();
}
$this->cachedClosure = $expr;
return $expr;
}
}
Function Calls
None |
Stats
MD5 | 51aa013cdb347dd9133cffb209d9fd07 |
Eval Count | 0 |
Decode Time | 97 ms |