]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Favorite/actions/showfavorites.php
Possibly replace weirdly capitalized htTPs: too
[quix0rs-gnu-social.git] / plugins / Favorite / actions / showfavorites.php
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
30 if (!defined('GNUSOCIAL')) { exit(1); }
31
32 /**
33  * List of replies
34  *
35  * @category Personal
36  * @package  StatusNet
37  * @author   Evan Prodromou <evan@status.net>
38  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
39  * @link     http://status.net/
40  */
41 class ShowfavoritesAction extends ShowstreamAction
42 {
43     function title()
44     {
45         if ($this->page == 1) {
46             // TRANS: Title for first page of favourite notices of a user.
47             // TRANS: %s is the user for whom the favourite notices are displayed.
48             return sprintf(_('%s\'s favorite notices'), $this->getTarget()->getNickname());
49         } else {
50             // TRANS: Title for all but the first page of favourite notices of a user.
51             // TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
52             return sprintf(_('%1$s\'s favorite notices, page %2$d'),
53                            $this->getTarget()->getNickname(),
54                            $this->page);
55         }
56     }
57
58     public function getStream()
59     {
60         return new FaveNoticeStream($this->getTarget(), $this->scoped);
61     }
62
63     function getFeeds()
64     {
65         return array(new Feed(Feed::JSON,
66                               common_local_url('ApiTimelineFavorites',
67                                                array(
68                                                     'id' => $this->user->nickname,
69                                                     'format' => 'as')),
70                               // TRANS: Feed link text. %s is a username.
71                               sprintf(_('Feed for favorites of %s (Activity Streams JSON)'),
72                                       $this->user->nickname)),
73                      new Feed(Feed::RSS1,
74                               common_local_url('favoritesrss',
75                                                array('nickname' => $this->user->nickname)),
76                               // TRANS: Feed link text. %s is a username.
77                               sprintf(_('Feed for favorites of %s (RSS 1.0)'),
78                                       $this->user->nickname)),
79                      new Feed(Feed::RSS2,
80                               common_local_url('ApiTimelineFavorites',
81                                                array(
82                                                     'id' => $this->user->nickname,
83                                                     'format' => 'rss')),
84                               // TRANS: Feed link text. %s is a username.
85                               sprintf(_('Feed for favorites of %s (RSS 2.0)'),
86                                       $this->user->nickname)),
87                      new Feed(Feed::ATOM,
88                               common_local_url('ApiTimelineFavorites',
89                                                array(
90                                                     'id' => $this->user->nickname,
91                                                     'format' => 'atom')),
92                               // TRANS: Feed link text. %s is a username.
93                               sprintf(_('Feed for favorites of %s (Atom)'),
94                                       $this->user->nickname)));
95     }
96
97     function showEmptyListMessage()
98     {
99         if (common_logged_in()) {
100             $current_user = common_current_user();
101             if ($this->user->id === $current_user->id) {
102                 // TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
103                 $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.');
104             } else {
105                 // TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
106                 // TRANS: %s is a username.
107                 $message = sprintf(_('%s hasn\'t added any favorite notices yet. Post something interesting they would add to their favorites :)'), $this->user->nickname);
108             }
109         }
110         else {
111                 // TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
112                 // TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
113                 // TRANS: (link text)[link] is a Mark Down link.
114             $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->user->nickname);
115         }
116
117         $this->elementStart('div', 'guide');
118         $this->raw(common_markup_to_html($message));
119         $this->elementEnd('div');
120     }
121
122     /**
123      * Show the content
124      *
125      * A list of notices that this user has marked as a favorite
126      *
127      * @return void
128      */
129     function showNotices()
130     {
131         $nl = new FavoritesNoticeList($this->notice, $this);
132
133         $cnt = $nl->show();
134         if (0 == $cnt) {
135             $this->showEmptyListMessage();
136         }
137
138         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
139                           $this->page, 'showfavorites',
140                           array('nickname' => $this->getTarget()->getNickname()));
141     }
142
143     function showPageNotice() {
144         // TRANS: Page notice for show favourites page.
145         $this->element('p', 'instructions', _('This is a way to share what you like.'));
146     }
147 }
148
149 class FavoritesNoticeList extends NoticeList
150 {
151     function newListItem($notice)
152     {
153         return new FavoritesNoticeListItem($notice, $this->out);
154     }
155 }
156
157 // All handled by superclass
158 class FavoritesNoticeListItem extends DoFollowListItem
159 {
160 }