showfavorites.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * List of replies
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category Personal
  23. * @package StatusNet
  24. * @author Evan Prodromou <evan@status.net>
  25. * @copyright 2008-2011 StatusNet, Inc.
  26. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  27. * @link http://status.net/
  28. */
  29. if (!defined('GNUSOCIAL')) { exit(1); }
  30. /**
  31. * List of replies
  32. *
  33. * @category Personal
  34. * @package StatusNet
  35. * @author Evan Prodromou <evan@status.net>
  36. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  37. * @link http://status.net/
  38. */
  39. class ShowfavoritesAction extends ShowstreamAction
  40. {
  41. function title()
  42. {
  43. if ($this->page == 1) {
  44. // TRANS: Title for first page of favourite notices of a user.
  45. // TRANS: %s is the user for whom the favourite notices are displayed.
  46. return sprintf(_('%s\'s favorite notices'), $this->getTarget()->getNickname());
  47. } else {
  48. // TRANS: Title for all but the first page of favourite notices of a user.
  49. // TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
  50. return sprintf(_('%1$s\'s favorite notices, page %2$d'),
  51. $this->getTarget()->getNickname(),
  52. $this->page);
  53. }
  54. }
  55. public function getStream()
  56. {
  57. return new FaveNoticeStream($this->getTarget(), $this->scoped);
  58. }
  59. function getFeeds()
  60. {
  61. return array(new Feed(Feed::JSON,
  62. common_local_url('ApiTimelineFavorites',
  63. array(
  64. 'id' => $this->getTarget()->getNickname(),
  65. 'format' => 'as')),
  66. // TRANS: Feed link text. %s is a username.
  67. sprintf(_('Feed for favorites of %s (Activity Streams JSON)'),
  68. $this->getTarget()->getNickname())),
  69. new Feed(Feed::RSS1,
  70. common_local_url('favoritesrss',
  71. array('nickname' => $this->getTarget()->getNickname())),
  72. // TRANS: Feed link text. %s is a username.
  73. sprintf(_('Feed for favorites of %s (RSS 1.0)'),
  74. $this->getTarget()->getNickname())),
  75. new Feed(Feed::RSS2,
  76. common_local_url('ApiTimelineFavorites',
  77. array(
  78. 'id' => $this->getTarget()->getNickname(),
  79. 'format' => 'rss')),
  80. // TRANS: Feed link text. %s is a username.
  81. sprintf(_('Feed for favorites of %s (RSS 2.0)'),
  82. $this->getTarget()->getNickname())),
  83. new Feed(Feed::ATOM,
  84. common_local_url('ApiTimelineFavorites',
  85. array(
  86. 'id' => $this->getTarget()->getNickname(),
  87. 'format' => 'atom')),
  88. // TRANS: Feed link text. %s is a username.
  89. sprintf(_('Feed for favorites of %s (Atom)'),
  90. $this->getTarget()->getNickname())));
  91. }
  92. function showEmptyListMessage()
  93. {
  94. if (common_logged_in()) {
  95. if ($this->getTarget()->sameAs($this->getScoped())) {
  96. // TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
  97. $message = _('You haven\'t chosen any favorite notices yet. Click the fave button on notices you like to bookmark them for later or shed a spotlight on them.');
  98. } else {
  99. // TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
  100. // TRANS: %s is a username.
  101. $message = sprintf(_('%s hasn\'t added any favorite notices yet. Post something interesting they would add to their favorites :)'), $this->getTarget()->getNickname());
  102. }
  103. }
  104. else {
  105. // TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
  106. // TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
  107. // TRANS: (link text)[link] is a Mark Down link.
  108. $message = sprintf(_('%s hasn\'t added any favorite notices yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to their favorites :)'), $this->getTarget()->getNickname());
  109. }
  110. $this->elementStart('div', 'guide');
  111. $this->raw(common_markup_to_html($message));
  112. $this->elementEnd('div');
  113. }
  114. /**
  115. * Show the content
  116. *
  117. * A list of notices that this user has marked as a favorite
  118. *
  119. * @return void
  120. */
  121. function showNotices()
  122. {
  123. $nl = new FavoritesNoticeList($this->notice, $this);
  124. $cnt = $nl->show();
  125. if (0 == $cnt) {
  126. $this->showEmptyListMessage();
  127. }
  128. $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
  129. $this->page, 'showfavorites',
  130. array('nickname' => $this->getTarget()->getNickname()));
  131. }
  132. function showPageNotice() {
  133. // TRANS: Page notice for show favourites page.
  134. $this->element('p', 'instructions', _('This is a way to share what you like.'));
  135. }
  136. }
  137. class FavoritesNoticeList extends NoticeList
  138. {
  139. function newListItem(Notice $notice)
  140. {
  141. return new FavoritesNoticeListItem($notice, $this->out);
  142. }
  143. }
  144. // All handled by superclass
  145. class FavoritesNoticeListItem extends DoFollowListItem
  146. {
  147. }