3 * StatusNet, the distributed open-source microblogging tool
5 * Show a user's favorite notices
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 Craig Andrews <candrews@integralblue.com>
25 * @author Evan Prodromou <evan@status.net>
26 * @author Zach Copley <zach@status.net> * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
35 require_once INSTALLDIR.'/lib/apibareauth.php';
38 * Returns the 20 most recent favorite notices for the authenticating user or user
39 * specified by the ID parameter in the requested format.
43 * @author Craig Andrews <candrews@integralblue.com>
44 * @author Evan Prodromou <evan@status.net>
45 * @author Zach Copley <zach@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
50 class ApiTimelineFavoritesAction extends ApiBareAuthAction
55 * Take arguments for running
57 * @param array $args $_REQUEST args
59 * @return boolean success flag
63 function prepare($args)
65 parent::prepare($args);
67 $this->user = $this->getTargetUser($this->arg('id'));
69 if (empty($this->user)) {
70 $this->clientError(_('No such user!'), 404, $this->format);
74 $this->notices = $this->getNotices();
82 * Just show the notices
84 * @param array $args $_REQUEST data (unused)
89 function handle($args)
91 parent::handle($args);
92 $this->showTimeline();
96 * Show the timeline of notices
101 function showTimeline()
103 $profile = $this->user->getProfile();
105 $sitename = common_config('site', 'name');
107 _('%s / Favorites from %s'),
109 $this->user->nickname
112 $taguribase = common_config('integration', 'taguri');
113 $id = "tag:$taguribase:Favorites:" . $this->user->id;
114 $link = common_local_url(
116 array('nickname' => $this->user->nickname)
119 _('%s updates favorited by %s / %s.'),
121 $profile->getBestName(),
122 $this->user->nickname
125 switch($this->format) {
127 $this->showXmlTimeline($this->notices);
130 $this->showRssTimeline($this->notices, $title, $link, $subtitle);
133 $selfuri = common_root_url() .
134 ltrim($_SERVER['QUERY_STRING'], 'p=');
135 $this->showAtomTimeline(
136 $this->notices, $title, $id, $link, $subtitle,
141 $this->showJsonTimeline($this->notices);
144 $this->clientError(_('API method not found!'), $code = 404);
152 * @return array notices
155 function getNotices()
159 if (!empty($this->auth_user) && $this->auth_user->id == $this->user->id) {
160 $notice = $this->user->favoriteNotices(
161 ($this->page-1) * $this->count,
166 $notice = $this->user->favoriteNotices(
167 ($this->page-1) * $this->count,
173 while ($notice->fetch()) {
174 $notices[] = clone($notice);
181 * Is this action read only?
183 * @param array $args other arguments
185 * @return boolean true
188 function isReadOnly($args)
194 * When was this feed last modified?
196 * @return string datestamp of the latest notice in the stream
199 function lastModified()
201 if (!empty($this->notices) && (count($this->notices) > 0)) {
202 return strtotime($this->notices[0]->created);
209 * An entity tag for this stream
211 * Returns an Etag based on the action name, language, user ID, and
212 * timestamps of the first and last notice in the timeline
214 * @return string etag
219 if (!empty($this->notices) && (count($this->notices) > 0)) {
221 $last = count($this->notices) - 1;
223 return '"' . implode(
225 array($this->arg('action'),
228 strtotime($this->notices[0]->created),
229 strtotime($this->notices[$last]->created))