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')) {
42 * Returns the most recent notices (default 20) posted by the target user.
43 * This is the equivalent of 'You and friends' page accessed via Web.
47 * @author Craig Andrews <candrews@integralblue.com>
48 * @author Evan Prodromou <evan@status.net>
49 * @author Jeffery To <jeffery.to@gmail.com>
50 * @author mac65 <mac65@mac65.com>
51 * @author Mike Cochrane <mikec@mikenz.geek.nz>
52 * @author Robin Millette <robin@millette.info>
53 * @author Zach Copley <zach@status.net>
54 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
55 * @link http://status.net/
57 class ApiTimelineHomeAction extends ApiBareAuthAction
62 * Take arguments for running
64 * @param array $args $_REQUEST args
66 * @return boolean success flag
68 protected function prepare(array $args=array())
70 parent::prepare($args);
72 $this->target = $this->getTargetProfile($this->arg('id'));
74 if (!($this->target instanceof Profile)) {
75 // TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
76 $this->clientError(_('No such user.'), 404);
79 $this->notices = $this->getNotices();
87 * Just show the notices
91 protected function handle()
94 $this->showTimeline();
98 * Show the timeline of notices
102 function showTimeline()
104 $sitename = common_config('site', 'name');
105 // TRANS: Timeline title for user and friends. %s is a user nickname.
106 $title = sprintf(_("%s and friends"), $this->target->nickname);
107 $taguribase = TagURI::base();
108 $id = "tag:$taguribase:HomeTimeline:" . $this->target->id;
111 // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
112 _('Updates from %1$s and friends on %2$s!'),
113 $this->target->nickname, $sitename
116 $logo = $this->target->avatarUrl(AVATAR_PROFILE_SIZE);
117 $link = common_local_url('all',
118 array('nickname' => $this->target->nickname));
119 $self = $this->getSelfUri();
121 switch($this->format) {
123 $this->showXmlTimeline($this->notices);
126 $this->showRssTimeline(
138 header('Content-Type: application/atom+xml; charset=utf-8');
140 $atom = new AtomNoticeFeed($this->auth_user);
143 $atom->setTitle($title);
144 $atom->setSubtitle($subtitle);
145 $atom->setLogo($logo);
146 $atom->setUpdated('now');
148 $atom->addLink($link);
149 $atom->setSelfLink($self);
151 $atom->addEntryFromNotices($this->notices);
152 $this->raw($atom->getString());
156 $this->showJsonTimeline($this->notices);
159 header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE);
160 $doc = new ActivityStreamJSONDocument($this->auth_user);
161 $doc->setTitle($title);
162 $doc->addLink($link, 'alternate', 'text/html');
163 $doc->addItemsFromNotices($this->notices);
164 $this->raw($doc->asString());
167 // TRANS: Client error displayed when coming across a non-supported API method.
168 $this->clientError(_('API method not found.'), 404);
175 * @return array notices
177 function getNotices()
181 $stream = new InboxNoticeStream($this->target, $this->scoped);
183 $notice = $stream->getNotices(($this->page-1) * $this->count,
188 while ($notice->fetch()) {
189 $notices[] = clone($notice);
196 * Is this action read only?
198 * @param array $args other arguments
200 * @return boolean true
202 function isReadOnly($args)
208 * When was this feed last modified?
210 * @return string datestamp of the latest notice in the stream
212 function lastModified()
214 if (!empty($this->notices) && (count($this->notices) > 0)) {
215 return strtotime($this->notices[0]->created);
222 * An entity tag for this stream
224 * Returns an Etag based on the action name, language, user ID, and
225 * timestamps of the first and last notice in the timeline
227 * @return string etag
231 if (!empty($this->notices) && (count($this->notices) > 0)) {
233 $last = count($this->notices) - 1;
235 return '"' . implode(
237 array($this->arg('action'),
238 common_user_cache_hash($this->auth_user),
241 strtotime($this->notices[0]->created),
242 strtotime($this->notices[$last]->created))