-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathUtilsJsonStaticCallNamedArgRector.php
More file actions
89 lines (73 loc) · 2.25 KB
/
UtilsJsonStaticCallNamedArgRector.php
File metadata and controls
89 lines (73 loc) · 2.25 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
<?php
declare(strict_types=1);
namespace Rector\NetteUtils\Rector\StaticCall;
use Nette\Utils\Json;
use PhpParser\Node;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use Rector\Rector\AbstractRector;
use Rector\TypeDeclarationDocblocks\Enum\NetteClassName;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\NetteUtils\Rector\StaticCall\UtilsJsonStaticCallNamedArgRector\UtilsJsonStaticCallNamedArgRectorTest
*/
final class UtilsJsonStaticCallNamedArgRector extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Change `' . Json::class . '::encode()` and `decode()` to named args', [
new CodeSample(
<<<'CODE_SAMPLE'
use Nette\Utils\Json;
$encodedJson = Json::encode($data, true);
$decodedJson = Json::decode($json, true);
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use Nette\Utils\Json;
$encodedJson = Json::encode($data, pretty: true);
$decodedJson = Json::decode($json, forceArrays: true);
CODE_SAMPLE
),
]);
}
/**
* @return array<int, class-string<StaticCall>>
*/
public function getNodeTypes(): array
{
return [StaticCall::class];
}
/**
* @param StaticCall $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->isName($node->class, NetteClassName::JSON)) {
return null;
}
if ($node->isFirstClassCallable()) {
return null;
}
if (count($node->getArgs()) < 2) {
return null;
}
if (! $this->isNames($node->name, ['encode', 'decode'])) {
return null;
}
// flip 2nd arg from true/false to named arg
// check if 2nd arg is named arg already
$secondArg = $node->getArgs()[1];
// already set → skip
if ($secondArg->name instanceof Identifier) {
return null;
}
if ($this->isName($node->name, 'encode')) {
$secondArg->name = new Identifier('pretty');
return $node;
}
$secondArg->name = new Identifier('forceArrays');
return $node;
}
}