-
Notifications
You must be signed in to change notification settings - Fork 1
/
DefineReplace.php
144 lines (127 loc) · 3.37 KB
/
DefineReplace.php
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
<?php declare(strict_types=1);
/**
* Copyright (C) Apis Networks, Inc - All Rights Reserved.
*
* Unauthorized copying of this file, via any medium, is
* strictly prohibited without consent. Any dissemination of
* material herein is prohibited.
*
* For licensing inquiries email <[email protected]>
*
* Written by Matt Saladna <[email protected]>, July 2020
*/
namespace Module\Support\Webapps\App\Type\Wordpress;
use Module\Support\Php\TreeWalker;
use PhpParser\ConstExprEvaluationException;
use PhpParser\ConstExprEvaluator;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Include_;
use PhpParser\Node\Name;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt;
use PhpParser\NodeFinder;
use PhpParser\NodeTraverser;
/**
* Class AST
*
* @package Module\Support\Webapps\App\Type\Wordpress
*
*/
class DefineReplace extends TreeWalker
{
/**
* Get value from AST
*
* @param string $var
* @param mixed $default
* @return mixed|null
*/
public function get(string $var, mixed $default = null): mixed
{
/** @var Node $found */
$nodeFinder = new NodeFinder;
$result = $nodeFinder->findFirst($this->ast, function (Node $node) use ($var) {
if (!$node instanceof \PhpParser\Node\Expr\FuncCall || $node->name->toLowerString() !== 'define') {
return false;
}
return $node->args[0]->value->value === $var;
});
if (!$result) {
return $default;
}
$found = $result->args[1];
try {
return (new ConstExprEvaluator)->evaluateSilently($found->value);
} catch (ConstExprEvaluationException $expr) {
return (new \PhpParser\PrettyPrinter\Standard())->prettyPrint(
[$found]
);
}
}
/**
* @{@inheritDoc}
*/
public function replace(string $var, mixed $new): self
{
return $this->walkReplace($var, $new, false);
}
/**
* @{@inheritDoc}
*/
public function set(string $var, mixed $new): self
{
return $this->walkReplace($var, $new, true);
}
/**
* Walk tree applying substitution rules
*
* @param string $var
* @param mixed $new
* @param bool $append append if not found
* @return $this
*/
protected function walkReplace(string $var, mixed $new, bool $append = false): self
{
$normalizer = $this->inferType(...);
$traverser = new NodeTraverser;
$traverser->addVisitor(new class($var, $new, $append, $normalizer) extends \PhpParser\NodeVisitorAbstract {
protected $duo;
protected $count = 0;
protected $append = false;
protected \Closure $normalizer;
public function __construct($var, $replacement, $append, $normalizer)
{
$this->duo = [$var, $replacement];
$this->append = $append;
$this->normalizer = $normalizer;
}
public function leaveNode(\PhpParser\Node $node)
{
if ($this->append && !$this->count && $node instanceof Stmt
&& ($node->expr ?? null) instanceof Include_)
{
return array_merge([
new Stmt\Expression(new FuncCall(
new Name('define'),
[
new String_($this->duo[0]),
($this->normalizer)($this->duo[1])
]
))
], [$node]);
}
if (!$node instanceof \PhpParser\Node\Expr\FuncCall || $node->name->toLowerString() !== 'define') {
return;
}
if ($node->args[0]->value->value !== $this->duo[0]) {
return;
}
$this->count++;
$node->args[1] = ($this->normalizer)($this->duo[1]);
}
});
$traverser->traverse($this->ast);
return $this;
}
}