MediaWiki  1.27.2
XmlTypeCheck Class Reference

Public Member Functions

 __construct ($input, $filterCallback=null, $isFile=true, $options=[])
 Allow filtering an XML file. More...
 
 getRootElement ()
 Get the root element. More...
 
 XmlErrorHandler ($errno, $errstr)
 

Static Public Member Functions

static newFromFilename ($fname, $filterCallback=null)
 Alternative constructor: from filename. More...
 
static newFromString ($string, $filterCallback=null)
 Alternative constructor: from string. More...
 

Public Attributes

 $filterMatch = false
 Will be set to true if the optional element filter returned a match at some point. More...
 
mixed $filterMatchType = false
 Will contain the type of filter hit if the optional element filter returned a match at some point. More...
 
 $rootElement = ''
 Name of the document's root element, including any namespace as an expanded URL. More...
 
 $wellFormed = null
 Will be set to true or false to indicate whether the file is well-formed XML. More...
 

Protected Attributes

 $elementData = []
 A stack of strings containing the data of each xml element as it's processed. More...
 
 $elementDataContext = []
 A stack of element names and attributes, as we process them. More...
 
 $stackDepth = 0
 Current depth of the data stack. More...
 

Private Member Functions

 checkDTDIsSafe ($internalSubset)
 Check if the internal subset of the DTD is safe. More...
 
 DTDHandler (XMLReader $reader)
 Handle coming across a <!DOCTYPE declaration. More...
 
 elementClose ()
 
 elementData ($data)
 
 elementOpen ($name, $attribs)
 
 expandNS ($name, $namespaceURI)
 
 getAttributesArray (XMLReader $r)
 Get all of the attributes for an XMLReader's current node. More...
 
 parseDTD ($dtd)
 Parse DTD into parts. More...
 
 processingInstructionHandler ($target, $data)
 
 readNext (XMLReader $reader)
 
 validate ($reader)
 
 validateFromInput ($xml, $isFile)
 

Private Attributes

 $parserOptions
 Additional parsing options. More...
 

Detailed Description

Definition at line 28 of file XmlTypeCheck.php.

Constructor & Destructor Documentation

XmlTypeCheck::__construct (   $input,
  $filterCallback = null,
  $isFile = true,
  $options = [] 
)

Allow filtering an XML file.

Filters should return either true or a string to indicate something is wrong with the file. $this->filterMatch will store if the file failed validation (true = failed validation). $this->filterMatchType will contain the validation error. $this->wellFormed will contain whether the xml file is well-formed.

Note
If multiple filters are hit, only one of them will have the result stored in $this->filterMatchType.
Parameters
string$inputa filename or string containing the XML element
callable$filterCallback(optional) Function to call to do additional custom validity checks from the SAX element handler event. This gives you access to the element namespace, name, attributes, and text contents. Filter should return a truthy value describing the error.
bool$isFile(optional) indicates if the first parameter is a filename (default, true) or if it is a string (false)
array$optionslist of additional parsing options: processing_instruction_handler: Callback for xml_set_processing_instruction_handler external_dtd_handler: Callback for the url of external dtd subset dtd_handler: Callback given the full text of the <!DOCTYPE declaration. require_safe_dtd: Only allow non-recursive entities in internal dtd (default true)

Definition at line 107 of file XmlTypeCheck.php.

References $options, and validateFromInput().

Member Function Documentation

XmlTypeCheck::checkDTDIsSafe (   $internalSubset)
private

Check if the internal subset of the DTD is safe.

We whitelist an extremely restricted subset of DTD features.

Safe is defined as:

  • Only contains entity defintions (e.g. No <!ATLIST )
  • Entity definitions are not "system" entities
  • Entity definitions are not "parameter" (i.e. %) entities
  • Entity definitions do not reference other entites except & and quotes. Entity aliases (where the entity contains only another entity are allowed)
  • Entity references aren't overly long (>255 bytes).
  • <!ATTLIST svg xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink"> allowed if matched exactly for compatibility with graphviz
  • Comments.
Parameters
string$internalSubsetThe internal subset of the DTD
Returns
bool true if safe.

Definition at line 440 of file XmlTypeCheck.php.

References $res.

Referenced by DTDHandler().

XmlTypeCheck::DTDHandler ( XMLReader  $reader)
private

Handle coming across a <!DOCTYPE declaration.

Parameters
XMLReader$readerReader currently pointing at DOCTYPE node.

Definition at line 377 of file XmlTypeCheck.php.

References checkDTDIsSafe(), and parseDTD().

Referenced by validate().

XmlTypeCheck::elementClose ( )
private

Definition at line 324 of file XmlTypeCheck.php.

References $attribs, $name, elementData(), and list.

Referenced by validate().

XmlTypeCheck::elementData (   $data)
private
Parameters
$data

Definition at line 348 of file XmlTypeCheck.php.

Referenced by elementClose(), elementOpen(), and validate().

