]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusesshow.php
Merge branch '0.9.x' into activityexport
[quix0rs-gnu-social.git] / actions / apistatusesshow.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show a notice (as a Twitter-style status)
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  API
23  * @package   StatusNet
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  * @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/
35  */
36
37 if (!defined('STATUSNET')) {
38     exit(1);
39 }
40
41 require_once INSTALLDIR . '/lib/apiprivateauth.php';
42
43 /**
44  * Returns the notice specified by id as a Twitter-style status and inline user
45  *
46  * @category API
47  * @package  StatusNet
48  * @author   Craig Andrews <candrews@integralblue.com>
49  * @author   Evan Prodromou <evan@status.net>
50  * @author   Jeffery To <jeffery.to@gmail.com>
51  * @author   Tom Blankenship <mac65@mac65.com>
52  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
53  * @author   Robin Millette <robin@millette.info>
54  * @author   Zach Copley <zach@status.net>
55  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
56  * @link     http://status.net/
57  */
58
59 class ApiStatusesShowAction extends ApiPrivateAuthAction
60 {
61
62     var $notice_id = null;
63     var $notice    = null;
64
65     /**
66      * Take arguments for running
67      *
68      * @param array $args $_REQUEST args
69      *
70      * @return boolean success flag
71      *
72      */
73
74     function prepare($args)
75     {
76         parent::prepare($args);
77
78         // 'id' is an undocumented parameter in Twitter's API. Several
79         // clients make use of it, so we support it too.
80
81         // show.json?id=12345 takes precedence over /show/12345.json
82
83         $this->notice_id = (int)$this->trimmed('id');
84
85         if (empty($notice_id)) {
86             $this->notice_id = (int)$this->arg('id');
87         }
88
89         $this->notice = Notice::staticGet((int)$this->notice_id);
90
91         return true;
92     }
93
94     /**
95      * Handle the request
96      *
97      * Check the format and show the notice
98      *
99      * @param array $args $_REQUEST data (unused)
100      *
101      * @return void
102      */
103
104     function handle($args)
105     {
106         parent::handle($args);
107
108         if (!in_array($this->format, array('xml', 'json'))) {
109             $this->clientError(_('API method not found.'), $code = 404);
110             return;
111         }
112
113         $this->showNotice();
114     }
115
116     /**
117      * Show the notice
118      *
119      * @return void
120      */
121
122     function showNotice()
123     {
124         if (!empty($this->notice)) {
125             if ($this->format == 'xml') {
126                 $this->showSingleXmlStatus($this->notice);
127             } elseif ($this->format == 'json') {
128                 $this->show_single_json_status($this->notice);
129             }
130         } else {
131
132             // XXX: Twitter just sets a 404 header and doens't bother
133             // to return an err msg
134
135             $deleted = Deleted_notice::staticGet($this->notice_id);
136
137             if (!empty($deleted)) {
138                 $this->clientError(
139                     _('Status deleted.'),
140                     410,
141                     $this->format
142                 );
143             } else {
144                 $this->clientError(
145                     _('No status with that ID found.'),
146                     404,
147                     $this->format
148                 );
149             }
150         }
151     }
152
153     /**
154      * Is this action read only?
155      *
156      * @param array $args other arguments
157      *
158      * @return boolean true
159      */
160
161     function isReadOnly($args)
162     {
163         return true;
164     }
165
166     /**
167      * When was this notice last modified?
168      *
169      * @return string datestamp of the latest notice in the stream
170      */
171
172     function lastModified()
173     {
174         if (!empty($this->notice)) {
175             return strtotime($this->notice->created);
176         }
177
178         return null;
179     }
180
181     /**
182      * An entity tag for this notice
183      *
184      * Returns an Etag based on the action name, language, and
185      * timestamps of the notice
186      *
187      * @return string etag
188      */
189
190     function etag()
191     {
192         if (!empty($this->notice)) {
193
194             return '"' . implode(
195                 ':',
196                 array($this->arg('action'),
197                       common_user_cache_hash($this->auth_user),
198                       common_language(),
199                       $this->notice->id,
200                       strtotime($this->notice->created))
201             )
202             . '"';
203         }
204
205         return null;
206     }
207
208 }