-
Notifications
You must be signed in to change notification settings - Fork 22
/
HtmlFilter.php
273 lines (240 loc) · 7.22 KB
/
HtmlFilter.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
<?php
/**
* PHP Speller
*
* @copyright 2015, Михаил Красильников <m.krasilnikov@yandex.ru>
* @author Михаил Красильников <m.krasilnikov@yandex.ru>
* @license http://opensource.org/licenses/MIT MIT
*/
declare(strict_types=1);
namespace Mekras\Speller\Source\Filter;
/**
* Filter replaces HTML tags with spaces.
*
* @since 1.3
*/
class HtmlFilter implements Filter
{
/**
* Attribute name context.
*/
public const CTX_ATTR_NAME = 'attr_name';
/**
* Attribute value context.
*/
public const CTX_ATTR_VALUE = 'attr_value';
/**
* Tag attributes context.
*/
public const CTX_TAG_ATTRS = 'tag_attrs';
/**
* Tag content context.
*/
public const CTX_TAG_CONTENT = 'tag_content';
/**
* Tag name context.
*/
public const CTX_TAG_NAME = 'tag_name';
/**
* Ignore content of these tags.
*
* @var string[]
*/
private static $ignoreTags = [
'script'
];
/**
* Attrs with text contents.
*
* @var string[]
*/
private static $textAttrs = [
'abbr',
'alt',
'content',
'label',
'placeholder',
'title'
];
/**
* Meta tag names with text content.
*
* @var string[]
*/
private static $textMetaTags = [
'description',
'keywords'
];
/**
* Filter string.
*
* @param string $string String to be filtered.
*
* @return string Filtered string.
*
* @since 1.3
*/
public function filter(string $string): string
{
$result = '';
$string = $this->filterEntities($string);
$string = $this->filterMetaTags($string);
// Current/last tag name
$tagName = null;
// Current/last attribute name
$attrName = null;
// Current context
$context = self::CTX_TAG_CONTENT;
// Expected context
$expecting = null;
// By default tag content treated as text.
$ignoreTagContent = false;
// By default attribute values NOT treated as text.
$ignoreAttrValue = true;
$length = mb_strlen($string);
for ($i = 0; $i < $length; $i++) {
$char = mb_substr($string, $i, 1);
switch (true) {
case '<' === $char:
$context = self::CTX_TAG_NAME;
$tagName = null;
$char = ' ';
break;
case '>' === $char:
if ($this->isIgnoredTag($tagName)) {
$ignoreTagContent = true;
} elseif ($tagName === null || '/' === $tagName[0]) {
$ignoreTagContent = false; // Restore to default state.
}
$context = self::CTX_TAG_CONTENT;
$expecting = null;
$char = ' ';
break;
case ' ' === $char:
case "\n" === $char:
case "\t" === $char:
switch ($context) {
case self::CTX_TAG_NAME:
$context = self::CTX_TAG_ATTRS;
break;
case self::CTX_ATTR_NAME:
$context = self::CTX_TAG_ATTRS;
break;
}
break;
case '=' === $char
&& (self::CTX_ATTR_NAME === $context || self::CTX_TAG_ATTRS === $context):
$expecting = self::CTX_ATTR_VALUE;
$char = ' ';
break;
case '"' === $char:
case "'" === $char:
switch (true) {
case self::CTX_ATTR_VALUE === $expecting:
$context = self::CTX_ATTR_VALUE;
if ($attrName !== null) {
$ignoreAttrValue = !in_array(strtolower($attrName), self::$textAttrs, true);
}
$expecting = null;
$char = ' ';
break;
case self::CTX_ATTR_VALUE === $context:
$context = self::CTX_TAG_ATTRS;
$char = ' ';
break;
default:
$char = ' ';
break;
}
break;
default:
switch ($context) {
case self::CTX_TAG_NAME:
$tagName .= $char;
$char = ' ';
break;
/** @noinspection PhpMissingBreakStatementInspection */
case self::CTX_TAG_ATTRS:
$context = self::CTX_ATTR_NAME;
$attrName = null;
// no break needed
case self::CTX_ATTR_NAME:
$attrName .= $char;
$char = ' ';
break;
case self::CTX_ATTR_VALUE:
if ($ignoreAttrValue) {
$char = ' ';
}
break;
case self::CTX_TAG_CONTENT:
if ($ignoreTagContent) {
$char = ' ';
}
break;
}
}
$result .= $char;
}
return $result;
}
/**
* Replace HTML entities.
*
* @param string $string
*
* @return string
*/
private function filterEntities(string $string): string
{
return preg_replace_callback(
'/&\w+;/',
function ($match) {
return str_repeat(' ', strlen($match[0]));
},
$string
);
}
/**
* Replace non-text meta tags.
*
* @param string $string
*
* @return string
*/
private function filterMetaTags(string $string): string
{
return preg_replace_callback(
'/<meta[^>]+(http-equiv\s*=|name\s*=\s*["\']?([^>"\']+))[^>]*>/i',
function ($match) {
if (
count($match) < 3
|| !in_array(strtolower($match[2]), self::$textMetaTags, true)
) {
return str_repeat(' ', strlen($match[0]));
}
return $match[0];
},
$string
);
}
/**
* Return true if $name is in the list of ignored tags.
*
* @param null|string $name Tag name.
*
* @return bool
*/
private function isIgnoredTag(?string $name): bool
{
if ($name === null) {
return false;
}
foreach (self::$ignoreTags as $tag) {
if (strcasecmp($tag, $name) === 0) {
return true;
}
}
return false;
}
}