-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDowngradeJsonValidateRector.php
More file actions
162 lines (132 loc) · 4.62 KB
/
DowngradeJsonValidateRector.php
File metadata and controls
162 lines (132 loc) · 4.62 KB
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
<?php
declare(strict_types=1);
namespace Rector\DowngradePhp83\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\CallLike;
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\NodeAnalyzer\ExprInTopStmtMatcher;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\PhpParser\Parser\InlineCodeParser;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://wiki.php.net/rfc/json_validate
*
* @see \Rector\Tests\DowngradePhp83\Rector\FuncCall\DowngradeJsonValidateRector\DowngradeJsonValidateRectorTest
*/
final class DowngradeJsonValidateRector extends AbstractRector
{
private ?Closure $cachedClosure = null;
public function __construct(
private readonly InlineCodeParser $inlineCodeParser,
private readonly ExprInTopStmtMatcher $exprInTopStmtMatcher
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Replace json_validate() function', [
new CodeSample(
<<<'CODE_SAMPLE'
json_validate('{"foo": "bar"}');
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
$jsonValidate = function (string $json, int $depth = 512, int $flags = 0) {
if (function_exists('json_validate')) {
return json_validate($json, $depth, $flags);
}
$maxDepth = 0x7FFFFFFF;
if (0 !== $flags && \defined('JSON_INVALID_UTF8_IGNORE') && \JSON_INVALID_UTF8_IGNORE !== $flags) {
throw new \ValueError('json_validate(): Argument #3 ($flags) must be a valid flag (allowed flags: JSON_INVALID_UTF8_IGNORE)');
}
if ($depth <= 0) {
throw new \ValueError('json_validate(): Argument #2 ($depth) must be greater than 0');
}
if ($depth > $maxDepth) {
throw new \ValueError(sprintf('json_validate(): Argument #2 ($depth) must be less than %d', $maxDepth));
}
json_decode($json, true, $depth, $flags);
return \JSON_ERROR_NONE === json_last_error();
};
$jsonValidate('{"foo": "bar"}');
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 refactor(Node $node): ?array
{
$expr = $this->exprInTopStmtMatcher->match(
$node,
function (Node $subNode): bool {
if (! $subNode instanceof FuncCall) {
return false;
}
// need pull Scope from target traversed sub Node
return ! $this->shouldSkip($subNode);
}
);
if (! $expr instanceof FuncCall) {
return null;
}
$variable = new Variable('jsonValidate');
$function = $this->createClosure();
$expression = new Expression(new Assign($variable, $function));
$expr->name = $variable;
return [$expression, $node];
}
private function createClosure(): Closure
{
if ($this->cachedClosure instanceof Closure) {
return clone $this->cachedClosure;
}
$stmts = $this->inlineCodeParser->parseFile(__DIR__ . '/../../snippet/json_validate_closure.php.inc');
/** @var Expression $expression */
$expression = $stmts[0];
$expr = $expression->expr;
if (! $expr instanceof Closure) {
throw new ShouldNotHappenException();
}
$this->cachedClosure = $expr;
return $expr;
}
private function shouldSkip(CallLike $callLike): bool
{
if (! $callLike instanceof FuncCall) {
return false;
}
if (! $this->isName($callLike, 'json_validate')) {
return true;
}
$scope = $callLike->getAttribute(AttributeKey::SCOPE);
if ($scope instanceof Scope && $scope->isInFunctionExists('json_validate')) {
return true;
}
if ($callLike->isFirstClassCallable()) {
return true;
}
$args = $callLike->getArgs();
return count($args) < 1;
}
}