Feed.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-2008 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-2008 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. public function render()
  35. {
  36. /**
  37. * RSS 2.0 only. Used mainly to include Atom links and
  38. * Pubsubhubbub Hub endpoint URIs under the Atom namespace
  39. */
  40. if (strtolower($this->getType()) == 'atom') {
  41. return;
  42. }
  43. $this->_appendNamespaces();
  44. $this->_setFeedLinks($this->_dom, $this->_base);
  45. $this->_setHubs($this->_dom, $this->_base);
  46. }
  47. protected function _appendNamespaces()
  48. {
  49. $this->getRootElement()->setAttribute('xmlns:atom',
  50. 'http://www.w3.org/2005/Atom');
  51. }
  52. protected function _setFeedLinks(DOMDocument $dom, DOMElement $root)
  53. {
  54. $flinks = $this->getDataContainer()->getFeedLinks();
  55. if(!$flinks || empty($flinks)) {
  56. return;
  57. }
  58. foreach ($flinks as $type => $href) {
  59. $mime = 'application/' . strtolower($type) . '+xml';
  60. $flink = $dom->createElement('atom:link');
  61. $root->appendChild($flink);
  62. $flink->setAttribute('rel', 'self');
  63. $flink->setAttribute('type', $mime);
  64. $flink->setAttribute('href', $href);
  65. }
  66. }
  67. protected function _setHubs(DOMDocument $dom, DOMElement $root)
  68. {
  69. $hubs = $this->getDataContainer()->getHubs();
  70. if (!$hubs || empty($hubs)) {
  71. return;
  72. }
  73. foreach ($hubs as $hubUrl) {
  74. $hub = $dom->createElement('atom:link');
  75. $hub->setAttribute('rel', 'hub');
  76. $hub->setAttribute('href', $hubUrl);
  77. $root->appendChild($hub);
  78. }
  79. }
  80. }