3 * StatusNet, the distributed open-source microblogging tool
5 * Show the home timeline
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 Jeffery To <jeffery.to@gmail.com>
27 * @author mac65 <mac65@mac65.com>
28 * @author Mike Cochrane <mikec@mikenz.geek.nz>
29 * @author Robin Millette <robin@millette.info>
30 * @author Zach Copley <zach@status.net>
31 * @copyright 2009 StatusNet, Inc.
32 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
33 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
34 * @link http://status.net/
37 if (!defined('STATUSNET')) {
41 require_once INSTALLDIR . '/lib/apibareauth.php';
44 * Returns the most recent notices (default 20) posted by the target user.
45 * This is the equivalent of 'You and friends' page accessed via Web.
49 * @author Craig Andrews <candrews@integralblue.com>
50 * @author Evan Prodromou <evan@status.net>
51 * @author Jeffery To <jeffery.to@gmail.com>
52 * @author mac65 <mac65@mac65.com>
53 * @author Mike Cochrane <mikec@mikenz.geek.nz>
54 * @author Robin Millette <robin@millette.info>
55 * @author Zach Copley <zach@status.net>
56 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
57 * @link http://status.net/
60 class ApiTimelineHomeAction extends ApiBareAuthAction
65 * Take arguments for running
67 * @param array $args $_REQUEST args
69 * @return boolean success flag
73 function prepare($args)
75 parent::prepare($args);
77 $this->user = $this->getTargetUser($this->arg('id'));
79 if (empty($this->user)) {
80 $this->clientError(_('No such user.'), 404, $this->format);
84 $this->notices = $this->getNotices();
92 * Just show the notices
94 * @param array $args $_REQUEST data (unused)
99 function handle($args)
101 parent::handle($args);
102 $this->showTimeline();
106 * Show the timeline of notices
111 function showTimeline()
113 $profile = $this->user->getProfile();
114 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
115 $sitename = common_config('site', 'name');
116 $title = sprintf(_("%s and friends"), $this->user->nickname);
117 $taguribase = TagURI::base();
118 $id = "tag:$taguribase:HomeTimeline:" . $this->user->id;
121 // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
122 _('Updates from %1$s and friends on %2$s!'),
123 $this->user->nickname, $sitename
126 $link = common_local_url(
128 array('nickname' => $this->user->nickname)
131 $self = $this->getSelfUri();
133 $logo = (!empty($avatar))
134 ? $avatar->displayUrl()
135 : Avatar::defaultImage(AVATAR_PROFILE_SIZE);
137 switch($this->format) {
139 $this->showXmlTimeline($this->notices);
142 $this->showRssTimeline(
154 header('Content-Type: application/atom+xml; charset=utf-8');
156 $atom = new AtomNoticeFeed($this->auth_user);
159 $atom->setTitle($title);
160 $atom->setSubtitle($subtitle);
161 $atom->setLogo($logo);
162 $atom->setUpdated('now');
164 $atom->addLink($link);
165 $atom->setSelfLink($self);
167 $atom->addEntryFromNotices($this->notices);
168 $this->raw($atom->getString());
172 $this->showJsonTimeline($this->notices);
175 $this->clientError(_('API method not found.'), $code = 404);
183 * @return array notices
186 function getNotices()
190 if (!empty($this->auth_user) && $this->auth_user->id == $this->user->id) {
191 $notice = $this->user->noticeInbox(
192 ($this->page-1) * $this->count,
193 $this->count, $this->since_id,
197 $notice = $this->user->noticesWithFriends(
198 ($this->page-1) * $this->count,
199 $this->count, $this->since_id,
204 while ($notice->fetch()) {
205 $notices[] = clone($notice);
212 * Is this action read only?
214 * @param array $args other arguments
216 * @return boolean true
219 function isReadOnly($args)
225 * When was this feed last modified?
227 * @return string datestamp of the latest notice in the stream
230 function lastModified()
232 if (!empty($this->notices) && (count($this->notices) > 0)) {
233 return strtotime($this->notices[0]->created);
240 * An entity tag for this stream
242 * Returns an Etag based on the action name, language, user ID, and
243 * timestamps of the first and last notice in the timeline
245 * @return string etag
250 if (!empty($this->notices) && (count($this->notices) > 0)) {
252 $last = count($this->notices) - 1;
254 return '"' . implode(
256 array($this->arg('action'),
259 strtotime($this->notices[0]->created),
260 strtotime($this->notices[$last]->created))