A modern, accurate HTML parser and serializer for PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
3.8 KiB

<?php
/** @license MIT
* Copyright 2017 , Dustin Wilson, J. King et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
namespace MensBeam\HTML;
use MensBeam\Mime\MimeType;
use MensBeam\Intl\Encoding;
/** The DOMParser interface allows authors to create new DOMDocument objects by parsing strings, as either HTML or XML. */
class DOMParser {
protected const TYPES = [
"text/html",
"text/xml",
"application/xml",
"application/xhtml+xml",
"image/svg+xml"
];
/** Parses `$string` using either the HTML or XML parser, according to `$type`, and returns the resulting `DOMDocument`.
*
* `$type` can be `"text/html"` (which will invoke the HTML parser), or any of `"text/xml"`, `"application/xml"`,
* `"application/xhtml+xml"`, or `"image/svg+xml"` (which will invoke the XML parser).
*
* For the XML parser, if `$string` cannot be parsed, then the returned `DOMDocument` will contain elements describing the resulting error.
*
* Note that script elements are not evaluated during parsing, and the resulting document's encoding will always be UTF-8.
*
* Values other than the above for `$type` will cause an `InvalidArgumentException` exception to be thrown.
*
* Since PHP strings are bytes, `$type` may include a `charset` parameter. If no parameter is is supplied UTF-8 is assumed.
*/
public function parseFromString(string $string, string $type): \DOMDocument {
// start by parsing the type
$t = MimeType::parseBytes($type);
if (!in_array($t->essence, self::TYPES)) {
throw new \InvalidArgumentException("\$type must be one of ".implode(", ", self::TYPES));
}
$charset = $t->params['charset'] ?? "UTF-8";
$encoding = Encoding::matchLabel($charset);
if (!$encoding) {
throw new \InvalidArgumentException("Specified charset is not supported");
}
$charset = $encoding['name'];
// parse the string as either HTML or XML
if ($t->essence === "text/html") {
// for HTML we invoke our parser
$config = new Parser\Config;
$config->encodingFallback = "UTF-8";
$config->encodingPrescanBytes = 0;
return Parser::parse($string, $charset, $config)->document;
} else {
// for XML we have to jump through a few hoops to make sure the DOMDocument doesn't make a hash of things, or try to detect encoding
$doc = new \DOMDocument();
try {
if ($charset !== "UTF-8") {
// transcode the string to UTF-8 where necessary
$decoder = Encoding::createDecoder($charset, $string, true, false);
$string = "";
while (strlen($c = $decoder->nextChar())) {
$string .= $c;
$string .= $decoder->asciiSpanNot("");
}
unset($decoder);
}
// add a byte-order mark if the string doesn't have one; this serves as an authoritative encoding specifier
if (substr($string, 0, 3) !== "\xEF\xBB\xBF") {
$string = "\xEF\xBB\xBF".$string;
}
// parse the document
if (!$doc->loadXML($string, \LIBXML_NONET | \LIBXML_BIGLINES | \LIBXML_COMPACT |\LIBXML_NOWARNING | \LIBXML_NOERROR)) {
throw new \Exception(libxml_get_last_error()->message);
}
} catch (\Exception $e) {
$doc->appendChild($doc->createElementNS("http://www.mozilla.org/newlayout/xml/parsererror.xml", "parserror"));
$doc->documentElement->appendChild($doc->createTextNode($e->getMessage()));
}
return $doc;
}
}
}