This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/DomCrawler/Link.php

95 lines
2.1 KiB
PHP
Raw Normal View History

2010-04-15 13:41:42 +01:00
<?php
namespace Symfony\Components\DomCrawler;
/*
* This file is part of the symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Link represents an HTML link (an HTML a tag).
*
* @package Symfony
* @subpackage Components_DomCrawler
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Link
{
protected $node;
protected $method;
protected $host;
protected $path;
/**
* Constructor.
*
* @param \DOMNode $node A \DOMNode instance
* @param string $method The method to use for the link (get by default)
* @param string $host The base URI to use for absolute links (like http://localhost)
* @param string $path The base path for relative links (/ by default)
*
* @throws \LogicException if the node is not a link
*/
public function __construct(\DOMNode $node, $method = 'get', $host = null, $path = '/')
{
if ('a' != $node->nodeName)
{
throw new \LogicException(sprintf('Unable to click on a "%s" tag.', $node->nodeName));
}
$this->node = $node;
$this->method = $method;
$this->host = $host;
$this->path = empty($path) ? '/' : $path;
}
/**
* Gets the node associated with this link.
*
* @return \DOMNode A \DOMNode instance
*/
public function getNode()
{
return $this->node;
}
/**
* Gets the URI associated with this link.
*
* @param Boolean $absolute Wheter to return an absolute URI or not (this only works if a base URI has been provided)
*
* @return string The URI
*/
public function getUri($absolute = true)
{
$uri = $this->node->getAttribute('href');
if ($uri && '/' !== $uri[0])
{
$uri = $this->path.$uri;
}
if ($absolute && null !== $this->host)
{
return $this->host.$uri;
}
return $uri;
}
/**
* Gets the method associated with this link.
*
* @return string The method
*/
public function getMethod()
{
return $this->method;
}
}