Completed
Push — master ( 45d18c...bddea9 )
by Gilles
04:39 queued 01:11
created
src/PHPHtmlParser/Dom/TextNode.php 1 patch
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -9,97 +9,97 @@
 block discarded – undo
9 9
 class TextNode extends LeafNode
10 10
 {
11 11
 
12
-    /**
13
-     * This is a text node.
14
-     *
15
-     * @var Tag
16
-     */
17
-    protected $tag;
12
+	/**
13
+	 * This is a text node.
14
+	 *
15
+	 * @var Tag
16
+	 */
17
+	protected $tag;
18 18
 
19
-    /**
20
-     * This is the text in this node.
21
-     *
22
-     * @var string
23
-     */
24
-    protected $text;
19
+	/**
20
+	 * This is the text in this node.
21
+	 *
22
+	 * @var string
23
+	 */
24
+	protected $text;
25 25
 
26
-    /**
27
-     * This is the converted version of the text.
28
-     *
29
-     * @var string
30
-     */
31
-    protected $convertedText = null;
26
+	/**
27
+	 * This is the converted version of the text.
28
+	 *
29
+	 * @var string
30
+	 */
31
+	protected $convertedText = null;
32 32
 
33
-    /**
34
-     * Sets the text for this node.
35
-     *
36
-     * @param string $text
37
-     */
38
-    public function __construct($text)
39
-    {
40
-        // remove double spaces
41
-        $text = mb_ereg_replace('\s+', ' ', $text);
33
+	/**
34
+	 * Sets the text for this node.
35
+	 *
36
+	 * @param string $text
37
+	 */
38
+	public function __construct($text)
39
+	{
40
+		// remove double spaces
41
+		$text = mb_ereg_replace('\s+', ' ', $text);
42 42
 
43
-        // restore line breaks
44
-        $text = str_replace('
', "\n", $text);
43
+		// restore line breaks
44
+		$text = str_replace('
', "\n", $text);
45 45
 
46
-        $this->text = $text;
47
-        $this->tag  = new Tag('text');
48
-        parent::__construct();
49
-    }
46
+		$this->text = $text;
47
+		$this->tag  = new Tag('text');
48
+		parent::__construct();
49
+	}
50 50
 
51
-    /**
52
-     * Returns the text of this node.
53
-     *
54
-     * @return string
55
-     */
56
-    public function text()
57
-    {
58
-        // convert charset
59
-        if ( ! is_null($this->encode)) {
60
-            if ( ! is_null($this->convertedText)) {
61
-                // we already know the converted value
62
-                return $this->convertedText;
63
-            }
64
-            $text = $this->encode->convert($this->text);
51
+	/**
52
+	 * Returns the text of this node.
53
+	 *
54
+	 * @return string
55
+	 */
56
+	public function text()
57
+	{
58
+		// convert charset
59
+		if ( ! is_null($this->encode)) {
60
+			if ( ! is_null($this->convertedText)) {
61
+				// we already know the converted value
62
+				return $this->convertedText;
63
+			}
64
+			$text = $this->encode->convert($this->text);
65 65
 
66
-            // remember the conversion
67
-            $this->convertedText = $text;
66
+			// remember the conversion
67
+			$this->convertedText = $text;
68 68
 
69
-            return $text;
70
-        } else {
71
-            return $this->text;
72
-        }
73
-    }
69
+			return $text;
70
+		} else {
71
+			return $this->text;
72
+		}
73
+	}
74 74
 
75
-    /**
76
-     * This node has no html, just return the text.
77
-     *
78
-     * @return string
79
-     * @uses $this->text()
80
-     */
81
-    public function innerHtml()
82
-    {
83
-        return $this->text();
84
-    }
75
+	/**
76
+	 * This node has no html, just return the text.
77
+	 *
78
+	 * @return string
79
+	 * @uses $this->text()
80
+	 */
81
+	public function innerHtml()
82
+	{
83
+		return $this->text();
84
+	}
85 85
 
86
-    /**
87
-     * This node has no html, just return the text.
88
-     *
89
-     * @return string
90
-     * @uses $this->text()
91
-     */
92
-    public function outerHtml()
93
-    {
94
-        return $this->text();
95
-    }
86
+	/**
87
+	 * This node has no html, just return the text.
88
+	 *
89
+	 * @return string
90
+	 * @uses $this->text()
91
+	 */
92
+	public function outerHtml()
93
+	{
94
+		return $this->text();
95
+	}
96 96
 
97
-    /**
98
-     * Call this when something in the node tree has changed. Like a child has been added
99
-     * or a parent has been changed.
100
-     */
101
-    protected function clear()
102
-    {
103
-        $this->convertedText = null;
104
-    }
97
+	/**
98
+	 * Call this when something in the node tree has changed. Like a child has been added
99
+	 * or a parent has been changed.
100
+	 */
101
+	protected function clear()
102
+	{
103
+		$this->convertedText = null;
104
+	}
105 105
 }
Please login to merge, or discard this patch.
src/PHPHtmlParser/Dom/Tag.php 1 patch
Indentation   +255 added lines, -255 removed lines patch added patch discarded remove patch
@@ -12,259 +12,259 @@
 block discarded – undo
12 12
 class Tag
13 13
 {
14 14
 
15
-    /**
16
-     * The name of the tag.
17
-     *
18
-     * @var string
19
-     */
20
-    protected $name;
21
-
22
-    /**
23
-     * The attributes of the tag.
24
-     *
25
-     * @var array
26
-     */
27
-    protected $attr = [];
28
-
29
-    /**
30
-     * Is this tag self closing.
31
-     *
32
-     * @var bool
33
-     */
34
-    protected $selfClosing = false;
35
-
36
-    /**
37
-     * Tag noise
38
-     */
39
-    protected $noise = '';
40
-
41
-    /**
42
-     * The encoding class to... encode the tags
43
-     *
44
-     * @var mixed
45
-     */
46
-    protected $encode = null;
47
-
48
-    /**
49
-     * Sets up the tag with a name.
50
-     *
51
-     * @param $name
52
-     */
53
-    public function __construct($name)
54
-    {
55
-        $this->name = $name;
56
-    }
57
-
58
-    /**
59
-     * Magic method to get any of the attributes.
60
-     *
61
-     * @param string $key
62
-     * @return mixed
63
-     */
64
-    public function __get($key)
65
-    {
66
-        return $this->getAttribute($key);
67
-    }
68
-
69
-    /**
70
-     * Magic method to set any attribute.
71
-     *
72
-     * @param string $key
73
-     * @param mixed $value
74
-     */
75
-    public function __set($key, $value)
76
-    {
77
-        $this->setAttribute($key, $value);
78
-    }
79
-
80
-    /**
81
-     * Returns the name of this tag.
82
-     *
83
-     * @return string
84
-     */
85
-    public function name()
86
-    {
87
-        return $this->name;
88
-    }
89
-
90
-    /**
91
-     * Sets the tag to be self closing.
92
-     *
93
-     * @return $this
94
-     */
95
-    public function selfClosing()
96
-    {
97
-        $this->selfClosing = true;
98
-
99
-        return $this;
100
-    }
101
-
102
-    /**
103
-     * Checks if the tag is self closing.
104
-     *
105
-     * @return bool
106
-     */
107
-    public function isSelfClosing()
108
-    {
109
-        return $this->selfClosing;
110
-    }
111
-
112
-    /**
113
-     * Sets the encoding type to be used.
114
-     *
115
-     * @param Encode $encode
116
-     */
117
-    public function setEncoding(Encode $encode)
118
-    {
119
-        $this->encode = $encode;
120
-    }
121
-
122
-    /**
123
-     * Sets the noise for this tag (if any)
124
-     *
125
-     * @param $noise
126
-     * @return $this
127
-     */
128
-    public function noise($noise)
129
-    {
130
-        $this->noise = $noise;
131
-
132
-        return $this;
133
-    }
134
-
135
-    /**
136
-     * Set an attribute for this tag.
137
-     *
138
-     * @param string $key
139
-     * @param string|array $value
140
-     * @return $this
141
-     */
142
-    public function setAttribute($key, $value)
143
-    {
144
-        $key = strtolower($key);
145
-        if ( ! is_array($value)) {
146
-            $value = [
147
-                'value'       => $value,
148
-                'doubleQuote' => true,
149
-            ];
150
-        }
151
-        $this->attr[$key] = $value;
152
-
153
-        return $this;
154
-    }
155
-
156
-    /**
157
-     * Removes an attribute from this tag.
158
-     *
159
-     * @param $key
160
-     * @return void
161
-     */
162
-    public function removeAttribute($key)
163
-    {
164
-        $key = strtolower($key);
165
-        unset($this->attr[$key]);
166
-    }
167
-
168
-    /**
169
-     * Removes all attributes on this tag.
170
-     *
171
-     * @return void
172
-     */
173
-    public function removeAllAttributes()
174
-    {
175
-        $this->attr = [];
176
-    }
177
-
178
-    /**
179
-     * Sets the attributes for this tag
180
-     *
181
-     * @param array $attr
182
-     * @return $this
183
-     */
184
-    public function setAttributes(array $attr)
185
-    {
186
-        foreach ($attr as $key => $value) {
187
-            $this->setAttribute($key, $value);
188
-        }
189
-
190
-        return $this;
191
-    }
192
-
193
-    /**
194
-     * Returns all attributes of this tag.
195
-     *
196
-     * @return array
197
-     */
198
-    public function getAttributes()
199
-    {
200
-        $return = [];
201
-        foreach ($this->attr as $attr => $info) {
202
-            $return[$attr] = $this->getAttribute($attr);
203
-        }
204
-
205
-        return $return;
206
-    }
207
-
208
-    /**
209
-     * Returns an attribute by the key
210
-     *
211
-     * @param string $key
212
-     * @return mixed
213
-     */
214
-    public function getAttribute($key)
215
-    {
216
-        if ( ! isset($this->attr[$key])) {
217
-            return null;
218
-        }
219
-        $value = $this->attr[$key]['value'];
220
-        if (is_string($value) && ! is_null($this->encode)) {
221
-            // convert charset
222
-            $this->attr[$key]['value'] = $this->encode->convert($value);
223
-        }
224
-
225
-        return $this->attr[$key];
226
-    }
227
-
228
-    /**
229
-     * Generates the opening tag for this object.
230
-     *
231
-     * @return string
232
-     */
233
-    public function makeOpeningTag()
234
-    {
235
-        $return = '<'.$this->name;
236
-
237
-        // add the attributes
238
-        foreach ($this->attr as $key => $info) {
239
-            $info = $this->getAttribute($key);
240
-            $val  = $info['value'];
241
-            if (is_null($val)) {
242
-                $return .= ' '.$key;
243
-            } elseif ($info['doubleQuote']) {
244
-                $return .= ' '.$key.'="'.$val.'"';
245
-            } else {
246
-                $return .= ' '.$key.'=\''.$val.'\'';
247
-            }
248
-        }
249
-
250
-        if ($this->selfClosing) {
251
-            return $return.' />';
252
-        } else {
253
-            return $return.'>';
254
-        }
255
-    }
256
-
257
-    /**
258
-     * Generates the closing tag for this object.
259
-     *
260
-     * @return string
261
-     */
262
-    public function makeClosingTag()
263
-    {
264
-        if ($this->selfClosing) {
265
-            return '';
266
-        }
267
-
268
-        return '</'.$this->name.'>';
269
-    }
15
+	/**
16
+	 * The name of the tag.
17
+	 *
18
+	 * @var string
19
+	 */
20
+	protected $name;
21
+
22
+	/**
23
+	 * The attributes of the tag.
24
+	 *
25
+	 * @var array
26
+	 */
27
+	protected $attr = [];
28
+
29
+	/**
30
+	 * Is this tag self closing.
31
+	 *
32
+	 * @var bool
33
+	 */
34
+	protected $selfClosing = false;
35
+
36
+	/**
37
+	 * Tag noise
38
+	 */
39
+	protected $noise = '';
40
+
41
+	/**
42
+	 * The encoding class to... encode the tags
43
+	 *
44
+	 * @var mixed
45
+	 */
46
+	protected $encode = null;
47
+
48
+	/**
49
+	 * Sets up the tag with a name.
50
+	 *
51
+	 * @param $name
52
+	 */
53
+	public function __construct($name)
54
+	{
55
+		$this->name = $name;
56
+	}
57
+
58
+	/**
59
+	 * Magic method to get any of the attributes.
60
+	 *
61
+	 * @param string $key
62
+	 * @return mixed
63
+	 */
64
+	public function __get($key)
65
+	{
66
+		return $this->getAttribute($key);
67
+	}
68
+
69
+	/**
70
+	 * Magic method to set any attribute.
71
+	 *
72
+	 * @param string $key
73
+	 * @param mixed $value
74
+	 */
75
+	public function __set($key, $value)
76
+	{
77
+		$this->setAttribute($key, $value);
78
+	}
79
+
80
+	/**
81
+	 * Returns the name of this tag.
82
+	 *
83
+	 * @return string
84
+	 */
85
+	public function name()
86
+	{
87
+		return $this->name;
88
+	}
89
+
90
+	/**
91
+	 * Sets the tag to be self closing.
92
+	 *
93
+	 * @return $this
94
+	 */
95
+	public function selfClosing()
96
+	{
97
+		$this->selfClosing = true;
98
+
99
+		return $this;
100
+	}
101
+
102
+	/**
103
+	 * Checks if the tag is self closing.
104
+	 *
105
+	 * @return bool
106
+	 */
107
+	public function isSelfClosing()
108
+	{
109
+		return $this->selfClosing;
110
+	}
111
+
112
+	/**
113
+	 * Sets the encoding type to be used.
114
+	 *
115
+	 * @param Encode $encode
116
+	 */
117
+	public function setEncoding(Encode $encode)
118
+	{
119
+		$this->encode = $encode;
120
+	}
121
+
122
+	/**
123
+	 * Sets the noise for this tag (if any)
124
+	 *
125
+	 * @param $noise
126
+	 * @return $this
127
+	 */
128
+	public function noise($noise)
129
+	{
130
+		$this->noise = $noise;
131
+
132
+		return $this;
133
+	}
134
+
135
+	/**
136
+	 * Set an attribute for this tag.
137
+	 *
138
+	 * @param string $key
139
+	 * @param string|array $value
140
+	 * @return $this
141
+	 */
142
+	public function setAttribute($key, $value)
143
+	{
144
+		$key = strtolower($key);
145
+		if ( ! is_array($value)) {
146
+			$value = [
147
+				'value'       => $value,
148
+				'doubleQuote' => true,
149
+			];
150
+		}
151
+		$this->attr[$key] = $value;
152
+
153
+		return $this;
154
+	}
155
+
156
+	/**
157
+	 * Removes an attribute from this tag.
158
+	 *
159
+	 * @param $key
160
+	 * @return void
161
+	 */
162
+	public function removeAttribute($key)
163
+	{
164
+		$key = strtolower($key);
165
+		unset($this->attr[$key]);
166
+	}
167
+
168
+	/**
169
+	 * Removes all attributes on this tag.
170
+	 *
171
+	 * @return void
172
+	 */
173
+	public function removeAllAttributes()
174
+	{
175
+		$this->attr = [];
176
+	}
177
+
178
+	/**
179
+	 * Sets the attributes for this tag
180
+	 *
181
+	 * @param array $attr
182
+	 * @return $this
183
+	 */
184
+	public function setAttributes(array $attr)
185
+	{
186
+		foreach ($attr as $key => $value) {
187
+			$this->setAttribute($key, $value);
188
+		}
189
+
190
+		return $this;
191
+	}
192
+
193
+	/**
194
+	 * Returns all attributes of this tag.
195
+	 *
196
+	 * @return array
197
+	 */
198
+	public function getAttributes()
199
+	{
200
+		$return = [];
201
+		foreach ($this->attr as $attr => $info) {
202
+			$return[$attr] = $this->getAttribute($attr);
203
+		}
204
+
205
+		return $return;
206
+	}
207
+
208
+	/**
209
+	 * Returns an attribute by the key
210
+	 *
211
+	 * @param string $key
212
+	 * @return mixed
213
+	 */
214
+	public function getAttribute($key)
215
+	{
216
+		if ( ! isset($this->attr[$key])) {
217
+			return null;
218
+		}
219
+		$value = $this->attr[$key]['value'];
220
+		if (is_string($value) && ! is_null($this->encode)) {
221
+			// convert charset
222
+			$this->attr[$key]['value'] = $this->encode->convert($value);
223
+		}
224
+
225
+		return $this->attr[$key];
226
+	}
227
+
228
+	/**
229
+	 * Generates the opening tag for this object.
230
+	 *
231
+	 * @return string
232
+	 */
233
+	public function makeOpeningTag()
234
+	{
235
+		$return = '<'.$this->name;
236
+
237
+		// add the attributes
238
+		foreach ($this->attr as $key => $info) {
239
+			$info = $this->getAttribute($key);
240
+			$val  = $info['value'];
241
+			if (is_null($val)) {
242
+				$return .= ' '.$key;
243
+			} elseif ($info['doubleQuote']) {
244
+				$return .= ' '.$key.'="'.$val.'"';
245
+			} else {
246
+				$return .= ' '.$key.'=\''.$val.'\'';
247
+			}
248
+		}
249
+
250
+		if ($this->selfClosing) {
251
+			return $return.' />';
252
+		} else {
253
+			return $return.'>';
254
+		}
255
+	}
256
+
257
+	/**
258
+	 * Generates the closing tag for this object.
259
+	 *
260
+	 * @return string
261
+	 */
262
+	public function makeClosingTag()
263
+	{
264
+		if ($this->selfClosing) {
265
+			return '';
266
+		}
267
+
268
+		return '</'.$this->name.'>';
269
+	}
270 270
 }
Please login to merge, or discard this patch.
src/PHPHtmlParser/Dom/InnerNode.php 1 patch
Indentation   +301 added lines, -301 removed lines patch added patch discarded remove patch
@@ -13,305 +13,305 @@
 block discarded – undo
13 13
 abstract class InnerNode extends ArrayNode
14 14
 {
15 15
 
16
-    /**
17
-     * An array of all the children.
18
-     *
19
-     * @var array
20
-     */
21
-    protected $children = [];
22
-
23
-    /**
24
-     * Sets the encoding class to this node and propagates it
25
-     * to all its children.
26
-     *
27
-     * @param Encode $encode
28
-     * @return void
29
-     */
30
-    public function propagateEncoding(Encode $encode)
31
-    {
32
-        $this->encode = $encode;
33
-        $this->tag->setEncoding($encode);
34
-        // check children
35
-        foreach ($this->children as $id => $child) {
36
-            /** @var AbstractNode $node */
37
-            $node = $child['node'];
38
-            $node->propagateEncoding($encode);
39
-        }
40
-    }
41
-
42
-    /**
43
-     * Checks if this node has children.
44
-     *
45
-     * @return bool
46
-     */
47
-    public function hasChildren()
48
-    {
49
-        return ! empty($this->children);
50
-    }
51
-
52
-    /**
53
-     * Returns the child by id.
54
-     *
55
-     * @param int $id
56
-     * @return AbstractNode
57
-     * @throws ChildNotFoundException
58
-     */
59
-    public function getChild($id)
60
-    {
61
-        if ( ! isset($this->children[$id])) {
62
-            throw new ChildNotFoundException("Child '$id' not found in this node.");
63
-        }
64
-
65
-        return $this->children[$id]['node'];
66
-    }
67
-
68
-    /**
69
-     * Returns a new array of child nodes
70
-     *
71
-     * @return array
72
-     */
73
-    public function getChildren()
74
-    {
75
-        $nodes = [];
76
-        try {
77
-            $child = $this->firstChild();
78
-            do {
79
-                $nodes[] = $child;
80
-                $child   = $this->nextChild($child->id());
81
-            } while ( ! is_null($child));
82
-        } catch (ChildNotFoundException $e) {
83
-            // we are done looking for children
84
-        }
85
-
86
-        return $nodes;
87
-    }
88
-
89
-    /**
90
-     * Counts children
91
-     *
92
-     * @return int
93
-     */
94
-    public function countChildren()
95
-    {
96
-        return count($this->children);
97
-    }
98
-
99
-    /**
100
-     * Adds a child node to this node and returns the id of the child for this
101
-     * parent.
102
-     *
103
-     * @param AbstractNode $child
104
-     * @return bool
105
-     * @throws CircularException
106
-     */
107
-    public function addChild(AbstractNode $child)
108
-    {
109
-        $key = null;
110
-
111
-        // check integrity
112
-        if ($this->isAncestor($child->id())) {
113
-            throw new CircularException('Can not add child. It is my ancestor.');
114
-        }
115
-
116
-        // check if child is itself
117
-        if ($child->id() == $this->id) {
118
-            throw new CircularException('Can not set itself as a child.');
119
-        }
120
-
121
-        if ($this->hasChildren()) {
122
-            if (isset($this->children[$child->id()])) {
123
-                // we already have this child
124
-                return false;
125
-            }
126
-            $sibling                      = $this->lastChild();
127
-            $key                          = $sibling->id();
128
-            $this->children[$key]['next'] = $child->id();
129
-        }
130
-
131
-        // add the child
132
-        $this->children[$child->id()] = [
133
-            'node' => $child,
134
-            'next' => null,
135
-            'prev' => $key,
136
-        ];
137
-
138
-        // tell child I am the new parent
139
-        $child->setParent($this);
140
-
141
-        //clear any cache
142
-        $this->clear();
143
-
144
-        return true;
145
-    }
146
-
147
-    /**
148
-     * Removes the child by id.
149
-     *
150
-     * @param int $id
151
-     * @return $this
152
-     */
153
-    public function removeChild($id)
154
-    {
155
-        if ( ! isset($this->children[$id])) {
156
-            return $this;
157
-        }
158
-
159
-        // handle moving next and previous assignments.
160
-        $next = $this->children[$id]['next'];
161
-        $prev = $this->children[$id]['prev'];
162
-        if ( ! is_null($next)) {
163
-            $this->children[$next]['prev'] = $prev;
164
-        }
165
-        if ( ! is_null($prev)) {
166
-            $this->children[$prev]['next'] = $next;
167
-        }
168
-
169
-        // remove the child
170
-        unset($this->children[$id]);
171
-
172
-        //clear any cache
173
-        $this->clear();
174
-
175
-        return $this;
176
-    }
177
-
178
-    /**
179
-     * Attempts to get the next child.
180
-     *
181
-     * @param int $id
182
-     * @return AbstractNode
183
-     * @uses $this->getChild()
184
-     * @throws ChildNotFoundException
185
-     */
186
-    public function nextChild($id)
187
-    {
188
-        $child = $this->getChild($id);
189
-        $next  = $this->children[$child->id()]['next'];
190
-
191
-        return $this->getChild($next);
192
-    }
193
-
194
-    /**
195
-     * Attempts to get the previous child.
196
-     *
197
-     * @param int $id
198
-     * @return AbstractNode
199
-     * @uses $this->getChild()
200
-     * @throws ChildNotFoundException
201
-     */
202
-    public function previousChild($id)
203
-    {
204
-        $child = $this->getchild($id);
205
-        $next  = $this->children[$child->id()]['prev'];
206
-
207
-        return $this->getChild($next);
208
-    }
209
-
210
-    /**
211
-     * Checks if the given node id is a child of the
212
-     * current node.
213
-     *
214
-     * @param int $id
215
-     * @return bool
216
-     */
217
-    public function isChild($id)
218
-    {
219
-        foreach ($this->children as $childId => $child) {
220
-            if ($id == $childId) {
221
-                return true;
222
-            }
223
-        }
224
-
225
-        return false;
226
-    }
227
-
228
-    /**
229
-     * Removes the child with id $childId and replace it with the new child
230
-     * $newChild.
231
-     *
232
-     * @param int $childId
233
-     * @param AbstractNode $newChild
234
-     * @throws ChildNotFoundException
235
-     */
236
-    public function replaceChild($childId, AbstractNode $newChild)
237
-    {
238
-        $oldChild = $this->getChild($childId);
239
-        $keys = array_keys($this->children);
240
-        $index = array_search($childId, $keys, true);
241
-        $keys[$index] = $newChild->id();
242
-        $this->children = array_combine($keys, $this->children);
243
-        $this->children[$newChild->id()] = $newChild;
244
-        unset($oldChild);
245
-    }
246
-
247
-    /**
248
-     * Shortcut to return the first child.
249
-     *
250
-     * @return AbstractNode
251
-     * @uses $this->getChild()
252
-     */
253
-    public function firstChild()
254
-    {
255
-        reset($this->children);
256
-        $key = key($this->children);
257
-
258
-        return $this->getChild($key);
259
-    }
260
-
261
-    /**
262
-     * Attempts to get the last child.
263
-     *
264
-     * @return AbstractNode
265
-     */
266
-    public function lastChild()
267
-    {
268
-        end($this->children);
269
-        $key = key($this->children);
270
-
271
-        return $this->getChild($key);
272
-    }
273
-
274
-    /**
275
-     * Checks if the given node id is a descendant of the
276
-     * current node.
277
-     *
278
-     * @param int $id
279
-     * @return bool
280
-     */
281
-    public function isDescendant($id)
282
-    {
283
-        if ($this->isChild($id)) {
284
-            return true;
285
-        }
286
-
287
-        foreach ($this->children as $childId => $child) {
288
-            /** @var InnerNode $node */
289
-            $node = $child['node'];
290
-            if ($node instanceof InnerNode &&
291
-                $node->hasChildren() &&
292
-                $node->isDescendant($id)
293
-            ) {
294
-                return true;
295
-            }
296
-        }
297
-
298
-        return false;
299
-    }
300
-
301
-    /**
302
-     * Sets the parent node.
303
-     *
304
-     * @param InnerNode $parent
305
-     * @return $this
306
-     * @throws CircularException
307
-     */
308
-    public function setParent(InnerNode $parent)
309
-    {
310
-        // check integrity
311
-        if ($this->isDescendant($parent->id())) {
312
-            throw new CircularException('Can not add descendant "'.$parent->id().'" as my parent.');
313
-        }
314
-
315
-        return parent::setParent($parent);
316
-    }
16
+	/**
17
+	 * An array of all the children.
18
+	 *
19
+	 * @var array
20
+	 */
21
+	protected $children = [];
22
+
23
+	/**
24
+	 * Sets the encoding class to this node and propagates it
25
+	 * to all its children.
26
+	 *
27
+	 * @param Encode $encode
28
+	 * @return void
29
+	 */
30
+	public function propagateEncoding(Encode $encode)
31
+	{
32
+		$this->encode = $encode;
33
+		$this->tag->setEncoding($encode);
34
+		// check children
35
+		foreach ($this->children as $id => $child) {
36
+			/** @var AbstractNode $node */
37
+			$node = $child['node'];
38
+			$node->propagateEncoding($encode);
39
+		}
40
+	}
41
+
42
+	/**
43
+	 * Checks if this node has children.
44
+	 *
45
+	 * @return bool
46
+	 */
47
+	public function hasChildren()
48
+	{
49
+		return ! empty($this->children);
50
+	}
51
+
52
+	/**
53
+	 * Returns the child by id.
54
+	 *
55
+	 * @param int $id
56
+	 * @return AbstractNode
57
+	 * @throws ChildNotFoundException
58
+	 */
59
+	public function getChild($id)
60
+	{
61
+		if ( ! isset($this->children[$id])) {
62
+			throw new ChildNotFoundException("Child '$id' not found in this node.");
63
+		}
64
+
65
+		return $this->children[$id]['node'];
66
+	}
67
+
68
+	/**
69
+	 * Returns a new array of child nodes
70
+	 *
71
+	 * @return array
72
+	 */
73
+	public function getChildren()
74
+	{
75
+		$nodes = [];
76
+		try {
77
+			$child = $this->firstChild();
78
+			do {
79
+				$nodes[] = $child;
80
+				$child   = $this->nextChild($child->id());
81
+			} while ( ! is_null($child));
82
+		} catch (ChildNotFoundException $e) {
83
+			// we are done looking for children
84
+		}
85
+
86
+		return $nodes;
87
+	}
88
+
89
+	/**
90
+	 * Counts children
91
+	 *
92
+	 * @return int
93
+	 */
94
+	public function countChildren()
95
+	{
96
+		return count($this->children);
97
+	}
98
+
99
+	/**
100
+	 * Adds a child node to this node and returns the id of the child for this
101
+	 * parent.
102
+	 *
103
+	 * @param AbstractNode $child
104
+	 * @return bool
105
+	 * @throws CircularException
106
+	 */
107
+	public function addChild(AbstractNode $child)
108
+	{
109
+		$key = null;
110
+
111
+		// check integrity
112
+		if ($this->isAncestor($child->id())) {
113
+			throw new CircularException('Can not add child. It is my ancestor.');
114
+		}
115
+
116
+		// check if child is itself
117
+		if ($child->id() == $this->id) {
118
+			throw new CircularException('Can not set itself as a child.');
119
+		}
120
+
121
+		if ($this->hasChildren()) {
122
+			if (isset($this->children[$child->id()])) {
123
+				// we already have this child
124
+				return false;
125
+			}
126
+			$sibling                      = $this->lastChild();
127
+			$key                          = $sibling->id();
128
+			$this->children[$key]['next'] = $child->id();
129
+		}
130
+
131
+		// add the child
132
+		$this->children[$child->id()] = [
133
+			'node' => $child,
134
+			'next' => null,
135
+			'prev' => $key,
136
+		];
137
+
138
+		// tell child I am the new parent
139
+		$child->setParent($this);
140
+
141
+		//clear any cache
142
+		$this->clear();
143
+
144
+		return true;
145
+	}
146
+
147
+	/**
148
+	 * Removes the child by id.
149
+	 *
150
+	 * @param int $id
151
+	 * @return $this
152
+	 */
153
+	public function removeChild($id)
154
+	{
155
+		if ( ! isset($this->children[$id])) {
156
+			return $this;
157
+		}
158
+
159
+		// handle moving next and previous assignments.
160
+		$next = $this->children[$id]['next'];
161
+		$prev = $this->children[$id]['prev'];
162
+		if ( ! is_null($next)) {
163
+			$this->children[$next]['prev'] = $prev;
164
+		}
165
+		if ( ! is_null($prev)) {
166
+			$this->children[$prev]['next'] = $next;
167
+		}
168
+
169
+		// remove the child
170
+		unset($this->children[$id]);
171
+
172
+		//clear any cache
173
+		$this->clear();
174
+
175
+		return $this;
176
+	}
177
+
178
+	/**
179
+	 * Attempts to get the next child.
180
+	 *
181
+	 * @param int $id
182
+	 * @return AbstractNode
183
+	 * @uses $this->getChild()
184
+	 * @throws ChildNotFoundException
185
+	 */
186
+	public function nextChild($id)
187
+	{
188
+		$child = $this->getChild($id);
189
+		$next  = $this->children[$child->id()]['next'];
190
+
191
+		return $this->getChild($next);
192
+	}
193
+
194
+	/**
195
+	 * Attempts to get the previous child.
196
+	 *
197
+	 * @param int $id
198
+	 * @return AbstractNode
199
+	 * @uses $this->getChild()
200
+	 * @throws ChildNotFoundException
201
+	 */
202
+	public function previousChild($id)
203
+	{
204
+		$child = $this->getchild($id);
205
+		$next  = $this->children[$child->id()]['prev'];
206
+
207
+		return $this->getChild($next);
208
+	}
209
+
210
+	/**
211
+	 * Checks if the given node id is a child of the
212
+	 * current node.
213
+	 *
214
+	 * @param int $id
215
+	 * @return bool
216
+	 */
217
+	public function isChild($id)
218
+	{
219
+		foreach ($this->children as $childId => $child) {
220
+			if ($id == $childId) {
221
+				return true;
222
+			}
223
+		}
224
+
225
+		return false;
226
+	}
227
+
228
+	/**
229
+	 * Removes the child with id $childId and replace it with the new child
230
+	 * $newChild.
231
+	 *
232
+	 * @param int $childId
233
+	 * @param AbstractNode $newChild
234
+	 * @throws ChildNotFoundException
235
+	 */
236
+	public function replaceChild($childId, AbstractNode $newChild)
237
+	{
238
+		$oldChild = $this->getChild($childId);
239
+		$keys = array_keys($this->children);
240
+		$index = array_search($childId, $keys, true);
241
+		$keys[$index] = $newChild->id();
242
+		$this->children = array_combine($keys, $this->children);
243
+		$this->children[$newChild->id()] = $newChild;
244
+		unset($oldChild);
245
+	}
246
+
247
+	/**
248
+	 * Shortcut to return the first child.
249
+	 *
250
+	 * @return AbstractNode
251
+	 * @uses $this->getChild()
252
+	 */
253
+	public function firstChild()
254
+	{
255
+		reset($this->children);
256
+		$key = key($this->children);
257
+
258
+		return $this->getChild($key);
259
+	}
260
+
261
+	/**
262
+	 * Attempts to get the last child.
263
+	 *
264
+	 * @return AbstractNode
265
+	 */
266
+	public function lastChild()
267
+	{
268
+		end($this->children);
269
+		$key = key($this->children);
270
+
271
+		return $this->getChild($key);
272
+	}
273
+
274
+	/**
275
+	 * Checks if the given node id is a descendant of the
276
+	 * current node.
277
+	 *
278
+	 * @param int $id
279
+	 * @return bool
280
+	 */
281
+	public function isDescendant($id)
282
+	{
283
+		if ($this->isChild($id)) {
284
+			return true;
285
+		}
286
+
287
+		foreach ($this->children as $childId => $child) {
288
+			/** @var InnerNode $node */
289
+			$node = $child['node'];
290
+			if ($node instanceof InnerNode &&
291
+				$node->hasChildren() &&
292
+				$node->isDescendant($id)
293
+			) {
294
+				return true;
295
+			}
296
+		}
297
+
298
+		return false;
299
+	}
300
+
301
+	/**
302
+	 * Sets the parent node.
303
+	 *
304
+	 * @param InnerNode $parent
305
+	 * @return $this
306
+	 * @throws CircularException
307
+	 */
308
+	public function setParent(InnerNode $parent)
309
+	{
310
+		// check integrity
311
+		if ($this->isDescendant($parent->id())) {
312
+			throw new CircularException('Can not add descendant "'.$parent->id().'" as my parent.');
313
+		}
314
+
315
+		return parent::setParent($parent);
316
+	}
317 317
 }
318 318
\ No newline at end of file
Please login to merge, or discard this patch.
src/PHPHtmlParser/Dom/AbstractNode.php 1 patch
Indentation   +388 added lines, -388 removed lines patch added patch discarded remove patch
@@ -18,392 +18,392 @@
 block discarded – undo
18 18
 abstract class AbstractNode
19 19
 {
20 20
 
21
-    /**
22
-     * Contains the tag name/type
23
-     *
24
-     * @var \PHPHtmlParser\Dom\Tag
25
-     */
26
-    protected $tag;
27
-
28
-    /**
29
-     * Contains a list of attributes on this tag.
30
-     *
31
-     * @var array
32
-     */
33
-    protected $attr = [];
34
-
35
-    /**
36
-     * Contains the parent Node.
37
-     *
38
-     * @var InnerNode
39
-     */
40
-    protected $parent = null;
41
-
42
-    /**
43
-     * The unique id of the class. Given by PHP.
44
-     *
45
-     * @var string
46
-     */
47
-    protected $id;
48
-
49
-    /**
50
-     * The encoding class used to encode strings.
51
-     *
52
-     * @var mixed
53
-     */
54
-    protected $encode;
55
-
56
-    /**
57
-     * Creates a unique spl hash for this node.
58
-     */
59
-    public function __construct()
60
-    {
61
-        $this->id = spl_object_hash($this);
62
-    }
63
-
64
-    /**
65
-     * Magic get method for attributes and certain methods.
66
-     *
67
-     * @param string $key
68
-     * @return mixed
69
-     */
70
-    public function __get($key)
71
-    {
72
-        // check attribute first
73
-        if ( ! is_null($this->getAttribute($key))) {
74
-            return $this->getAttribute($key);
75
-        }
76
-        switch (strtolower($key)) {
77
-            case 'outerhtml':
78
-                return $this->outerHtml();
79
-            case 'innerhtml':
80
-                return $this->innerHtml();
81
-            case 'text':
82
-                return $this->text();
83
-            case 'tag':
84
-                return $this->getTag();
85
-            case 'parent': $this->getParent();
86
-        }
87
-
88
-        return null;
89
-    }
90
-
91
-    /**
92
-     * Attempts to clear out any object references.
93
-     */
94
-    public function __destruct()
95
-    {
96
-        $this->tag      = null;
97
-        $this->attr     = [];
98
-        $this->parent   = null;
99
-        $this->children = [];
100
-    }
101
-
102
-    /**
103
-     * Simply calls the outer text method.
104
-     *
105
-     * @return string
106
-     */
107
-    public function __toString()
108
-    {
109
-        return $this->outerHtml();
110
-    }
111
-
112
-    /**
113
-     * Returns the id of this object.
114
-     */
115
-    public function id()
116
-    {
117
-        return $this->id;
118
-    }
119
-
120
-    /**
121
-     * Returns the parent of node.
122
-     *
123
-     * @return AbstractNode
124
-     */
125
-    public function getParent()
126
-    {
127
-        return $this->parent;
128
-    }
129
-
130
-    /**
131
-     * Sets the parent node.
132
-     *
133
-     * @param InnerNode $parent
134
-     * @return $this
135
-     * @throws CircularException
136
-     */
137
-    public function setParent(InnerNode $parent)
138
-    {
139
-        // remove from old parent
140
-        if ( ! is_null($this->parent)) {
141
-            if ($this->parent->id() == $parent->id()) {
142
-                // already the parent
143
-                return $this;
144
-            }
145
-
146
-            $this->parent->removeChild($this->id);
147
-        }
148
-
149
-        $this->parent = $parent;
150
-
151
-        // assign child to parent
152
-        $this->parent->addChild($this);
153
-
154
-        //clear any cache
155
-        $this->clear();
156
-
157
-        return $this;
158
-    }
159
-
160
-    /**
161
-     * Removes this node and all its children from the
162
-     * DOM tree.
163
-     *
164
-     * @return void
165
-     */
166
-    public function delete()
167
-    {
168
-        if ( ! is_null($this->parent)) {
169
-            $this->parent->removeChild($this->id);
170
-        }
171
-
172
-        $this->parent = null;
173
-    }
174
-
175
-    /**
176
-     * Sets the encoding class to this node.
177
-     *
178
-     * @param Encode $encode
179
-     * @return void
180
-     */
181
-    public function propagateEncoding(Encode $encode)
182
-    {
183
-        $this->encode = $encode;
184
-        $this->tag->setEncoding($encode);
185
-    }
186
-
187
-    /**
188
-     * Checks if the given node id is an ancestor of
189
-     * the current node.
190
-     *
191
-     * @param int $id
192
-     * @return bool
193
-     */
194
-    public function isAncestor($id)
195
-    {
196
-        if ( ! is_null($this->getAncestor($id))) {
197
-            return true;
198
-        }
199
-
200
-        return false;
201
-    }
202
-
203
-    /**
204
-     * Attempts to get an ancestor node by the given id.
205
-     *
206
-     * @param int $id
207
-     * @return null|AbstractNode
208
-     */
209
-    public function getAncestor($id)
210
-    {
211
-        if ( ! is_null($this->parent)) {
212
-            if ($this->parent->id() == $id) {
213
-                return $this->parent;
214
-            }
215
-
216
-            return $this->parent->getAncestor($id);
217
-        }
218
-
219
-        return null;
220
-    }
221
-
222
-    /**
223
-     * Attempts to get the next sibling.
224
-     *
225
-     * @return AbstractNode
226
-     * @throws ParentNotFoundException
227
-     */
228
-    public function nextSibling()
229
-    {
230
-        if (is_null($this->parent)) {
231
-            throw new ParentNotFoundException('Parent is not set for this node.');
232
-        }
233
-
234
-        return $this->parent->nextChild($this->id);
235
-    }
236
-
237
-    /**
238
-     * Attempts to get the previous sibling
239
-     *
240
-     * @return AbstractNode
241
-     * @throws ParentNotFoundException
242
-     */
243
-    public function previousSibling()
244
-    {
245
-        if (is_null($this->parent)) {
246
-            throw new ParentNotFoundException('Parent is not set for this node.');
247
-        }
248
-
249
-        return $this->parent->previousChild($this->id);
250
-    }
251
-
252
-    /**
253
-     * Gets the tag object of this node.
254
-     *
255
-     * @return Tag
256
-     */
257
-    public function getTag()
258
-    {
259
-        return $this->tag;
260
-    }
261
-
262
-    /**
263
-     * A wrapper method that simply calls the getAttribute method
264
-     * on the tag of this node.
265
-     *
266
-     * @return array
267
-     */
268
-    public function getAttributes()
269
-    {
270
-        $attributes = $this->tag->getAttributes();
271
-        foreach ($attributes as $name => $info) {
272
-            $attributes[$name] = $info['value'];
273
-        }
274
-
275
-        return $attributes;
276
-    }
277
-
278
-    /**
279
-     * A wrapper method that simply calls the getAttribute method
280
-     * on the tag of this node.
281
-     *
282
-     * @param string $key
283
-     * @return mixed
284
-     */
285
-    public function getAttribute($key)
286
-    {
287
-        $attribute = $this->tag->getAttribute($key);
288
-        if ( ! is_null($attribute)) {
289
-            $attribute = $attribute['value'];
290
-        }
291
-
292
-        return $attribute;
293
-    }
294
-
295
-    /**
296
-     * A wrapper method that simply calls the setAttribute method
297
-     * on the tag of this node.
298
-     *
299
-     * @param string $key
300
-     * @param string $value
301
-     * @return $this
302
-     */
303
-    public function setAttribute($key, $value)
304
-    {
305
-        $this->tag->setAttribute($key, $value);
306
-
307
-        return $this;
308
-    }
309
-
310
-    /**
311
-     * A wrapper method that simply calls the removeAttribute method
312
-     * on the tag of this node.
313
-     *
314
-     * @param string $key
315
-     * @return void
316
-     */
317
-    public function removeAttribute($key)
318
-    {
319
-        $this->tag->removeAttribute($key);
320
-    }
321
-
322
-    /**
323
-     * A wrapper method that simply calls the removeAllAttributes
324
-     * method on the tag of this node.
325
-     *
326
-     * @return void
327
-     */
328
-    public function removeAllAttributes()
329
-    {
330
-        $this->tag->removeAllAttributes();
331
-    }
332
-
333
-    /**
334
-     * Function to locate a specific ancestor tag in the path to the root.
335
-     *
336
-     * @param  string $tag
337
-     * @return AbstractNode
338
-     * @throws ParentNotFoundException
339
-     */
340
-    public function ancestorByTag($tag)
341
-    {
342
-        // Start by including ourselves in the comparison.
343
-        $node = $this;
344
-
345
-        while ( ! is_null($node)) {
346
-            if ($node->tag->name() == $tag) {
347
-                return $node;
348
-            }
349
-
350
-            $node = $node->getParent();
351
-        }
352
-
353
-        throw new ParentNotFoundException('Could not find an ancestor with "'.$tag.'" tag');
354
-    }
355
-
356
-    /**
357
-     * Find elements by css selector
358
-     *
359
-     * @param string $selector
360
-     * @param int $nth
361
-     * @return array|AbstractNode
362
-     */
363
-    public function find($selector, $nth = null)
364
-    {
365
-        $selector = new Selector($selector);
366
-        $nodes    = $selector->find($this);
367
-
368
-        if ( ! is_null($nth)) {
369
-            // return nth-element or array
370
-            if (isset($nodes[$nth])) {
371
-                return $nodes[$nth];
372
-            }
373
-
374
-            return null;
375
-        }
376
-
377
-        return $nodes;
378
-    }
379
-
380
-    /**
381
-     * Gets the inner html of this node.
382
-     *
383
-     * @return string
384
-     */
385
-    abstract public function innerHtml();
386
-
387
-    /**
388
-     * Gets the html of this node, including it's own
389
-     * tag.
390
-     *
391
-     * @return string
392
-     */
393
-    abstract public function outerHtml();
394
-
395
-    /**
396
-     * Gets the text of this node (if there is any text).
397
-     *
398
-     * @return string
399
-     */
400
-    abstract public function text();
401
-
402
-    /**
403
-     * Call this when something in the node tree has changed. Like a child has been added
404
-     * or a parent has been changed.
405
-     *
406
-     * @return void
407
-     */
408
-    abstract protected function clear();
21
+	/**
22
+	 * Contains the tag name/type
23
+	 *
24
+	 * @var \PHPHtmlParser\Dom\Tag
25
+	 */
26
+	protected $tag;
27
+
28
+	/**
29
+	 * Contains a list of attributes on this tag.
30
+	 *
31
+	 * @var array
32
+	 */
33
+	protected $attr = [];
34
+
35
+	/**
36
+	 * Contains the parent Node.
37
+	 *
38
+	 * @var InnerNode
39
+	 */
40
+	protected $parent = null;
41
+
42
+	/**
43
+	 * The unique id of the class. Given by PHP.
44
+	 *
45
+	 * @var string
46
+	 */
47
+	protected $id;
48
+
49
+	/**
50
+	 * The encoding class used to encode strings.
51
+	 *
52
+	 * @var mixed
53
+	 */
54
+	protected $encode;
55
+
56
+	/**
57
+	 * Creates a unique spl hash for this node.
58
+	 */
59
+	public function __construct()
60
+	{
61
+		$this->id = spl_object_hash($this);
62
+	}
63
+
64
+	/**
65
+	 * Magic get method for attributes and certain methods.
66
+	 *
67
+	 * @param string $key
68
+	 * @return mixed
69
+	 */
70
+	public function __get($key)
71
+	{
72
+		// check attribute first
73
+		if ( ! is_null($this->getAttribute($key))) {
74
+			return $this->getAttribute($key);
75
+		}
76
+		switch (strtolower($key)) {
77
+			case 'outerhtml':
78
+				return $this->outerHtml();
79
+			case 'innerhtml':
80
+				return $this->innerHtml();
81
+			case 'text':
82
+				return $this->text();
83
+			case 'tag':
84
+				return $this->getTag();
85
+			case 'parent': $this->getParent();
86
+		}
87
+
88
+		return null;
89
+	}
90
+
91
+	/**
92
+	 * Attempts to clear out any object references.
93
+	 */
94
+	public function __destruct()
95
+	{
96
+		$this->tag      = null;
97
+		$this->attr     = [];
98
+		$this->parent   = null;
99
+		$this->children = [];
100
+	}
101
+
102
+	/**
103
+	 * Simply calls the outer text method.
104
+	 *
105
+	 * @return string
106
+	 */
107
+	public function __toString()
108
+	{
109
+		return $this->outerHtml();
110
+	}
111
+
112
+	/**
113
+	 * Returns the id of this object.
114
+	 */
115
+	public function id()
116
+	{
117
+		return $this->id;
118
+	}
119
+
120
+	/**
121
+	 * Returns the parent of node.
122
+	 *
123
+	 * @return AbstractNode
124
+	 */
125
+	public function getParent()
126
+	{
127
+		return $this->parent;
128
+	}
129
+
130
+	/**
131
+	 * Sets the parent node.
132
+	 *
133
+	 * @param InnerNode $parent
134
+	 * @return $this
135
+	 * @throws CircularException
136
+	 */
137
+	public function setParent(InnerNode $parent)
138
+	{
139
+		// remove from old parent
140
+		if ( ! is_null($this->parent)) {
141
+			if ($this->parent->id() == $parent->id()) {
142
+				// already the parent
143
+				return $this;
144
+			}
145
+
146
+			$this->parent->removeChild($this->id);
147
+		}
148
+
149
+		$this->parent = $parent;
150
+
151
+		// assign child to parent
152
+		$this->parent->addChild($this);
153
+
154
+		//clear any cache
155
+		$this->clear();
156
+
157
+		return $this;
158
+	}
159
+
160
+	/**
161
+	 * Removes this node and all its children from the
162
+	 * DOM tree.
163
+	 *
164
+	 * @return void
165
+	 */
166
+	public function delete()
167
+	{
168
+		if ( ! is_null($this->parent)) {
169
+			$this->parent->removeChild($this->id);
170
+		}
171
+
172
+		$this->parent = null;
173
+	}
174
+
175
+	/**
176
+	 * Sets the encoding class to this node.
177
+	 *
178
+	 * @param Encode $encode
179
+	 * @return void
180
+	 */
181
+	public function propagateEncoding(Encode $encode)
182
+	{
183
+		$this->encode = $encode;
184
+		$this->tag->setEncoding($encode);
185
+	}
186
+
187
+	/**
188
+	 * Checks if the given node id is an ancestor of
189
+	 * the current node.
190
+	 *
191
+	 * @param int $id
192
+	 * @return bool
193
+	 */
194
+	public function isAncestor($id)
195
+	{
196
+		if ( ! is_null($this->getAncestor($id))) {
197
+			return true;
198
+		}
199
+
200
+		return false;
201
+	}
202
+
203
+	/**
204
+	 * Attempts to get an ancestor node by the given id.
205
+	 *
206
+	 * @param int $id
207
+	 * @return null|AbstractNode
208
+	 */
209
+	public function getAncestor($id)
210
+	{
211
+		if ( ! is_null($this->parent)) {
212
+			if ($this->parent->id() == $id) {
213
+				return $this->parent;
214
+			}
215
+
216
+			return $this->parent->getAncestor($id);
217
+		}
218
+
219
+		return null;
220
+	}
221
+
222
+	/**
223
+	 * Attempts to get the next sibling.
224
+	 *
225
+	 * @return AbstractNode
226
+	 * @throws ParentNotFoundException
227
+	 */
228
+	public function nextSibling()
229
+	{
230
+		if (is_null($this->parent)) {
231
+			throw new ParentNotFoundException('Parent is not set for this node.');
232
+		}
233
+
234
+		return $this->parent->nextChild($this->id);
235
+	}
236
+
237
+	/**
238
+	 * Attempts to get the previous sibling
239
+	 *
240
+	 * @return AbstractNode
241
+	 * @throws ParentNotFoundException
242
+	 */
243
+	public function previousSibling()
244
+	{
245
+		if (is_null($this->parent)) {
246
+			throw new ParentNotFoundException('Parent is not set for this node.');
247
+		}
248
+
249
+		return $this->parent->previousChild($this->id);
250
+	}
251
+
252
+	/**
253
+	 * Gets the tag object of this node.
254
+	 *
255
+	 * @return Tag
256
+	 */
257
+	public function getTag()
258
+	{
259
+		return $this->tag;
260
+	}
261
+
262
+	/**
263
+	 * A wrapper method that simply calls the getAttribute method
264
+	 * on the tag of this node.
265
+	 *
266
+	 * @return array
267
+	 */
268
+	public function getAttributes()
269
+	{
270
+		$attributes = $this->tag->getAttributes();
271
+		foreach ($attributes as $name => $info) {
272
+			$attributes[$name] = $info['value'];
273
+		}
274
+
275
+		return $attributes;
276
+	}
277
+
278
+	/**
279
+	 * A wrapper method that simply calls the getAttribute method
280
+	 * on the tag of this node.
281
+	 *
282
+	 * @param string $key
283
+	 * @return mixed
284
+	 */
285
+	public function getAttribute($key)
286
+	{
287
+		$attribute = $this->tag->getAttribute($key);
288
+		if ( ! is_null($attribute)) {
289
+			$attribute = $attribute['value'];
290
+		}
291
+
292
+		return $attribute;
293
+	}
294
+
295
+	/**
296
+	 * A wrapper method that simply calls the setAttribute method
297
+	 * on the tag of this node.
298
+	 *
299
+	 * @param string $key
300
+	 * @param string $value
301
+	 * @return $this
302
+	 */
303
+	public function setAttribute($key, $value)
304
+	{
305
+		$this->tag->setAttribute($key, $value);
306
+
307
+		return $this;
308
+	}
309
+
310
+	/**
311
+	 * A wrapper method that simply calls the removeAttribute method
312
+	 * on the tag of this node.
313
+	 *
314
+	 * @param string $key
315
+	 * @return void
316
+	 */
317
+	public function removeAttribute($key)
318
+	{
319
+		$this->tag->removeAttribute($key);
320
+	}
321
+
322
+	/**
323
+	 * A wrapper method that simply calls the removeAllAttributes
324
+	 * method on the tag of this node.
325
+	 *
326
+	 * @return void
327
+	 */
328
+	public function removeAllAttributes()
329
+	{
330
+		$this->tag->removeAllAttributes();
331
+	}
332
+
333
+	/**
334
+	 * Function to locate a specific ancestor tag in the path to the root.
335
+	 *
336
+	 * @param  string $tag
337
+	 * @return AbstractNode
338
+	 * @throws ParentNotFoundException
339
+	 */
340
+	public function ancestorByTag($tag)
341
+	{
342
+		// Start by including ourselves in the comparison.
343
+		$node = $this;
344
+
345
+		while ( ! is_null($node)) {
346
+			if ($node->tag->name() == $tag) {
347
+				return $node;
348
+			}
349
+
350
+			$node = $node->getParent();
351
+		}
352
+
353
+		throw new ParentNotFoundException('Could not find an ancestor with "'.$tag.'" tag');
354
+	}
355
+
356
+	/**
357
+	 * Find elements by css selector
358
+	 *
359
+	 * @param string $selector
360
+	 * @param int $nth
361
+	 * @return array|AbstractNode
362
+	 */
363
+	public function find($selector, $nth = null)
364
+	{
365
+		$selector = new Selector($selector);
366
+		$nodes    = $selector->find($this);
367
+
368
+		if ( ! is_null($nth)) {
369
+			// return nth-element or array
370
+			if (isset($nodes[$nth])) {
371
+				return $nodes[$nth];
372
+			}
373
+
374
+			return null;
375
+		}
376
+
377
+		return $nodes;
378
+	}
379
+
380
+	/**
381
+	 * Gets the inner html of this node.
382
+	 *
383
+	 * @return string
384
+	 */
385
+	abstract public function innerHtml();
386
+
387
+	/**
388
+	 * Gets the html of this node, including it's own
389
+	 * tag.
390
+	 *
391
+	 * @return string
392
+	 */
393
+	abstract public function outerHtml();
394
+
395
+	/**
396
+	 * Gets the text of this node (if there is any text).
397
+	 *
398
+	 * @return string
399
+	 */
400
+	abstract public function text();
401
+
402
+	/**
403
+	 * Call this when something in the node tree has changed. Like a child has been added
404
+	 * or a parent has been changed.
405
+	 *
406
+	 * @return void
407
+	 */
408
+	abstract protected function clear();
409 409
 }
Please login to merge, or discard this patch.
src/PHPHtmlParser/StaticDom.php 1 patch
Indentation   +89 added lines, -89 removed lines patch added patch discarded remove patch
@@ -11,103 +11,103 @@
 block discarded – undo
11 11
 final class StaticDom
12 12
 {
13 13
 
14
-    private static $dom = null;
14
+	private static $dom = null;
15 15
 
16
-    /**
17
-     * Attempts to call the given method on the most recent created dom
18
-     * from bellow.
19
-     *
20
-     * @param string $method
21
-     * @param array $arguments
22
-     * @throws NotLoadedException
23
-     * @return mixed
24
-     */
25
-    public static function __callStatic($method, $arguments)
26
-    {
27
-        if (self::$dom instanceof Dom) {
28
-            return call_user_func_array([self::$dom, $method], $arguments);
29
-        } else {
30
-            throw new NotLoadedException('The dom is not loaded. Can not call a dom method.');
31
-        }
32
-    }
16
+	/**
17
+	 * Attempts to call the given method on the most recent created dom
18
+	 * from bellow.
19
+	 *
20
+	 * @param string $method
21
+	 * @param array $arguments
22
+	 * @throws NotLoadedException
23
+	 * @return mixed
24
+	 */
25
+	public static function __callStatic($method, $arguments)
26
+	{
27
+		if (self::$dom instanceof Dom) {
28
+			return call_user_func_array([self::$dom, $method], $arguments);
29
+		} else {
30
+			throw new NotLoadedException('The dom is not loaded. Can not call a dom method.');
31
+		}
32
+	}
33 33
 
34
-    /**
35
-     * Call this to mount the static facade. The facade allows you to use
36
-     * this object as a $className.
37
-     *
38
-     * @param string $className
39
-     * @param Dom $dom
40
-     * @return bool
41
-     */
42
-    public static function mount($className = 'Dom', Dom $dom = null)
43
-    {
44
-        if (class_exists($className)) {
45
-            return false;
46
-        }
47
-        class_alias(__CLASS__, $className);
48
-        if ($dom instanceof Dom) {
49
-            self::$dom = $dom;
50
-        }
34
+	/**
35
+	 * Call this to mount the static facade. The facade allows you to use
36
+	 * this object as a $className.
37
+	 *
38
+	 * @param string $className
39
+	 * @param Dom $dom
40
+	 * @return bool
41
+	 */
42
+	public static function mount($className = 'Dom', Dom $dom = null)
43
+	{
44
+		if (class_exists($className)) {
45
+			return false;
46
+		}
47
+		class_alias(__CLASS__, $className);
48
+		if ($dom instanceof Dom) {
49
+			self::$dom = $dom;
50
+		}
51 51
 
52
-        return true;
53
-    }
52
+		return true;
53
+	}
54 54
 
55
-    /**
56
-     * Creates a new dom object and calls load() on the
57
-     * new object.
58
-     *
59
-     * @param string $str
60
-     * @return $this
61
-     */
62
-    public static function load($str)
63
-    {
64
-        $dom       = new Dom;
65
-        self::$dom = $dom;
55
+	/**
56
+	 * Creates a new dom object and calls load() on the
57
+	 * new object.
58
+	 *
59
+	 * @param string $str
60
+	 * @return $this
61
+	 */
62
+	public static function load($str)
63
+	{
64
+		$dom       = new Dom;
65
+		self::$dom = $dom;
66 66
 
67
-        return $dom->load($str);
68
-    }
67
+		return $dom->load($str);
68
+	}
69 69
 
70
-    /**
71
-     * Creates a new dom object and calls loadFromFile() on the
72
-     * new object.
73
-     *
74
-     * @param string $file
75
-     * @return $this
76
-     */
77
-    public static function loadFromFile($file)
78
-    {
79
-        $dom       = new Dom;
80
-        self::$dom = $dom;
70
+	/**
71
+	 * Creates a new dom object and calls loadFromFile() on the
72
+	 * new object.
73
+	 *
74
+	 * @param string $file
75
+	 * @return $this
76
+	 */
77
+	public static function loadFromFile($file)
78
+	{
79
+		$dom       = new Dom;
80
+		self::$dom = $dom;
81 81
 
82
-        return $dom->loadFromFile($file);
83
-    }
82
+		return $dom->loadFromFile($file);
83
+	}
84 84
 
85
-    /**
86
-     * Creates a new dom object and calls loadFromUrl() on the
87
-     * new object.
88
-     *
89
-     * @param string $url
90
-     * @param array $options
91
-     * @param CurlInterface $curl
92
-     * @return $this
93
-     */
94
-    public static function loadFromUrl($url, $options = [], CurlInterface $curl = null)
95
-    {
96
-        $dom       = new Dom;
97
-        self::$dom = $dom;
98
-        if (is_null($curl)) {
99
-            // use the default curl interface
100
-            $curl = new Curl;
101
-        }
85
+	/**
86
+	 * Creates a new dom object and calls loadFromUrl() on the
87
+	 * new object.
88
+	 *
89
+	 * @param string $url
90
+	 * @param array $options
91
+	 * @param CurlInterface $curl
92
+	 * @return $this
93
+	 */
94
+	public static function loadFromUrl($url, $options = [], CurlInterface $curl = null)
95
+	{
96
+		$dom       = new Dom;
97
+		self::$dom = $dom;
98
+		if (is_null($curl)) {
99
+			// use the default curl interface
100
+			$curl = new Curl;
101
+		}
102 102
 
103
-        return $dom->loadFromUrl($url, $options, $curl);
104
-    }
103
+		return $dom->loadFromUrl($url, $options, $curl);
104
+	}
105 105
 
106
-    /**
107
-     * Sets the $dom variable to null.
108
-     */
109
-    public static function unload()
110
-    {
111
-        self::$dom = null;
112
-    }
106
+	/**
107
+	 * Sets the $dom variable to null.
108
+	 */
109
+	public static function unload()
110
+	{
111
+		self::$dom = null;
112
+	}
113 113
 }
Please login to merge, or discard this patch.