3 * StatusNet, the distributed open-source microblogging tool
5 * Show notices mentioning a user (@nickname)
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 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
33 * @link http://status.net/
36 if (!defined('STATUSNET')) {
40 require_once INSTALLDIR . '/lib/apibareauth.php';
43 * Returns the most recent (default 20) mentions (status containing @nickname)
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/
58 class ApiTimelineMentionsAction extends ApiBareAuthAction
64 * Take arguments for running
66 * @param array $args $_REQUEST args
68 * @return boolean success flag
72 function prepare($args)
74 parent::prepare($args);
76 $this->user = $this->getTargetUser($this->arg('id'));
78 if (empty($this->user)) {
79 $this->clientError(_('No such user.'), 404, $this->format);
83 $this->notices = $this->getNotices();
91 * Just show the notices
93 * @param array $args $_REQUEST data (unused)
98 function handle($args)
100 parent::handle($args);
101 $this->showTimeline();
105 * Show the timeline of notices
110 function showTimeline()
112 $profile = $this->user->getProfile();
114 $sitename = common_config('site', 'name');
116 _('%1$s / Updates mentioning %2$s'),
117 $sitename, $this->user->nickname
119 $taguribase = common_config('integration', 'taguri');
120 $id = "tag:$taguribase:Mentions:" . $this->user->id;
121 $link = common_local_url(
123 array('nickname' => $this->user->nickname)
126 _('%1$s updates that reply to updates from %2$s / %3$s.'),
127 $sitename, $this->user->nickname, $profile->getBestName()
130 switch($this->format) {
132 $this->showXmlTimeline($this->notices);
135 $this->showRssTimeline($this->notices, $title, $link, $subtitle);
138 $selfuri = common_root_url() .
139 ltrim($_SERVER['QUERY_STRING'], 'p=');
140 $this->showAtomTimeline(
141 $this->notices, $title, $id, $link, $subtitle,
146 $this->showJsonTimeline($this->notices);
149 $this->clientError(_('API method not found!'), $code = 404);
157 * @return array notices
160 function getNotices()
164 $notice = $this->user->getReplies(
165 ($this->page - 1) * $this->count, $this->count,
166 $this->since_id, $this->max_id, $this->since
169 while ($notice->fetch()) {
170 $notices[] = clone($notice);
177 * Is this action read only?
179 * @param array $args other arguments
181 * @return boolean true
184 function isReadOnly($args)
190 * When was this feed last modified?
192 * @return string datestamp of the latest notice in the stream
195 function lastModified()
197 if (!empty($this->notices) && (count($this->notices) > 0)) {
198 return strtotime($this->notices[0]->created);
205 * An entity tag for this stream
207 * Returns an Etag based on the action name, language, user ID, and
208 * timestamps of the first and last notice in the timeline
210 * @return string etag
215 if (!empty($this->notices) && (count($this->notices) > 0)) {
217 $last = count($this->notices) - 1;
219 return '"' . implode(
221 array($this->arg('action'),
224 strtotime($this->notices[0]->created),
225 strtotime($this->notices[$last]->created))