3 * StatusNet, the distributed open-source microblogging tool
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.
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.
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008-2009 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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/personalgroupnav.php';
35 require_once INSTALLDIR.'/lib/noticelist.php';
36 require_once INSTALLDIR.'/lib/feedlist.php';
43 * @author Evan Prodromou <evan@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
48 class ShowfavoritesAction extends OwnerDesignAction
50 /** User we're getting the faves of */
52 /** Page of the faves we're on */
56 * Is this a read-only page?
58 * @return boolean true
61 function isReadOnly($args)
69 * Includes name of user and page number.
71 * @return string title of page
76 if ($this->page == 1) {
77 return sprintf(_("%s's favorite notices"), $this->user->nickname);
79 return sprintf(_("%s's favorite notices, page %d"),
80 $this->user->nickname,
88 * Check the input values and initialize the object.
89 * Shows an error page on bad input.
91 * @param array $args $_REQUEST data
93 * @return boolean success flag
96 function prepare($args)
98 parent::prepare($args);
100 $nickname = common_canonical_nickname($this->arg('nickname'));
102 $this->user = User::staticGet('nickname', $nickname);
105 $this->clientError(_('No such user.'));
109 $this->page = $this->trimmed('page');
115 common_set_returnto($this->selfUrl());
117 $cur = common_current_user();
119 if (!empty($cur) && $cur->id == $this->user->id) {
121 // Show imported/gateway notices as well as local if
122 // the user is looking at his own favorites
124 $this->notice = $this->user->favoriteNotices(($this->page-1)*NOTICES_PER_PAGE,
125 NOTICES_PER_PAGE + 1, true);
127 $this->notice = $this->user->favoriteNotices(($this->page-1)*NOTICES_PER_PAGE,
128 NOTICES_PER_PAGE + 1, false);
131 if (empty($this->notice)) {
132 $this->serverError(_('Could not retrieve favorite notices.'));
136 if($this->page > 1 && $this->notice->N == 0){
137 $this->serverError(_('No such page'),$code=404);
146 * Just show the page. All args already handled.
148 * @param array $args $_REQUEST data
153 function handle($args)
155 parent::handle($args);
160 * Feeds for the <head> section
162 * @return array Feed objects to show
167 return array(new Feed(Feed::RSS1,
168 common_local_url('favoritesrss',
169 array('nickname' => $this->user->nickname)),
170 sprintf(_('Feed for favorites of %s (RSS 1.0)'),
171 $this->user->nickname)),
173 common_local_url('ApiTimelineFavorites',
175 'id' => $this->user->nickname,
177 sprintf(_('Feed for favorites of %s (RSS 2.0)'),
178 $this->user->nickname)),
180 common_local_url('ApiTimelineFavorites',
182 'id' => $this->user->nickname,
183 'format' => 'atom')),
184 sprintf(_('Feed for favorites of %s (Atom)'),
185 $this->user->nickname)));
189 * show the personal group nav
194 function showLocalNav()
196 $nav = new PersonalGroupNav($this);
200 function showEmptyListMessage()
202 if (common_logged_in()) {
203 $current_user = common_current_user();
204 if ($this->user->id === $current_user->id) {
205 $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.');
207 $message = sprintf(_('%s hasn\'t added any notices to his favorites yet. Post something interesting they would add to their favorites :)'), $this->user->nickname);
211 $message = sprintf(_('%s hasn\'t added any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to their favorites :)'), $this->user->nickname);
214 $this->elementStart('div', 'guide');
215 $this->raw(common_markup_to_html($message));
216 $this->elementEnd('div');
222 * A list of notices that this user has marked as a favorite
227 function showContent()
229 $nl = new NoticeList($this->notice, $this);
233 $this->showEmptyListMessage();
236 $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
237 $this->page, 'showfavorites',
238 array('nickname' => $this->user->nickname));
241 function showPageNotice() {
242 $this->element('p', 'instructions', _('This is a way to share what you like.'));