all.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. /**
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2008-2011, StatusNet, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * @category Actions
  20. * @package Actions
  21. * @author Adrian Lang <mail@adrianlang.de>
  22. * @author Brenda Wallace <shiny@cpan.org>
  23. * @author Brion Vibber <brion@pobox.com>
  24. * @author Craig Andrews <candrews@integralblue.com>
  25. * @author Evan Prodromou <evan@status.net>
  26. * @author Jeffery To <jeffery.to@gmail.com>
  27. * @author Meitar Moscovitz <meitarm@gmail.com>
  28. * @author Mike Cochrane <mikec@mikenz.geek.nz>
  29. * @author Robin Millette <millette@status.net>
  30. * @author Sarven Capadisli <csarven@status.net>
  31. * @author Siebrand Mazeland <s.mazeland@xs4all.nl>
  32. * @author Zach Copley <zach@status.net>
  33. * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
  34. * @license GNU Affero General Public License http://www.gnu.org/licenses/
  35. * @link http://status.net
  36. */
  37. if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
  38. class AllAction extends ProfileAction
  39. {
  40. var $notice;
  41. protected function profileActionPreparation()
  42. {
  43. if ($this->scoped instanceof Profile && $this->scoped->isLocal() && $this->scoped->getUser()->streamModeOnly()) {
  44. $stream = new InboxNoticeStream($this->target, $this->scoped);
  45. } else {
  46. $stream = new ThreadingInboxNoticeStream($this->target, $this->scoped);
  47. }
  48. $this->notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
  49. NOTICES_PER_PAGE + 1);
  50. if ($this->page > 1 && $this->notice->N == 0) {
  51. // TRANS: Client error when page not found (404).
  52. $this->clientError(_('No such page.'), 404);
  53. }
  54. }
  55. function title()
  56. {
  57. if (!empty($this->scoped) && $this->scoped->id == $this->target->id) {
  58. // TRANS: Title of a user's own start page.
  59. return _('Home timeline');
  60. } else {
  61. // TRANS: Title of another user's start page.
  62. // TRANS: %s is the other user's name.
  63. return sprintf(_("%s's home timeline"), $this->target->getBestName());
  64. }
  65. }
  66. function getFeeds()
  67. {
  68. return array(
  69. new Feed(Feed::JSON,
  70. common_local_url(
  71. 'ApiTimelineFriends', array(
  72. 'format' => 'as',
  73. 'id' => $this->target->nickname
  74. )
  75. ),
  76. // TRANS: %s is user nickname.
  77. sprintf(_('Feed for friends of %s (Activity Streams JSON)'), $this->target->nickname)),
  78. new Feed(Feed::RSS1,
  79. common_local_url(
  80. 'allrss', array(
  81. 'nickname' =>
  82. $this->target->nickname)
  83. ),
  84. // TRANS: %s is user nickname.
  85. sprintf(_('Feed for friends of %s (RSS 1.0)'), $this->target->nickname)),
  86. new Feed(Feed::RSS2,
  87. common_local_url(
  88. 'ApiTimelineFriends', array(
  89. 'format' => 'rss',
  90. 'id' => $this->target->nickname
  91. )
  92. ),
  93. // TRANS: %s is user nickname.
  94. sprintf(_('Feed for friends of %s (RSS 2.0)'), $this->target->nickname)),
  95. new Feed(Feed::ATOM,
  96. common_local_url(
  97. 'ApiTimelineFriends', array(
  98. 'format' => 'atom',
  99. 'id' => $this->target->nickname
  100. )
  101. ),
  102. // TRANS: %s is user nickname.
  103. sprintf(_('Feed for friends of %s (Atom)'), $this->target->nickname))
  104. );
  105. }
  106. function showEmptyListMessage()
  107. {
  108. // TRANS: Empty list message. %s is a user nickname.
  109. $message = sprintf(_('This is the timeline for %s and friends but no one has posted anything yet.'), $this->target->nickname) . ' ';
  110. if (common_logged_in()) {
  111. if ($this->target->id === $this->scoped->id) {
  112. // TRANS: Encouragement displayed on logged in user's empty timeline.
  113. // TRANS: This message contains Markdown links. Keep "](" together.
  114. $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.');
  115. } else {
  116. // TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
  117. // TRANS: This message contains Markdown links. Keep "](" together.
  118. $message .= sprintf(_('You can try to [nudge %1$s](../%2$s) from their profile or [post something to them](%%%%action.newnotice%%%%?status_textarea=%3$s).'), $this->target->nickname, $this->target->nickname, '@' . $this->target->nickname);
  119. }
  120. } else {
  121. // TRANS: Encouragement displayed on empty timeline user pages for anonymous users.
  122. // TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
  123. $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to them.'), $this->target->nickname);
  124. }
  125. $this->elementStart('div', 'guide');
  126. $this->raw(common_markup_to_html($message));
  127. $this->elementEnd('div');
  128. }
  129. function showContent()
  130. {
  131. if (Event::handle('StartShowAllContent', array($this))) {
  132. $profile = null;
  133. $current_user = common_current_user();
  134. if (!empty($current_user)) {
  135. $profile = $current_user->getProfile();
  136. }
  137. if (!empty($current_user) && $current_user->streamModeOnly()) {
  138. $nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE));
  139. } else {
  140. $nl = new ThreadedNoticeList($this->notice, $this, $profile);
  141. }
  142. $cnt = $nl->show();
  143. if (0 == $cnt) {
  144. $this->showEmptyListMessage();
  145. }
  146. $this->pagination(
  147. $this->page > 1, $cnt > NOTICES_PER_PAGE,
  148. $this->page, 'all', array('nickname' => $this->target->nickname)
  149. );
  150. Event::handle('EndShowAllContent', array($this));
  151. }
  152. }
  153. function showSections()
  154. {
  155. // Show invite button, as long as site isn't closed, and
  156. // we have a logged in user.
  157. if (common_config('invite', 'enabled') && !common_config('site', 'closed') && common_logged_in()) {
  158. if (!common_config('site', 'private')) {
  159. $ibs = new InviteButtonSection(
  160. $this,
  161. // TRANS: Button text for inviting more users to the StatusNet instance.
  162. // TRANS: Less business/enterprise-oriented language for public sites.
  163. _m('BUTTON', 'Send invite')
  164. );
  165. } else {
  166. $ibs = new InviteButtonSection($this);
  167. }
  168. $ibs->show();
  169. }
  170. // XXX: make this a little more convenient
  171. if (!common_config('performance', 'high')) {
  172. $pop = new InboxTagCloudSection($this, $this->target);
  173. $pop->show();
  174. }
  175. }
  176. }
  177. class ThreadingInboxNoticeStream extends ThreadingNoticeStream
  178. {
  179. function __construct(Profile $target, Profile $scoped=null)
  180. {
  181. parent::__construct(new InboxNoticeStream($target, $scoped));
  182. }
  183. }