bookmarksrss.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. /**
  3. * RSS feed for user bookmarks 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 user bookmarks action class.
  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. * @author Zach Copley <zach@status.net>
  44. * @author Stephane Berube <chimo@chromic.org> (modified 'favoritesrss.php' to show bookmarks instead)
  45. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  46. * @link http://status.net/
  47. */
  48. class BookmarksrssAction extends Rss10Action
  49. {
  50. /** The user whose bookmarks to display */
  51. var $user = null;
  52. /**
  53. * Find the user to display by supplied nickname
  54. *
  55. * @param array $args Arguments from $_REQUEST
  56. *
  57. * @return boolean success
  58. */
  59. function prepare($args)
  60. {
  61. parent::prepare($args);
  62. $nickname = $this->trimmed('nickname');
  63. $this->user = User::getKV('nickname', $nickname);
  64. if (!$this->user) {
  65. // TRANS: Client error displayed when trying to get the RSS feed with bookmarks of a user that does not exist.
  66. $this->clientError(_('No such user.'));
  67. } else {
  68. $this->notices = $this->getNotices($this->limit);
  69. return true;
  70. }
  71. }
  72. /**
  73. * Get notices
  74. *
  75. * @param integer $limit max number of notices to return
  76. *
  77. * @return array notices
  78. */
  79. function getNotices($limit=0)
  80. {
  81. $user = $this->user;
  82. $notice = new BookmarksNoticeStream($this->user->id, true);
  83. $notice = $notice->getNotices(0, NOTICES_PER_PAGE);
  84. $notices = array();
  85. while ($notice->fetch()) {
  86. $notices[] = clone($notice);
  87. }
  88. return $notices;
  89. }
  90. /**
  91. * Get channel.
  92. *
  93. * @return array associative array on channel information
  94. */
  95. function getChannel()
  96. {
  97. $user = $this->user;
  98. $c = array('url' => common_local_url('bookmarksrss',
  99. array('nickname' =>
  100. $user->nickname)),
  101. // TRANS: Title of RSS feed with bookmarks of a user.
  102. // TRANS: %s is a user's nickname.
  103. 'title' => sprintf(_("%s's bookmarks"), $user->nickname),
  104. 'link' => common_local_url('bookmarks',
  105. array('nickname' =>
  106. $user->nickname)),
  107. // TRANS: Desciption of RSS feed with bookmarks of a user.
  108. // TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
  109. 'description' => sprintf(_('Bookmarks posted by %1$s on %2$s!'),
  110. $user->nickname, common_config('site', 'name')));
  111. return $c;
  112. }
  113. /**
  114. * Get image.
  115. *
  116. * @return void
  117. */
  118. function getImage()
  119. {
  120. return null;
  121. }
  122. }