3 * Performs transformations of HTML by wrapping around libxml2 and working
4 * around its countless bugs.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
30 private $itemsToRemove = array();
31 private $elementsToFlatten = array();
32 protected $removeMedia = false;
37 * @param string $html Text to process
39 public function __construct( $html ) {
44 * Turns a chunk of HTML into a proper document
48 public static function wrapHTML( $html ) {
49 return '<!doctype html><html><head></head><body>' . $html . '</body></html>';
53 * Override this in descendant class to modify HTML after it has been converted from DOM tree
54 * @param string $html HTML to process
55 * @return string Processed HTML
57 protected function onHtmlReady( $html ) {
62 * @return DOMDocument DOM to manipulate
64 public function getDoc() {
66 $html = mb_convert_encoding( $this->html
, 'HTML-ENTITIES', 'UTF-8' );
68 // Workaround for bug that caused spaces before references
69 // to disappear during processing:
70 // https://bugzilla.wikimedia.org/show_bug.cgi?id=53086
72 // Please replace with a better fix if one can be found.
73 $html = str_replace( ' <', ' <', $html );
75 libxml_use_internal_errors( true );
76 $loader = libxml_disable_entity_loader();
77 $this->doc
= new DOMDocument();
78 $this->doc
->strictErrorChecking
= false;
79 $this->doc
->loadHTML( $html );
80 libxml_disable_entity_loader( $loader );
81 libxml_use_internal_errors( false );
82 $this->doc
->encoding
= 'UTF-8';
88 * Sets whether images/videos/sounds should be removed from output
91 public function setRemoveMedia( $flag = true ) {
92 $this->removeMedia
= $flag;
96 * Adds one or more selector of content to remove. A subset of CSS selector
97 * syntax is supported:
104 * @param array|string $selectors Selector(s) of stuff to remove
106 public function remove( $selectors ) {
107 $this->itemsToRemove
= array_merge( $this->itemsToRemove
, (array)$selectors );
111 * Adds one or more element name to the list to flatten (remove tag, but not its content)
112 * Can accept undelimited regexes
114 * Note this interface may fail in surprising unexpected ways due to usage of regexes,
115 * so should not be relied on for HTML markup security measures.
117 * @param array|string $elements Name(s) of tag(s) to flatten
119 public function flatten( $elements ) {
120 $this->elementsToFlatten
= array_merge( $this->elementsToFlatten
, (array)$elements );
124 * Instructs the formatter to flatten all tags
126 public function flattenAllTags() {
127 $this->flatten( '[?!]?[a-z0-9]+' );
131 * Removes content we've chosen to remove. The text of the removed elements can be
132 * extracted with the getText method.
133 * @return array of removed DOMElements
135 public function filterContent() {
136 wfProfileIn( __METHOD__
);
137 $removals = $this->parseItemsToRemove();
140 wfProfileOut( __METHOD__
);
144 $doc = $this->getDoc();
148 // You can't remove DOMNodes from a DOMNodeList as you're iterating
149 // over them in a foreach loop. It will seemingly leave the internal
150 // iterator on the foreach out of wack and results will be quite
151 // strange. Though, making a queue of items to remove seems to work.
152 $domElemsToRemove = array();
153 foreach ( $removals['TAG'] as $tagToRemove ) {
154 $tagToRemoveNodes = $doc->getElementsByTagName( $tagToRemove );
155 foreach ( $tagToRemoveNodes as $tagToRemoveNode ) {
156 if ( $tagToRemoveNode ) {
157 $domElemsToRemove[] = $tagToRemoveNode;
161 $removed = $this->removeElements( $domElemsToRemove );
163 // Elements with named IDs
164 $domElemsToRemove = array();
165 foreach ( $removals['ID'] as $itemToRemove ) {
166 $itemToRemoveNode = $doc->getElementById( $itemToRemove );
167 if ( $itemToRemoveNode ) {
168 $domElemsToRemove[] = $itemToRemoveNode;
171 $removed = array_merge( $removed, $this->removeElements( $domElemsToRemove ) );
174 $domElemsToRemove = array();
175 $xpath = new DOMXpath( $doc );
176 foreach ( $removals['CLASS'] as $classToRemove ) {
177 $elements = $xpath->query( '//*[contains(@class, "' . $classToRemove . '")]' );
179 /** @var $element DOMElement */
180 foreach ( $elements as $element ) {
181 $classes = $element->getAttribute( 'class' );
182 if ( preg_match( "/\b$classToRemove\b/", $classes ) && $element->parentNode
) {
183 $domElemsToRemove[] = $element;
187 $removed = array_merge( $removed, $this->removeElements( $domElemsToRemove ) );
189 // Tags with CSS Classes
190 foreach ( $removals['TAG_CLASS'] as $classToRemove ) {
191 $parts = explode( '.', $classToRemove );
193 $elements = $xpath->query(
194 '//' . $parts[0] . '[@class="' . $parts[1] . '"]'
196 $removed = array_merge( $removed, $this->removeElements( $elements ) );
199 wfProfileOut( __METHOD__
);
204 * Removes a list of elelments from DOMDocument
205 * @param array|DOMNodeList $elements
206 * @return array of removed elements
208 private function removeElements( $elements ) {
210 if ( $elements instanceof DOMNodeList
) {
212 foreach ( $elements as $element ) {
216 /** @var $element DOMElement */
217 foreach ( $list as $element ) {
218 if ( $element->parentNode
) {
219 $element->parentNode
->removeChild( $element );
226 * libxml in its usual pointlessness converts many chars to entities - this function
227 * perfoms a reverse conversion
228 * @param string $html
231 private function fixLibXML( $html ) {
232 wfProfileIn( __METHOD__
);
233 static $replacements;
234 if ( ! $replacements ) {
235 // We don't include rules like '"' => '&quot;' because entities had already been
236 // normalized by libxml. Using this function with input not sanitized by libxml is UNSAFE!
237 $replacements = new ReplacementArray( array(
238 '"' => '&quot;',
239 '&' => '&amp;',
240 '<' => '&lt;',
241 '>' => '&gt;',
244 $html = $replacements->replace( $html );
245 $html = mb_convert_encoding( $html, 'UTF-8', 'HTML-ENTITIES' );
246 wfProfileOut( __METHOD__
);
251 * Performs final transformations and returns resulting HTML. Note that if you want to call this
252 * both without an element and with an element you should call it without an element first. If you
253 * specify the $element in the method it'll change the underlying dom and you won't be able to get
256 * @param DOMElement|string|null $element ID of element to get HTML from or false to get it from the whole tree
257 * @return string Processed HTML
259 public function getText( $element = null ) {
260 wfProfileIn( __METHOD__
);
263 wfProfileIn( __METHOD__
. '-dom' );
264 if ( $element !== null && !( $element instanceof DOMElement
) ) {
265 $element = $this->doc
->getElementById( $element );
268 $body = $this->doc
->getElementsByTagName( 'body' )->item( 0 );
269 $nodesArray = array();
270 foreach ( $body->childNodes
as $node ) {
271 $nodesArray[] = $node;
273 foreach ( $nodesArray as $nodeArray ) {
274 $body->removeChild( $nodeArray );
276 $body->appendChild( $element );
278 $html = $this->doc
->saveHTML();
279 wfProfileOut( __METHOD__
. '-dom' );
281 wfProfileIn( __METHOD__
. '-fixes' );
282 $html = $this->fixLibXml( $html );
283 if ( wfIsWindows() ) {
284 // Cleanup for CRLF misprocessing of unknown origin on Windows.
286 // If this error continues in the future, please track it down in the
287 // XML code paths if possible and fix there.
288 $html = str_replace( ' ', '', $html );
290 $html = preg_replace( '/<!--.*?-->|^.*?<body>|<\/body>.*$/s', '', $html );
291 wfProfileOut( __METHOD__
. '-fixes' );
295 $html = $this->onHtmlReady( $html );
297 wfProfileIn( __METHOD__
. '-flatten' );
298 if ( $this->elementsToFlatten
) {
299 $elements = implode( '|', $this->elementsToFlatten
);
300 $html = preg_replace( "#</?($elements)\\b[^>]*>#is", '', $html );
302 wfProfileOut( __METHOD__
. '-flatten' );
304 wfProfileOut( __METHOD__
);
309 * @param string $selector CSS selector to parse
310 * @param string $type
311 * @param string $rawName
312 * @return bool Whether the selector was successfully recognised
314 protected function parseSelector( $selector, &$type, &$rawName ) {
315 if ( strpos( $selector, '.' ) === 0 ) {
317 $rawName = substr( $selector, 1 );
318 } elseif ( strpos( $selector, '#' ) === 0 ) {
320 $rawName = substr( $selector, 1 );
321 } elseif ( strpos( $selector, '.' ) !== 0 && strpos( $selector, '.' ) !== false ) {
323 $rawName = $selector;
324 } elseif ( strpos( $selector, '[' ) === false && strpos( $selector, ']' ) === false ) {
326 $rawName = $selector;
328 throw new MWException( __METHOD__
. "(): unrecognized selector '$selector'" );
335 * Transforms CSS selectors into an internal representation suitable for processing
338 protected function parseItemsToRemove() {
339 wfProfileIn( __METHOD__
);
344 'TAG_CLASS' => array(),
347 foreach ( $this->itemsToRemove
as $itemToRemove ) {
350 if ( $this->parseSelector( $itemToRemove, $type, $rawName ) ) {
351 $removals[$type][] = $rawName;
355 if ( $this->removeMedia
) {
356 $removals['TAG'][] = 'img';
357 $removals['TAG'][] = 'audio';
358 $removals['TAG'][] = 'video';
361 wfProfileOut( __METHOD__
);