class Rss in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Rss.php \Zend\Feed\Reader\Entry\Rss
- 8.0 vendor/zendframework/zend-feed/src/Reader/Feed/Rss.php \Zend\Feed\Reader\Feed\Rss
- 8.0 vendor/zendframework/zend-feed/src/Writer/Renderer/Entry/Rss.php \Zend\Feed\Writer\Renderer\Entry\Rss
- 8.0 vendor/zendframework/zend-feed/src/Writer/Renderer/Feed/Rss.php \Zend\Feed\Writer\Renderer\Feed\Rss
- 8.0 core/modules/views/src/Plugin/views/style/Rss.php \Drupal\views\Plugin\views\style\Rss
- 8.0 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss
- 8.0 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss
- 8.0 core/modules/aggregator/src/Plugin/views/row/Rss.php \Drupal\aggregator\Plugin\views\row\Rss
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/Renderer/Entry/Rss.php \Zend\Feed\Writer\Renderer\Entry\Rss
Hierarchy
- class \Zend\Feed\Writer\Renderer\Entry\Rss extends \Renderer\AbstractRenderer implements \Renderer\RendererInterface
Expanded class hierarchy of Rss
1 string reference to 'Rss'
- Feed::export in vendor/
zendframework/ zend-feed/ src/ Writer/ Feed.php - Attempt to build and return the feed resulting from the data set
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ Renderer/ Entry/ Rss.php, line 21
Namespace
Zend\Feed\Writer\Renderer\EntryView source
class Rss extends Renderer\AbstractRenderer implements Renderer\RendererInterface {
/**
* Constructor
*
* @param Writer\Entry $container
*/
public function __construct(Writer\Entry $container) {
parent::__construct($container);
}
/**
* Render RSS entry
*
* @return Rss
*/
public function render() {
$this->dom = new DOMDocument('1.0', $this->container
->getEncoding());
$this->dom->formatOutput = true;
$this->dom->substituteEntities = false;
$entry = $this->dom
->createElement('item');
$this->dom
->appendChild($entry);
$this
->_setTitle($this->dom, $entry);
$this
->_setDescription($this->dom, $entry);
$this
->_setDateCreated($this->dom, $entry);
$this
->_setDateModified($this->dom, $entry);
$this
->_setLink($this->dom, $entry);
$this
->_setId($this->dom, $entry);
$this
->_setAuthors($this->dom, $entry);
$this
->_setEnclosure($this->dom, $entry);
$this
->_setCommentLink($this->dom, $entry);
$this
->_setCategories($this->dom, $entry);
foreach ($this->extensions as $ext) {
$ext
->setType($this
->getType());
$ext
->setRootElement($this
->getRootElement());
$ext
->setDOMDocument($this
->getDOMDocument(), $entry);
$ext
->render();
}
return $this;
}
/**
* Set entry title
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
* @throws Writer\Exception\InvalidArgumentException
*/
protected function _setTitle(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getDescription() && !$this
->getDataContainer()
->getTitle()) {
$message = 'RSS 2.0 entry elements SHOULD contain exactly one' . ' title element but a title has not been set. In addition, there' . ' is no description as required in the absence of a title.';
$exception = new Writer\Exception\InvalidArgumentException($message);
if (!$this->ignoreExceptions) {
throw $exception;
}
else {
$this->exceptions[] = $exception;
return;
}
}
$title = $dom
->createElement('title');
$root
->appendChild($title);
$text = $dom
->createTextNode($this
->getDataContainer()
->getTitle());
$title
->appendChild($text);
}
/**
* Set entry description
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
* @throws Writer\Exception\InvalidArgumentException
*/
protected function _setDescription(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getDescription() && !$this
->getDataContainer()
->getTitle()) {
$message = 'RSS 2.0 entry elements SHOULD contain exactly one' . ' description element but a description has not been set. In' . ' addition, there is no title element as required in the absence' . ' of a description.';
$exception = new Writer\Exception\InvalidArgumentException($message);
if (!$this->ignoreExceptions) {
throw $exception;
}
else {
$this->exceptions[] = $exception;
return;
}
}
if (!$this
->getDataContainer()
->getDescription()) {
return;
}
$subtitle = $dom
->createElement('description');
$root
->appendChild($subtitle);
$text = $dom
->createCDATASection($this
->getDataContainer()
->getDescription());
$subtitle
->appendChild($text);
}
/**
* Set date entry was last modified
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setDateModified(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getDateModified()) {
return;
}
$updated = $dom
->createElement('pubDate');
$root
->appendChild($updated);
$text = $dom
->createTextNode($this
->getDataContainer()
->getDateModified()
->format(DateTime::RSS));
$updated
->appendChild($text);
}
/**
* Set date entry was created
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setDateCreated(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getDateCreated()) {
return;
}
if (!$this
->getDataContainer()
->getDateModified()) {
$this
->getDataContainer()
->setDateModified($this
->getDataContainer()
->getDateCreated());
}
}
/**
* Set entry authors
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setAuthors(DOMDocument $dom, DOMElement $root) {
$authors = $this->container
->getAuthors();
if (!$authors || empty($authors)) {
return;
}
foreach ($authors as $data) {
$author = $this->dom
->createElement('author');
$name = $data['name'];
if (array_key_exists('email', $data)) {
$name = $data['email'] . ' (' . $data['name'] . ')';
}
$text = $dom
->createTextNode($name);
$author
->appendChild($text);
$root
->appendChild($author);
}
}
/**
* Set entry enclosure
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
* @throws Writer\Exception\InvalidArgumentException
*/
protected function _setEnclosure(DOMDocument $dom, DOMElement $root) {
$data = $this->container
->getEnclosure();
if (!$data || empty($data)) {
return;
}
if (!isset($data['type'])) {
$exception = new Writer\Exception\InvalidArgumentException('Enclosure "type" is not set');
if (!$this->ignoreExceptions) {
throw $exception;
}
else {
$this->exceptions[] = $exception;
return;
}
}
if (!isset($data['length'])) {
$exception = new Writer\Exception\InvalidArgumentException('Enclosure "length" is not set');
if (!$this->ignoreExceptions) {
throw $exception;
}
else {
$this->exceptions[] = $exception;
return;
}
}
if ((int) $data['length'] < 0 || !ctype_digit((string) $data['length'])) {
$exception = new Writer\Exception\InvalidArgumentException('Enclosure "length" must be an integer' . ' indicating the content\'s length in bytes');
if (!$this->ignoreExceptions) {
throw $exception;
}
else {
$this->exceptions[] = $exception;
return;
}
}
$enclosure = $this->dom
->createElement('enclosure');
$enclosure
->setAttribute('type', $data['type']);
$enclosure
->setAttribute('length', $data['length']);
$enclosure
->setAttribute('url', $data['uri']);
$root
->appendChild($enclosure);
}
/**
* Set link to entry
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setLink(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getLink()) {
return;
}
$link = $dom
->createElement('link');
$root
->appendChild($link);
$text = $dom
->createTextNode($this
->getDataContainer()
->getLink());
$link
->appendChild($text);
}
/**
* Set entry identifier
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setId(DOMDocument $dom, DOMElement $root) {
if (!$this
->getDataContainer()
->getId() && !$this
->getDataContainer()
->getLink()) {
return;
}
$id = $dom
->createElement('guid');
$root
->appendChild($id);
if (!$this
->getDataContainer()
->getId()) {
$this
->getDataContainer()
->setId($this
->getDataContainer()
->getLink());
}
$text = $dom
->createTextNode($this
->getDataContainer()
->getId());
$id
->appendChild($text);
if (!Uri::factory($this
->getDataContainer()
->getId())
->isValid()) {
$id
->setAttribute('isPermaLink', 'false');
}
}
/**
* Set link to entry comments
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setCommentLink(DOMDocument $dom, DOMElement $root) {
$link = $this
->getDataContainer()
->getCommentLink();
if (!$link) {
return;
}
$clink = $this->dom
->createElement('comments');
$text = $dom
->createTextNode($link);
$clink
->appendChild($text);
$root
->appendChild($clink);
}
/**
* Set entry categories
*
* @param DOMDocument $dom
* @param DOMElement $root
* @return void
*/
protected function _setCategories(DOMDocument $dom, DOMElement $root) {
$categories = $this
->getDataContainer()
->getCategories();
if (!$categories) {
return;
}
foreach ($categories as $cat) {
$category = $dom
->createElement('category');
if (isset($cat['scheme'])) {
$category
->setAttribute('domain', $cat['scheme']);
}
$text = $dom
->createCDATASection($cat['term']);
$category
->appendChild($text);
$root
->appendChild($category);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Rss:: |
public | function | Render RSS entry | |
Rss:: |
protected | function | Set entry authors | |
Rss:: |
protected | function | Set entry categories | |
Rss:: |
protected | function | Set link to entry comments | |
Rss:: |
protected | function | Set date entry was created | |
Rss:: |
protected | function | Set date entry was last modified | |
Rss:: |
protected | function | Set entry description | |
Rss:: |
protected | function | Set entry enclosure | |
Rss:: |
protected | function | Set entry identifier | |
Rss:: |
protected | function | Set link to entry | |
Rss:: |
protected | function | Set entry title | |
Rss:: |
public | function | Constructor |