publicrss.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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('GNUSOCIAL')) { exit(1); }
  31. /**
  32. * RSS feed for public timeline.
  33. *
  34. * Formatting of RSS handled by Rss10Action
  35. *
  36. * @category Action
  37. * @package StatusNet
  38. * @author Evan Prodromou <evan@status.net>
  39. * @author Robin Millette <millette@status.net>
  40. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  41. * @link http://status.net/
  42. */
  43. class PublicrssAction extends Rss10Action
  44. {
  45. /**
  46. * Get notices
  47. *
  48. * @param integer $limit max number of notices to return
  49. *
  50. * @return array notices
  51. */
  52. protected function getNotices()
  53. {
  54. $stream = Notice::publicStream(0, $this->limit);
  55. return $stream->fetchAll();
  56. }
  57. /**
  58. * Get channel.
  59. *
  60. * @return array associative array on channel information
  61. */
  62. function getChannel()
  63. {
  64. $sitename = common_config('site', 'name');
  65. $c = array(
  66. 'url' => common_local_url('publicrss'),
  67. // TRANS: Public RSS feed title. %s is the StatusNet site name.
  68. 'title' => sprintf(_('%s public timeline'), $sitename),
  69. 'link' => common_local_url('public'),
  70. // TRANS: Public RSS feed description. %s is the StatusNet site name.
  71. 'description' => sprintf(_('%s updates from everyone.'), $sitename));
  72. return $c;
  73. }
  74. /**
  75. * Get image.
  76. *
  77. * @return nothing
  78. */
  79. function getImage()
  80. {
  81. // nop
  82. }
  83. function isReadOnly($args)
  84. {
  85. return true;
  86. }
  87. }