XmlTypeCheck::elementOpen (   $name,
  $attribs 
)
private
Parameters
$name
$attribs

Definition at line 316 of file XmlTypeCheck.php.

References $attribs, $name, and elementData().

Referenced by validate().

XmlTypeCheck::expandNS (   $name,
  $namespaceURI 
)
private
Parameters
$nameelement or attribute name, maybe with a full or short prefix
$namespaceURIthe namespaceURI
Returns
string the name prefixed with namespaceURI

Definition at line 303 of file XmlTypeCheck.php.

References $name.

Referenced by getAttributesArray(), and validate().

XmlTypeCheck::getAttributesArray ( XMLReader  $r)
private

Get all of the attributes for an XMLReader's current node.

Parameters
$rXMLReader
Returns
array of attributes

Definition at line 284 of file XmlTypeCheck.php.

References $name, and expandNS().

Referenced by validate().

XmlTypeCheck::getRootElement ( )

Get the root element.

Simple accessor to $rootElement

Returns
string

Definition at line 148 of file XmlTypeCheck.php.

References $rootElement.

static XmlTypeCheck::newFromFilename (   $fname,
  $filterCallback = null 
)
static

Alternative constructor: from filename.

Parameters
string$fnamethe filename of an XML document
callable$filterCallback(optional) Function to call to do additional custom validity checks from the SAX element handler event. This gives you access to the element namespace, name, and attributes, but not to text contents. Filter should return 'true' to toggle on $this->filterMatch
Returns
XmlTypeCheck

Definition at line 124 of file XmlTypeCheck.php.

References $fname, and true.

static XmlTypeCheck::newFromString (   $string,
  $filterCallback = null 
)
static

Alternative constructor: from string.

Parameters
string$stringa string containing an XML element
callable$filterCallback(optional) Function to call to do additional custom validity checks from the SAX element handler event. This gives you access to the element namespace, name, and attributes, but not to text contents. Filter should return 'true' to toggle on $this->filterMatch
Returns
XmlTypeCheck

Definition at line 139 of file XmlTypeCheck.php.

References false.

Referenced by XmlTypeCheckTest\testMalFormedXML(), and XmlTypeCheckTest\testWellFormedXML().

XmlTypeCheck::parseDTD (   $dtd)
private

Parse DTD into parts.

If there is an error parsing the dtd, sets wellFormed to false.

Parameters
$dtdstring
Returns
array Possibly containing keys publicid, systemid, type and internal.

Definition at line 463 of file XmlTypeCheck.php.

References $res, $value, and as.

Referenced by DTDHandler().

XmlTypeCheck::processingInstructionHandler (   $target,
  $data 
)
private
Parameters
$target
$data

Definition at line 357 of file XmlTypeCheck.php.

Referenced by validate().

XmlTypeCheck::readNext ( XMLReader  $reader)
private

Definition at line 183 of file XmlTypeCheck.php.

References $ret.

Referenced by validate().

XmlTypeCheck::validate (   $reader)
private
XmlTypeCheck::validateFromInput (   $xml,
  $isFile 
)
private
Parameters
string$fnamethe filename

Definition at line 155 of file XmlTypeCheck.php.

References $e, $s, and validate().

Referenced by __construct().

XmlTypeCheck::XmlErrorHandler (   $errno,
  $errstr 
)

Definition at line 190 of file XmlTypeCheck.php.

Member Data Documentation

XmlTypeCheck::$elementData = []
protected

A stack of strings containing the data of each xml element as it's processed.

Append data to the top string of the stack, then pop off the string and process it when the element is closed.

Definition at line 59 of file XmlTypeCheck.php.

XmlTypeCheck::$elementDataContext = []
protected

A stack of element names and attributes, as we process them.

Definition at line 64 of file XmlTypeCheck.php.

XmlTypeCheck::$filterMatch = false

Will be set to true if the optional element filter returned a match at some point.

Definition at line 39 of file XmlTypeCheck.php.

mixed XmlTypeCheck::$filterMatchType = false

Will contain the type of filter hit if the optional element filter returned a match at some point.

Definition at line 46 of file XmlTypeCheck.php.

XmlTypeCheck::$parserOptions
private
Initial value:
= [
'processing_instruction_handler' => ''

Additional parsing options.

Definition at line 74 of file XmlTypeCheck.php.

XmlTypeCheck::$rootElement = ''

Name of the document's root element, including any namespace as an expanded URL.

Definition at line 52 of file XmlTypeCheck.php.

Referenced by getRootElement().

XmlTypeCheck::$stackDepth = 0
protected

Current depth of the data stack.

Definition at line 69 of file XmlTypeCheck.php.

XmlTypeCheck::$wellFormed = null

Will be set to true or false to indicate whether the file is well-formed XML.

Note that this doesn't check schema validity.

Definition at line 33 of file XmlTypeCheck.php.


The documentation for this class was generated from the following file: