123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /**
- * StatusNet, the distributed open-source microblogging tool
- *
- * List of replies
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Personal
- * @package StatusNet
- * @author Evan Prodromou <evan@status.net>
- * @copyright 2008-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
- if (!defined('GNUSOCIAL')) { exit(1); }
- /**
- * List of replies
- *
- * @category Personal
- * @package StatusNet
- * @author Evan Prodromou <evan@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
- class ShowfavoritesAction extends ShowstreamAction
- {
- function title()
- {
- if ($this->page == 1) {
- // TRANS: Title for first page of favourite notices of a user.
- // TRANS: %s is the user for whom the favourite notices are displayed.
- return sprintf(_('%s\'s favorite notices'), $this->getTarget()->getNickname());
- } else {
- // TRANS: Title for all but the first page of favourite notices of a user.
- // TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
- return sprintf(_('%1$s\'s favorite notices, page %2$d'),
- $this->getTarget()->getNickname(),
- $this->page);
- }
- }
- public function getStream()
- {
- return new FaveNoticeStream($this->getTarget(), $this->scoped);
- }
- function getFeeds()
- {
- return array(new Feed(Feed::JSON,
- common_local_url('ApiTimelineFavorites',
- array(
- 'id' => $this->getTarget()->getNickname(),
- 'format' => 'as')),
- // TRANS: Feed link text. %s is a username.
- sprintf(_('Feed for favorites of %s (Activity Streams JSON)'),
- $this->getTarget()->getNickname())),
- new Feed(Feed::RSS1,
- common_local_url('favoritesrss',
- array('nickname' => $this->getTarget()->getNickname())),
- // TRANS: Feed link text. %s is a username.
- sprintf(_('Feed for favorites of %s (RSS 1.0)'),
- $this->getTarget()->getNickname())),
- new Feed(Feed::RSS2,
- common_local_url('ApiTimelineFavorites',
- array(
- 'id' => $this->getTarget()->getNickname(),
- 'format' => 'rss')),
- // TRANS: Feed link text. %s is a username.
- sprintf(_('Feed for favorites of %s (RSS 2.0)'),
- $this->getTarget()->getNickname())),
- new Feed(Feed::ATOM,
- common_local_url('ApiTimelineFavorites',
- array(
- 'id' => $this->getTarget()->getNickname(),
- 'format' => 'atom')),
- // TRANS: Feed link text. %s is a username.
- sprintf(_('Feed for favorites of %s (Atom)'),
- $this->getTarget()->getNickname())));
- }
- function showEmptyListMessage()
- {
- if (common_logged_in()) {
- if ($this->getTarget()->sameAs($this->getScoped())) {
- // TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
- $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.');
- } else {
- // TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
- // TRANS: %s is a username.
- $message = sprintf(_('%s hasn\'t added any favorite notices yet. Post something interesting they would add to their favorites :)'), $this->getTarget()->getNickname());
- }
- }
- else {
- // TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
- // TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
- // TRANS: (link text)[link] is a Mark Down link.
- $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());
- }
- $this->elementStart('div', 'guide');
- $this->raw(common_markup_to_html($message));
- $this->elementEnd('div');
- }
- /**
- * Show the content
- *
- * A list of notices that this user has marked as a favorite
- *
- * @return void
- */
- function showNotices()
- {
- $nl = new FavoritesNoticeList($this->notice, $this);
- $cnt = $nl->show();
- if (0 == $cnt) {
- $this->showEmptyListMessage();
- }
- $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
- $this->page, 'showfavorites',
- array('nickname' => $this->getTarget()->getNickname()));
- }
- function showPageNotice() {
- // TRANS: Page notice for show favourites page.
- $this->element('p', 'instructions', _('This is a way to share what you like.'));
- }
- }
- class FavoritesNoticeList extends NoticeList
- {
- function newListItem(Notice $notice)
- {
- return new FavoritesNoticeListItem($notice, $this->out);
- }
- }
- // All handled by superclass
- class FavoritesNoticeListItem extends DoFollowListItem
- {
- }
|