Feed.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Feed_Writer
  17. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id$
  20. */
  21. /**
  22. * @see Zend_Feed_Writer_Extension_RendererAbstract
  23. */
  24. require_once 'Zend/Feed/Writer/Extension/RendererAbstract.php';
  25. /**
  26. * @category Zend
  27. * @package Zend_Feed_Writer
  28. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  29. * @license http://framework.zend.com/license/new-bsd New BSD License
  30. */
  31. class Zend_Feed_Writer_Extension_Atom_Renderer_Feed
  32. extends Zend_Feed_Writer_Extension_RendererAbstract
  33. {
  34. /**
  35. * Render feed
  36. *
  37. * @return void
  38. */
  39. public function render()
  40. {
  41. /**
  42. * RSS 2.0 only. Used mainly to include Atom links and
  43. * Pubsubhubbub Hub endpoint URIs under the Atom namespace
  44. */
  45. if (strtolower($this->getType()) == 'atom') {
  46. return;
  47. }
  48. $this->_appendNamespaces();
  49. $this->_setFeedLinks($this->_dom, $this->_base);
  50. $this->_setHubs($this->_dom, $this->_base);
  51. }
  52. /**
  53. * Append namespaces to root element of feed
  54. *
  55. * @return void
  56. */
  57. protected function _appendNamespaces()
  58. {
  59. $this->getRootElement()->setAttribute('xmlns:atom',
  60. 'http://www.w3.org/2005/Atom');
  61. }
  62. /**
  63. * Set feed link elements
  64. *
  65. * @param DOMDocument $dom
  66. * @param DOMElement $root
  67. * @return void
  68. */
  69. protected function _setFeedLinks(DOMDocument $dom, DOMElement $root)
  70. {
  71. $flinks = $this->getDataContainer()->getFeedLinks();
  72. if(!$flinks || empty($flinks)) {
  73. return;
  74. }
  75. foreach ($flinks as $type => $href) {
  76. $mime = 'application/' . strtolower($type) . '+xml';
  77. $flink = $dom->createElement('atom:link');
  78. $root->appendChild($flink);
  79. $flink->setAttribute('rel', 'self');
  80. $flink->setAttribute('type', $mime);
  81. $flink->setAttribute('href', $href);
  82. }
  83. }
  84. /**
  85. * Set PuSH hubs
  86. *
  87. * @param DOMDocument $dom
  88. * @param DOMElement $root
  89. * @return void
  90. */
  91. protected function _setHubs(DOMDocument $dom, DOMElement $root)
  92. {
  93. $hubs = $this->getDataContainer()->getHubs();
  94. if (!$hubs || empty($hubs)) {
  95. return;
  96. }
  97. foreach ($hubs as $hubUrl) {
  98. $hub = $dom->createElement('atom:link');
  99. $hub->setAttribute('rel', 'hub');
  100. $hub->setAttribute('href', $hubUrl);
  101. $root->appendChild($hub);
  102. }
  103. }
  104. }