-
-
Notifications
You must be signed in to change notification settings - Fork 469
/
Copy pathAbstractNode.php
496 lines (425 loc) · 10.8 KB
/
AbstractNode.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<?php
declare(strict_types=1);
namespace PHPHtmlParser\Dom\Node;
use PHPHtmlParser\Contracts\Selector\SelectorInterface;
use PHPHtmlParser\Dom\Tag;
use PHPHtmlParser\Exceptions\ChildNotFoundException;
use PHPHtmlParser\Exceptions\CircularException;
use PHPHtmlParser\Exceptions\ParentNotFoundException;
use PHPHtmlParser\Exceptions\Tag\AttributeNotFoundException;
use PHPHtmlParser\Finder;
use PHPHtmlParser\Selector\Selector;
use StringEncoder\Contracts\EncoderInterface;
/**
* Dom node object.
*
* @property-read string $outerhtml
* @property-read string $innerhtml
* @property-read string $innerText
* @property-read string $text
* @property-read Tag $tag
* @property-read InnerNode $parent
*/
abstract class AbstractNode
{
/**
* Contains the tag name/type.
*
* @var ?Tag
*/
protected $tag;
/**
* Contains a list of attributes on this tag.
*
* @var array
*/
protected $attr = [];
/**
* Contains the parent Node.
*
* @var ?InnerNode
*/
protected $parent;
/**
* The unique id of the class. Given by PHP.
*
* @var int
*/
protected $id;
/**
* The encoding class used to encode strings.
*
* @var EncoderInterface
*/
protected $encode;
/**
* An array of all the children.
*
* @var array
*/
protected $children = [];
/**
* @var bool
*/
protected $htmlSpecialCharsDecode = false;
/**
* @var int
*/
private static $count = 0;
/**
* Creates a unique id for this node.
*/
public function __construct()
{
$this->id = self::$count;
++self::$count;
}
/**
* Attempts to clear out any object references.
*/
public function __destruct()
{
$this->tag = null;
$this->parent = null;
$this->attr = [];
$this->children = [];
}
/**
* Magic get method for attributes and certain methods.
*
* @return mixed
*/
public function __get(string $key)
{
// check attribute first
if ($this->getAttribute($key) !== null) {
return $this->getAttribute($key);
}
switch (\strtolower($key)) {
case 'outerhtml':
return $this->outerHtml();
case 'innerhtml':
return $this->innerHtml();
case 'innertext':
return $this->innerText();
case 'text':
return $this->text();
case 'tag':
return $this->getTag();
case 'parent':
return $this->getParent();
}
}
/**
* Simply calls the outer text method.
*
* @return string
*/
public function __toString()
{
return $this->outerHtml();
}
/**
* @param bool $htmlSpecialCharsDecode
*/
public function setHtmlSpecialCharsDecode($htmlSpecialCharsDecode = false): void
{
$this->htmlSpecialCharsDecode = $htmlSpecialCharsDecode;
}
/**
* Returns the id of this object.
*/
public function id(): int
{
return $this->id;
}
/**
* Returns the parent of node.
*
* @return InnerNode
*/
public function getParent(): ?InnerNode
{
return $this->parent;
}
/**
* Sets the parent node.
*
* @throws ChildNotFoundException
* @throws CircularException
*/
public function setParent(InnerNode $parent): AbstractNode
{
// remove from old parent
if ($this->parent !== null) {
if ($this->parent->id() == $parent->id()) {
// already the parent
return $this;
}
$this->parent->removeChild($this->id);
}
$this->parent = $parent;
// assign child to parent
$this->parent->addChild($this);
return $this;
}
/**
* Removes this node and all its children from the
* DOM tree.
*
* @return void
*/
public function delete()
{
if ($this->parent !== null) {
$this->parent->removeChild($this->id);
}
$this->parent->clear();
$this->clear();
}
/**
* Sets the encoding class to this node.
*
* @return void
*/
public function propagateEncoding(EncoderInterface $encode)
{
$this->encode = $encode;
$this->tag->setEncoding($encode);
}
/**
* Checks if the given node id is an ancestor of
* the current node.
*/
public function isAncestor(int $id): bool
{
if ($this->getAncestor($id) !== null) {
return true;
}
return false;
}
/**
* Attempts to get an ancestor node by the given id.
*
* @return AbstractNode|null
*/
public function getAncestor(int $id)
{
if ($this->parent !== null) {
if ($this->parent->id() == $id) {
return $this->parent;
}
return $this->parent->getAncestor($id);
}
}
/**
* Checks if the current node has a next sibling.
*/
public function hasNextSibling(): bool
{
try {
$this->nextSibling();
// sibling found, return true;
return true;
} catch (ParentNotFoundException $e) {
// no parent, no next sibling
unset($e);
return false;
} catch (ChildNotFoundException $e) {
// no sibling found
unset($e);
return false;
}
}
/**
* Attempts to get the next sibling.
*
* @throws ChildNotFoundException
* @throws ParentNotFoundException
*/
public function nextSibling(): AbstractNode
{
if ($this->parent === null) {
throw new ParentNotFoundException('Parent is not set for this node.');
}
return $this->parent->nextChild($this->id);
}
/**
* Attempts to get the previous sibling.
*
* @throws ChildNotFoundException
* @throws ParentNotFoundException
*/
public function previousSibling(): AbstractNode
{
if ($this->parent === null) {
throw new ParentNotFoundException('Parent is not set for this node.');
}
return $this->parent->previousChild($this->id);
}
/**
* Gets the tag object of this node.
*/
public function getTag(): Tag
{
return $this->tag;
}
/**
* Replaces the tag for this node.
*
* @param string|Tag $tag
*/
public function setTag($tag): AbstractNode
{
if (\is_string($tag)) {
$tag = new Tag($tag);
}
$this->tag = $tag;
// clear any cache
$this->clear();
return $this;
}
/**
* A wrapper method that simply calls the getAttribute method
* on the tag of this node.
*/
public function getAttributes(): array
{
$attributes = $this->tag->getAttributes();
foreach ($attributes as $name => $attributeDTO) {
$attributes[$name] = $attributeDTO->getValue();
}
return $attributes;
}
/**
* A wrapper method that simply calls the getAttribute method
* on the tag of this node.
*/
public function getAttribute(string $key): ?string
{
try {
$attributeDTO = $this->tag->getAttribute($key);
} catch (AttributeNotFoundException $e) {
// no attribute with this key exists, returning null.
unset($e);
return null;
}
return $attributeDTO->getValue();
}
/**
* A wrapper method that simply calls the hasAttribute method
* on the tag of this node.
*/
public function hasAttribute(string $key): bool
{
return $this->tag->hasAttribute($key);
}
/**
* A wrapper method that simply calls the setAttribute method
* on the tag of this node.
*/
public function setAttribute(string $key, ?string $value, bool $doubleQuote = true): AbstractNode
{
$this->tag->setAttribute($key, $value, $doubleQuote);
//clear any cache
$this->clear();
return $this;
}
/**
* A wrapper method that simply calls the removeAttribute method
* on the tag of this node.
*/
public function removeAttribute(string $key): void
{
$this->tag->removeAttribute($key);
//clear any cache
$this->clear();
}
/**
* A wrapper method that simply calls the removeAllAttributes
* method on the tag of this node.
*/
public function removeAllAttributes(): void
{
$this->tag->removeAllAttributes();
//clear any cache
$this->clear();
}
/**
* Function to locate a specific ancestor tag in the path to the root.
*
* @throws ParentNotFoundException
*/
public function ancestorByTag(string $tag): AbstractNode
{
// Start by including ourselves in the comparison.
$node = $this;
do {
if ($node->tag->name() == $tag) {
return $node;
}
$node = $node->getParent();
} while ($node !== null);
throw new ParentNotFoundException('Could not find an ancestor with "' . $tag . '" tag');
}
/**
* Find elements by css selector.
*
* @throws ChildNotFoundException
*
* @return mixed|Collection|null
*/
public function find(string $selectorString, ?int $nth = null, ?SelectorInterface $selector = null)
{
if (\is_null($selector)) {
$selector = new Selector($selectorString);
}
$nodes = $selector->find($this);
if ($nth !== null) {
// return nth-element or array
if (isset($nodes[$nth])) {
return $nodes[$nth];
}
return;
}
return $nodes;
}
/**
* Find node by id.
*
* @throws ChildNotFoundException
* @throws ParentNotFoundException
*
* @return bool|AbstractNode
*/
public function findById(int $id)
{
$finder = new Finder($id);
return $finder->find($this);
}
/**
* Gets the inner html of this node.
*/
abstract public function innerHtml(): string;
/**
* Gets the html of this node, including it's own
* tag.
*/
abstract public function outerHtml(): string;
/**
* Gets the text of this node (if there is any text).
*/
abstract public function text(): string;
/**
* Check is node type textNode.
*/
public function isTextNode(): bool
{
return false;
}
/**
* Call this when something in the node tree has changed. Like a child has been added
* or a parent has been changed.
*/
abstract protected function clear(): void;
}