publicrss.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. /**
  3. * Public RSS action class.
  4. *
  5. * PHP version 5
  6. *
  7. * @category Action
  8. * @package StatusNet
  9. * @author Evan Prodromou <evan@status.net>
  10. * @author Robin Millette <millette@status.net>
  11. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  12. * @link http://status.net/
  13. *
  14. * StatusNet - the distributed open-source microblogging tool
  15. * Copyright (C) 2008, 2009, StatusNet, Inc.
  16. *
  17. * This program is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Affero General Public License as published by
  19. * the Free Software Foundation, either version 3 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU Affero General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU Affero General Public License
  28. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. */
  30. if (!defined('STATUSNET') && !defined('LACONICA')) {
  31. exit(1);
  32. }
  33. require_once INSTALLDIR.'/lib/rssaction.php';
  34. /**
  35. * RSS feed for public timeline.
  36. *
  37. * Formatting of RSS handled by Rss10Action
  38. *
  39. * @category Action
  40. * @package StatusNet
  41. * @author Evan Prodromou <evan@status.net>
  42. * @author Robin Millette <millette@status.net>
  43. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  44. * @link http://status.net/
  45. */
  46. class PublicrssAction extends Rss10Action
  47. {
  48. /**
  49. * Read arguments and initialize members
  50. *
  51. * @param array $args Arguments from $_REQUEST
  52. * @return boolean success
  53. */
  54. function prepare($args)
  55. {
  56. parent::prepare($args);
  57. $this->notices = $this->getNotices($this->limit);
  58. return true;
  59. }
  60. /**
  61. * Initialization.
  62. *
  63. * @return boolean true
  64. */
  65. function init()
  66. {
  67. return true;
  68. }
  69. /**
  70. * Get notices
  71. *
  72. * @param integer $limit max number of notices to return
  73. *
  74. * @return array notices
  75. */
  76. function getNotices($limit=0)
  77. {
  78. $notices = array();
  79. $notice = Notice::publicStream(0, ($limit == 0) ? 48 : $limit);
  80. while ($notice->fetch()) {
  81. $notices[] = clone($notice);
  82. }
  83. return $notices;
  84. }
  85. /**
  86. * Get channel.
  87. *
  88. * @return array associative array on channel information
  89. */
  90. function getChannel()
  91. {
  92. $sitename = common_config('site', 'name');
  93. $c = array(
  94. 'url' => common_local_url('publicrss'),
  95. // TRANS: Public RSS feed title. %s is the StatusNet site name.
  96. 'title' => sprintf(_('%s public timeline'), $sitename),
  97. 'link' => common_local_url('public'),
  98. // TRANS: Public RSS feed description. %s is the StatusNet site name.
  99. 'description' => sprintf(_('%s updates from everyone.'), $sitename));
  100. return $c;
  101. }
  102. /**
  103. * Get image.
  104. *
  105. * @return nothing
  106. */
  107. function getImage()
  108. {
  109. // nop
  110. }
  111. function isReadOnly($args)
  112. {
  113. return true;
  114. }
  115. }