3 * StatusNet, the distributed open-source microblogging tool
5 * Show a notice (as a Twitter-style status)
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 Tom Blankenship <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/apiprivateauth.php';
43 * Returns the notice specified by id as a Twitter-style status and inline user
47 * @author Craig Andrews <candrews@integralblue.com>
48 * @author Evan Prodromou <evan@status.net>
49 * @author Jeffery To <jeffery.to@gmail.com>
50 * @author Tom Blankenship <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 ApiStatusesShowAction extends ApiPrivateAuthAction
61 var $notice_id = null;
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 // 'id' is an undocumented parameter in Twitter's API. Several
78 // clients make use of it, so we support it too.
80 // show.json?id=12345 takes precedence over /show/12345.json
82 $this->notice_id = (int)$this->trimmed('id');
84 if (empty($notice_id)) {
85 $this->notice_id = (int)$this->arg('id');
88 $this->notice = Notice::staticGet((int)$this->notice_id);
96 * Check the format and show the notice
98 * @param array $args $_REQUEST data (unused)
103 function handle($args)
105 parent::handle($args);
107 if (!in_array($this->format, array('xml', 'json'))) {
108 $this->clientError(_('API method not found!'), $code = 404);
121 function showNotice()
123 if (!empty($this->notice)) {
124 if ($this->format == 'xml') {
125 $this->showSingleXmlStatus($this->notice);
126 } elseif ($this->format == 'json') {
127 $this->show_single_json_status($this->notice);
131 // XXX: Twitter just sets a 404 header and doens't bother
132 // to return an err msg
134 $deleted = Deleted_notice::staticGet($this->notice_id);
136 if (!empty($deleted)) {
138 _('Status deleted.'),
144 _('No status with that ID found.'),
153 * Is this action read only?
155 * @param array $args other arguments
157 * @return boolean true
160 function isReadOnly($args)
166 * When was this notice last modified?
168 * @return string datestamp of the latest notice in the stream
171 function lastModified()
173 if (!empty($this->notice)) {
174 return strtotime($this->notice->created);
181 * An entity tag for this notice
183 * Returns an Etag based on the action name, language, and
184 * timestamps of the notice
186 * @return string etag
191 if (!empty($this->notice)) {
193 return '"' . implode(
195 array($this->arg('action'),
198 strtotime($this->notice->created))