1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\DomCrawler;
- use Symfony\Component\CssSelector\CssSelectorConverter;
- /**
- * Crawler eases navigation of a list of \DOMNode objects.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class Crawler extends \SplObjectStorage
- {
- /**
- * @var string The current URI
- */
- protected $uri;
- /**
- * @var string The default namespace prefix to be used with XPath and CSS expressions
- */
- private $defaultNamespacePrefix = 'default';
- /**
- * @var array A map of manually registered namespaces
- */
- private $namespaces = array();
- /**
- * @var string The base href value
- */
- private $baseHref;
- /**
- * @var \DOMDocument|null
- */
- private $document;
- /**
- * Whether the Crawler contains HTML or XML content (used when converting CSS to XPath).
- *
- * @var bool
- */
- private $isHtml = true;
- /**
- * Constructor.
- *
- * @param mixed $node A Node to use as the base for the crawling
- * @param string $currentUri The current URI
- * @param string $baseHref The base href value
- */
- public function __construct($node = null, $currentUri = null, $baseHref = null)
- {
- $this->uri = $currentUri;
- $this->baseHref = $baseHref ?: $currentUri;
- $this->add($node);
- }
- /**
- * Removes all the nodes.
- */
- public function clear()
- {
- parent::removeAll($this);
- $this->document = null;
- }
- /**
- * Adds a node to the current list of nodes.
- *
- * This method uses the appropriate specialized add*() method based
- * on the type of the argument.
- *
- * @param \DOMNodeList|\DOMNode|array|string|null $node A node
- *
- * @throws \InvalidArgumentException When node is not the expected type.
- */
- public function add($node)
- {
- if ($node instanceof \DOMNodeList) {
- $this->addNodeList($node);
- } elseif ($node instanceof \DOMNode) {
- $this->addNode($node);
- } elseif (is_array($node)) {
- $this->addNodes($node);
- } elseif (is_string($node)) {
- $this->addContent($node);
- } elseif (null !== $node) {
- throw new \InvalidArgumentException(sprintf('Expecting a DOMNodeList or DOMNode instance, an array, a string, or null, but got "%s".', is_object($node) ? get_class($node) : gettype($node)));
- }
- }
- /**
- * Adds HTML/XML content.
- *
- * If the charset is not set via the content type, it is assumed
- * to be ISO-8859-1, which is the default charset defined by the
- * HTTP 1.1 specification.
- *
- * @param string $content A string to parse as HTML/XML
- * @param null|string $type The content type of the string
- */
- public function addContent($content, $type = null)
- {
- if (empty($type)) {
- $type = 0 === strpos($content, '<?xml') ? 'application/xml' : 'text/html';
- }
- // DOM only for HTML/XML content
- if (!preg_match('/(x|ht)ml/i', $type, $xmlMatches)) {
- return;
- }
- $charset = null;
- if (false !== $pos = stripos($type, 'charset=')) {
- $charset = substr($type, $pos + 8);
- if (false !== $pos = strpos($charset, ';')) {
- $charset = substr($charset, 0, $pos);
- }
- }
- // http://www.w3.org/TR/encoding/#encodings
- // http://www.w3.org/TR/REC-xml/#NT-EncName
- if (null === $charset &&
- preg_match('/\<meta[^\>]+charset *= *["\']?([a-zA-Z\-0-9_:.]+)/i', $content, $matches)) {
- $charset = $matches[1];
- }
- if (null === $charset) {
- $charset = 'ISO-8859-1';
- }
- if ('x' === $xmlMatches[1]) {
- $this->addXmlContent($content, $charset);
- } else {
- $this->addHtmlContent($content, $charset);
- }
- }
- /**
- * Adds an HTML content to the list of nodes.
- *
- * The libxml errors are disabled when the content is parsed.
- *
- * If you want to get parsing errors, be sure to enable
- * internal errors via libxml_use_internal_errors(true)
- * and then, get the errors via libxml_get_errors(). Be
- * sure to clear errors with libxml_clear_errors() afterward.
- *
- * @param string $content The HTML content
- * @param string $charset The charset
- */
- public function addHtmlContent($content, $charset = 'UTF-8')
- {
- $internalErrors = libxml_use_internal_errors(true);
- $disableEntities = libxml_disable_entity_loader(true);
- $dom = new \DOMDocument('1.0', $charset);
- $dom->validateOnParse = true;
- set_error_handler(function () { throw new \Exception(); });
- try {
- // Convert charset to HTML-entities to work around bugs in DOMDocument::loadHTML()
- $content = mb_convert_encoding($content, 'HTML-ENTITIES', $charset);
- } catch (\Exception $e) {
- }
- restore_error_handler();
- if ('' !== trim($content)) {
- @$dom->loadHTML($content);
- }
- libxml_use_internal_errors($internalErrors);
- libxml_disable_entity_loader($disableEntities);
- $this->addDocument($dom);
- $base = $this->filterRelativeXPath('descendant-or-self::base')->extract(array('href'));
- $baseHref = current($base);
- if (count($base) && !empty($baseHref)) {
- if ($this->baseHref) {
- $linkNode = $dom->createElement('a');
- $linkNode->setAttribute('href', $baseHref);
- $link = new Link($linkNode, $this->baseHref);
- $this->baseHref = $link->getUri();
- } else {
- $this->baseHref = $baseHref;
- }
- }
- }
- /**
- * Adds an XML content to the list of nodes.
- *
- * The libxml errors are disabled when the content is parsed.
- *
- * If you want to get parsing errors, be sure to enable
- * internal errors via libxml_use_internal_errors(true)
- * and then, get the errors via libxml_get_errors(). Be
- * sure to clear errors with libxml_clear_errors() afterward.
- *
- * @param string $content The XML content
- * @param string $charset The charset
- * @param int $options Bitwise OR of the libxml option constants
- * LIBXML_PARSEHUGE is dangerous, see
- * http://symfony.com/blog/security-release-symfony-2-0-17-released
- */
- public function addXmlContent($content, $charset = 'UTF-8', $options = LIBXML_NONET)
- {
- // remove the default namespace if it's the only namespace to make XPath expressions simpler
- if (!preg_match('/xmlns:/', $content)) {
- $content = str_replace('xmlns', 'ns', $content);
- }
- $internalErrors = libxml_use_internal_errors(true);
- $disableEntities = libxml_disable_entity_loader(true);
- $dom = new \DOMDocument('1.0', $charset);
- $dom->validateOnParse = true;
- if ('' !== trim($content)) {
- @$dom->loadXML($content, $options);
- }
- libxml_use_internal_errors($internalErrors);
- libxml_disable_entity_loader($disableEntities);
- $this->addDocument($dom);
- $this->isHtml = false;
- }
- /**
- * Adds a \DOMDocument to the list of nodes.
- *
- * @param \DOMDocument $dom A \DOMDocument instance
- */
- public function addDocument(\DOMDocument $dom)
- {
- if ($dom->documentElement) {
- $this->addNode($dom->documentElement);
- }
- }
- /**
- * Adds a \DOMNodeList to the list of nodes.
- *
- * @param \DOMNodeList $nodes A \DOMNodeList instance
- */
- public function addNodeList(\DOMNodeList $nodes)
- {
- foreach ($nodes as $node) {
- if ($node instanceof \DOMNode) {
- $this->addNode($node);
- }
- }
- }
- /**
- * Adds an array of \DOMNode instances to the list of nodes.
- *
- * @param \DOMNode[] $nodes An array of \DOMNode instances
- */
- public function addNodes(array $nodes)
- {
- foreach ($nodes as $node) {
- $this->add($node);
- }
- }
- /**
- * Adds a \DOMNode instance to the list of nodes.
- *
- * @param \DOMNode $node A \DOMNode instance
- */
- public function addNode(\DOMNode $node)
- {
- if ($node instanceof \DOMDocument) {
- $node = $node->documentElement;
- }
- if (null !== $this->document && $this->document !== $node->ownerDocument) {
- @trigger_error('Attaching DOM nodes from multiple documents in a Crawler is deprecated as of 2.8 and will be forbidden in 3.0.', E_USER_DEPRECATED);
- }
- if (null === $this->document) {
- $this->document = $node->ownerDocument;
- }
- parent::attach($node);
- }
- // Serializing and unserializing a crawler creates DOM objects in a corrupted state. DOM elements are not properly serializable.
- public function unserialize($serialized)
- {
- throw new \BadMethodCallException('A Crawler cannot be serialized.');
- }
- public function serialize()
- {
- throw new \BadMethodCallException('A Crawler cannot be serialized.');
- }
- /**
- * Returns a node given its position in the node list.
- *
- * @param int $position The position
- *
- * @return self
- */
- public function eq($position)
- {
- foreach ($this as $i => $node) {
- if ($i == $position) {
- return $this->createSubCrawler($node);
- }
- }
- return $this->createSubCrawler(null);
- }
- /**
- * Calls an anonymous function on each node of the list.
- *
- * The anonymous function receives the position and the node wrapped
- * in a Crawler instance as arguments.
- *
- * Example:
- *
- * $crawler->filter('h1')->each(function ($node, $i) {
- * return $node->text();
- * });
- *
- * @param \Closure $closure An anonymous function
- *
- * @return array An array of values returned by the anonymous function
- */
- public function each(\Closure $closure)
- {
- $data = array();
- foreach ($this as $i => $node) {
- $data[] = $closure($this->createSubCrawler($node), $i);
- }
- return $data;
- }
- /**
- * Slices the list of nodes by $offset and $length.
- *
- * @param int $offset
- * @param int $length
- *
- * @return self
- */
- public function slice($offset = 0, $length = -1)
- {
- return $this->createSubCrawler(iterator_to_array(new \LimitIterator($this, $offset, $length)));
- }
- /**
- * Reduces the list of nodes by calling an anonymous function.
- *
- * To remove a node from the list, the anonymous function must return false.
- *
- * @param \Closure $closure An anonymous function
- *
- * @return self
- */
- public function reduce(\Closure $closure)
- {
- $nodes = array();
- foreach ($this as $i => $node) {
- if (false !== $closure($this->createSubCrawler($node), $i)) {
- $nodes[] = $node;
- }
- }
- return $this->createSubCrawler($nodes);
- }
- /**
- * Returns the first node of the current selection.
- *
- * @return self
- */
- public function first()
- {
- return $this->eq(0);
- }
- /**
- * Returns the last node of the current selection.
- *
- * @return self
- */
- public function last()
- {
- return $this->eq(count($this) - 1);
- }
- /**
- * Returns the siblings nodes of the current selection.
- *
- * @return self
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function siblings()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0)->parentNode->firstChild));
- }
- /**
- * Returns the next siblings nodes of the current selection.
- *
- * @return self
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function nextAll()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0)));
- }
- /**
- * Returns the previous sibling nodes of the current selection.
- *
- * @return self
- *
- * @throws \InvalidArgumentException
- */
- public function previousAll()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0), 'previousSibling'));
- }
- /**
- * Returns the parents nodes of the current selection.
- *
- * @return self
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function parents()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- $nodes = array();
- while ($node = $node->parentNode) {
- if (XML_ELEMENT_NODE === $node->nodeType) {
- $nodes[] = $node;
- }
- }
- return $this->createSubCrawler($nodes);
- }
- /**
- * Returns the children nodes of the current selection.
- *
- * @return self
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function children()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0)->firstChild;
- return $this->createSubCrawler($node ? $this->sibling($node) : array());
- }
- /**
- * Returns the attribute value of the first node of the list.
- *
- * @param string $attribute The attribute name
- *
- * @return string|null The attribute value or null if the attribute does not exist
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function attr($attribute)
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- return $node->hasAttribute($attribute) ? $node->getAttribute($attribute) : null;
- }
- /**
- * Returns the node name of the first node of the list.
- *
- * @return string The node name
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function nodeName()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->getNode(0)->nodeName;
- }
- /**
- * Returns the node value of the first node of the list.
- *
- * @return string The node value
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function text()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->getNode(0)->nodeValue;
- }
- /**
- * Returns the first node of the list as HTML.
- *
- * @return string The node html
- *
- * @throws \InvalidArgumentException When current node is empty
- */
- public function html()
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $html = '';
- foreach ($this->getNode(0)->childNodes as $child) {
- $html .= $child->ownerDocument->saveHTML($child);
- }
- return $html;
- }
- /**
- * Extracts information from the list of nodes.
- *
- * You can extract attributes or/and the node value (_text).
- *
- * Example:
- *
- * $crawler->filter('h1 a')->extract(array('_text', 'href'));
- *
- * @param array $attributes An array of attributes
- *
- * @return array An array of extracted values
- */
- public function extract($attributes)
- {
- $attributes = (array) $attributes;
- $count = count($attributes);
- $data = array();
- foreach ($this as $node) {
- $elements = array();
- foreach ($attributes as $attribute) {
- if ('_text' === $attribute) {
- $elements[] = $node->nodeValue;
- } else {
- $elements[] = $node->getAttribute($attribute);
- }
- }
- $data[] = $count > 1 ? $elements : $elements[0];
- }
- return $data;
- }
- /**
- * Filters the list of nodes with an XPath expression.
- *
- * The XPath expression is evaluated in the context of the crawler, which
- * is considered as a fake parent of the elements inside it.
- * This means that a child selector "div" or "./div" will match only
- * the div elements of the current crawler, not their children.
- *
- * @param string $xpath An XPath expression
- *
- * @return self
- */
- public function filterXPath($xpath)
- {
- $xpath = $this->relativize($xpath);
- // If we dropped all expressions in the XPath while preparing it, there would be no match
- if ('' === $xpath) {
- return $this->createSubCrawler(null);
- }
- return $this->filterRelativeXPath($xpath);
- }
- /**
- * Filters the list of nodes with a CSS selector.
- *
- * This method only works if you have installed the CssSelector Symfony Component.
- *
- * @param string $selector A CSS selector
- *
- * @return self
- *
- * @throws \RuntimeException if the CssSelector Component is not available
- */
- public function filter($selector)
- {
- if (!class_exists('Symfony\\Component\\CssSelector\\CssSelectorConverter')) {
- throw new \RuntimeException('Unable to filter with a CSS selector as the Symfony CssSelector 2.8+ is not installed (you can use filterXPath instead).');
- }
- $converter = new CssSelectorConverter($this->isHtml);
- // The CssSelector already prefixes the selector with descendant-or-self::
- return $this->filterRelativeXPath($converter->toXPath($selector));
- }
- /**
- * Selects links by name or alt value for clickable images.
- *
- * @param string $value The link text
- *
- * @return self
- */
- public function selectLink($value)
- {
- $xpath = sprintf('descendant-or-self::a[contains(concat(\' \', normalize-space(string(.)), \' \'), %s) ', static::xpathLiteral(' '.$value.' ')).
- sprintf('or ./img[contains(concat(\' \', normalize-space(string(@alt)), \' \'), %s)]]', static::xpathLiteral(' '.$value.' '));
- return $this->filterRelativeXPath($xpath);
- }
- /**
- * Selects a button by name or alt value for images.
- *
- * @param string $value The button text
- *
- * @return self
- */
- public function selectButton($value)
- {
- $translate = 'translate(@type, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "abcdefghijklmnopqrstuvwxyz")';
- $xpath = sprintf('descendant-or-self::input[((contains(%s, "submit") or contains(%s, "button")) and contains(concat(\' \', normalize-space(string(@value)), \' \'), %s)) ', $translate, $translate, static::xpathLiteral(' '.$value.' ')).
- sprintf('or (contains(%s, "image") and contains(concat(\' \', normalize-space(string(@alt)), \' \'), %s)) or @id=%s or @name=%s] ', $translate, static::xpathLiteral(' '.$value.' '), static::xpathLiteral($value), static::xpathLiteral($value)).
- sprintf('| descendant-or-self::button[contains(concat(\' \', normalize-space(string(.)), \' \'), %s) or @id=%s or @name=%s]', static::xpathLiteral(' '.$value.' '), static::xpathLiteral($value), static::xpathLiteral($value));
- return $this->filterRelativeXPath($xpath);
- }
- /**
- * Returns a Link object for the first node in the list.
- *
- * @param string $method The method for the link (get by default)
- *
- * @return Link A Link instance
- *
- * @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
- */
- public function link($method = 'get')
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The selected node should be instance of DOMElement, got "%s".', get_class($node)));
- }
- return new Link($node, $this->baseHref, $method);
- }
- /**
- * Returns an array of Link objects for the nodes in the list.
- *
- * @return Link[] An array of Link instances
- *
- * @throws \InvalidArgumentException If the current node list contains non-DOMElement instances
- */
- public function links()
- {
- $links = array();
- foreach ($this as $node) {
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The current node list should contain only DOMElement instances, "%s" found.', get_class($node)));
- }
- $links[] = new Link($node, $this->baseHref, 'get');
- }
- return $links;
- }
- /**
- * Returns a Form object for the first node in the list.
- *
- * @param array $values An array of values for the form fields
- * @param string $method The method for the form
- *
- * @return Form A Form instance
- *
- * @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
- */
- public function form(array $values = null, $method = null)
- {
- if (!count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The selected node should be instance of DOMElement, got "%s".', get_class($node)));
- }
- $form = new Form($node, $this->uri, $method, $this->baseHref);
- if (null !== $values) {
- $form->setValues($values);
- }
- return $form;
- }
- /**
- * Overloads a default namespace prefix to be used with XPath and CSS expressions.
- *
- * @param string $prefix
- */
- public function setDefaultNamespacePrefix($prefix)
- {
- $this->defaultNamespacePrefix = $prefix;
- }
- /**
- * @param string $prefix
- * @param string $namespace
- */
- public function registerNamespace($prefix, $namespace)
- {
- $this->namespaces[$prefix] = $namespace;
- }
- /**
- * Converts string for XPath expressions.
- *
- * Escaped characters are: quotes (") and apostrophe (').
- *
- * Examples:
- * <code>
- * echo Crawler::xpathLiteral('foo " bar');
- * //prints 'foo " bar'
- *
- * echo Crawler::xpathLiteral("foo ' bar");
- * //prints "foo ' bar"
- *
- * echo Crawler::xpathLiteral('a\'b"c');
- * //prints concat('a', "'", 'b"c')
- * </code>
- *
- * @param string $s String to be escaped
- *
- * @return string Converted string
- */
- public static function xpathLiteral($s)
- {
- if (false === strpos($s, "'")) {
- return sprintf("'%s'", $s);
- }
- if (false === strpos($s, '"')) {
- return sprintf('"%s"', $s);
- }
- $string = $s;
- $parts = array();
- while (true) {
- if (false !== $pos = strpos($string, "'")) {
- $parts[] = sprintf("'%s'", substr($string, 0, $pos));
- $parts[] = "\"'\"";
- $string = substr($string, $pos + 1);
- } else {
- $parts[] = "'$string'";
- break;
- }
- }
- return sprintf('concat(%s)', implode(', ', $parts));
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function attach($object, $data = null)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::attach($object, $data);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function detach($object)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::detach($object);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function contains($object)
- {
- $this->triggerDeprecation(__METHOD__);
- return parent::contains($object);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function addAll($storage)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::addAll($storage);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function removeAll($storage)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::removeAll($storage);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function removeAllExcept($storage)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::removeAllExcept($storage);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function getInfo()
- {
- $this->triggerDeprecation(__METHOD__);
- return parent::getInfo();
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function setInfo($data)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::setInfo($data);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function offsetExists($object)
- {
- $this->triggerDeprecation(__METHOD__);
- return parent::offsetExists($object);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function offsetSet($object, $data = null)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::offsetSet($object, $data);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function offsetUnset($object)
- {
- $this->triggerDeprecation(__METHOD__);
- parent::offsetUnset($object);
- }
- /**
- * @deprecated Using the SplObjectStorage API on the Crawler is deprecated as of 2.8 and will be removed in 3.0.
- */
- public function offsetGet($object)
- {
- $this->triggerDeprecation(__METHOD__);
- return parent::offsetGet($object);
- }
- /**
- * Filters the list of nodes with an XPath expression.
- *
- * The XPath expression should already be processed to apply it in the context of each node.
- *
- * @param string $xpath
- *
- * @return self
- */
- private function filterRelativeXPath($xpath)
- {
- $prefixes = $this->findNamespacePrefixes($xpath);
- $crawler = $this->createSubCrawler(null);
- foreach ($this as $node) {
- $domxpath = $this->createDOMXPath($node->ownerDocument, $prefixes);
- $crawler->add($domxpath->query($xpath, $node));
- }
- return $crawler;
- }
- /**
- * Make the XPath relative to the current context.
- *
- * The returned XPath will match elements matching the XPath inside the current crawler
- * when running in the context of a node of the crawler.
- *
- * @param string $xpath
- *
- * @return string
- */
- private function relativize($xpath)
- {
- $expressions = array();
- // An expression which will never match to replace expressions which cannot match in the crawler
- // We cannot simply drop
- $nonMatchingExpression = 'a[name() = "b"]';
- $xpathLen = strlen($xpath);
- $openedBrackets = 0;
- $startPosition = strspn($xpath, " \t\n\r\0\x0B");
- for ($i = $startPosition; $i <= $xpathLen; ++$i) {
- $i += strcspn($xpath, '"\'[]|', $i);
- if ($i < $xpathLen) {
- switch ($xpath[$i]) {
- case '"':
- case "'":
- if (false === $i = strpos($xpath, $xpath[$i], $i + 1)) {
- return $xpath; // The XPath expression is invalid
- }
- continue 2;
- case '[':
- ++$openedBrackets;
- continue 2;
- case ']':
- --$openedBrackets;
- continue 2;
- }
- }
- if ($openedBrackets) {
- continue;
- }
- if ($startPosition < $xpathLen && '(' === $xpath[$startPosition]) {
- // If the union is inside some braces, we need to preserve the opening braces and apply
- // the change only inside it.
- $j = 1 + strspn($xpath, "( \t\n\r\0\x0B", $startPosition + 1);
- $parenthesis = substr($xpath, $startPosition, $j);
- $startPosition += $j;
- } else {
- $parenthesis = '';
- }
- $expression = rtrim(substr($xpath, $startPosition, $i - $startPosition));
- // BC for Symfony 2.4 and lower were elements were adding in a fake _root parent
- if (0 === strpos($expression, '/_root/')) {
- @trigger_error('XPath expressions referencing the fake root node are deprecated since version 2.8 and will be unsupported in 3.0. Please use "./" instead of "/_root/".', E_USER_DEPRECATED);
- $expression = './'.substr($expression, 7);
- } elseif (0 === strpos($expression, 'self::*/')) {
- $expression = './'.substr($expression, 8);
- }
- // add prefix before absolute element selector
- if ('' === $expression) {
- $expression = $nonMatchingExpression;
- } elseif (0 === strpos($expression, '//')) {
- $expression = 'descendant-or-self::'.substr($expression, 2);
- } elseif (0 === strpos($expression, './/')) {
- $expression = 'descendant-or-self::'.substr($expression, 3);
- } elseif (0 === strpos($expression, './')) {
- $expression = 'self::'.substr($expression, 2);
- } elseif (0 === strpos($expression, 'child::')) {
- $expression = 'self::'.substr($expression, 7);
- } elseif ('/' === $expression[0] || 0 === strpos($expression, 'self::')) {
- // the only direct child in Symfony 2.4 and lower is _root, which is already handled previously
- // so let's drop the expression entirely
- $expression = $nonMatchingExpression;
- } elseif ('.' === $expression[0]) {
- // '.' is the fake root element in Symfony 2.4 and lower, which is excluded from results
- $expression = $nonMatchingExpression;
- } elseif (0 === strpos($expression, 'descendant::')) {
- $expression = 'descendant-or-self::'.substr($expression, 12);
- } elseif (preg_match('/^(ancestor|ancestor-or-self|attribute|following|following-sibling|namespace|parent|preceding|preceding-sibling)::/', $expression)) {
- // the fake root has no parent, preceding or following nodes and also no attributes (even no namespace attributes)
- $expression = $nonMatchingExpression;
- } elseif (0 !== strpos($expression, 'descendant-or-self::')) {
- $expression = 'self::'.$expression;
- }
- $expressions[] = $parenthesis.$expression;
- if ($i === $xpathLen) {
- return implode(' | ', $expressions);
- }
- $i += strspn($xpath, " \t\n\r\0\x0B", $i + 1);
- $startPosition = $i + 1;
- }
- return $xpath; // The XPath expression is invalid
- }
- /**
- * @param int $position
- *
- * @return \DOMElement|null
- */
- public function getNode($position)
- {
- foreach ($this as $i => $node) {
- if ($i == $position) {
- return $node;
- }
- }
- }
- /**
- * @param \DOMElement $node
- * @param string $siblingDir
- *
- * @return array
- */
- protected function sibling($node, $siblingDir = 'nextSibling')
- {
- $nodes = array();
- do {
- if ($node !== $this->getNode(0) && $node->nodeType === 1) {
- $nodes[] = $node;
- }
- } while ($node = $node->$siblingDir);
- return $nodes;
- }
- /**
- * @param \DOMDocument $document
- * @param array $prefixes
- *
- * @return \DOMXPath
- *
- * @throws \InvalidArgumentException
- */
- private function createDOMXPath(\DOMDocument $document, array $prefixes = array())
- {
- $domxpath = new \DOMXPath($document);
- foreach ($prefixes as $prefix) {
- $namespace = $this->discoverNamespace($domxpath, $prefix);
- if (null !== $namespace) {
- $domxpath->registerNamespace($prefix, $namespace);
- }
- }
- return $domxpath;
- }
- /**
- * @param \DOMXPath $domxpath
- * @param string $prefix
- *
- * @return string
- *
- * @throws \InvalidArgumentException
- */
- private function discoverNamespace(\DOMXPath $domxpath, $prefix)
- {
- if (isset($this->namespaces[$prefix])) {
- return $this->namespaces[$prefix];
- }
- // ask for one namespace, otherwise we'd get a collection with an item for each node
- $namespaces = $domxpath->query(sprintf('(//namespace::*[name()="%s"])[last()]', $this->defaultNamespacePrefix === $prefix ? '' : $prefix));
- if ($node = $namespaces->item(0)) {
- return $node->nodeValue;
- }
- }
- /**
- * @param string $xpath
- *
- * @return array
- */
- private function findNamespacePrefixes($xpath)
- {
- if (preg_match_all('/(?P<prefix>[a-z_][a-z_0-9\-\.]*+):[^"\/:]/i', $xpath, $matches)) {
- return array_unique($matches['prefix']);
- }
- return array();
- }
- /**
- * Creates a crawler for some subnodes.
- *
- * @param \DOMElement|\DOMElement[]|\DOMNodeList|null $nodes
- *
- * @return static
- */
- private function createSubCrawler($nodes)
- {
- $crawler = new static($nodes, $this->uri, $this->baseHref);
- $crawler->isHtml = $this->isHtml;
- $crawler->document = $this->document;
- $crawler->namespaces = $this->namespaces;
- return $crawler;
- }
- private function triggerDeprecation($methodName, $useTrace = false)
- {
- if ($useTrace || defined('HHVM_VERSION')) {
- if (PHP_VERSION_ID >= 50400) {
- $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
- } else {
- $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
- }
- // The SplObjectStorage class performs calls to its own methods. These
- // method calls must not lead to triggered deprecation notices.
- if (isset($trace[2]['class']) && 'SplObjectStorage' === $trace[2]['class']) {
- return;
- }
- }
- @trigger_error('The '.$methodName.' method is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
- }
- }
|