]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusesshow.php
Merge branch '0.9.x' into atompub
[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', 'atom'))) {
109             $this->clientError(_('API method not found.'), 404);
110             return;
111         }
112
113         switch ($_SERVER['REQUEST_METHOD']) {
114         case 'GET':
115             $this->showNotice();
116             break;
117         case 'DELETE':
118             $this->deleteNotice();
119             break;
120         default:
121             $this->clientError(_('HTTP method not supported.'), 405);
122             return;
123         }
124     }
125
126     /**
127      * Show the notice
128      *
129      * @return void
130      */
131
132     function showNotice()
133     {
134         if (!empty($this->notice)) {
135             switch ($this->format) {
136             case 'xml':
137                 $this->showSingleXmlStatus($this->notice);
138                 break;
139             case 'json':
140                 $this->show_single_json_status($this->notice);
141                 break;
142             case 'atom':
143                 $this->showSingleAtomStatus($this->notice);
144                 break;
145             default:
146                 throw new Exception(sprintf(_("Unsupported format: %s"), $this->format));
147             }
148         } else {
149
150             // XXX: Twitter just sets a 404 header and doens't bother
151             // to return an err msg
152
153             $deleted = Deleted_notice::staticGet($this->notice_id);
154
155             if (!empty($deleted)) {
156                 $this->clientError(
157                     _('Status deleted.'),
158                     410,
159                     $this->format
160                 );
161             } else {
162                 $this->clientError(
163                     _('No status with that ID found.'),
164                     404,
165                     $this->format
166                 );
167             }
168         }
169     }
170
171     /**
172      * Is this action read only?
173      *
174      * @param array $args other arguments
175      *
176      * @return boolean true
177      */
178
179     function isReadOnly($args)
180     {
181         return true;
182     }
183
184     /**
185      * When was this notice last modified?
186      *
187      * @return string datestamp of the latest notice in the stream
188      */
189
190     function lastModified()
191     {
192         if (!empty($this->notice)) {
193             return strtotime($this->notice->created);
194         }
195
196         return null;
197     }
198
199     /**
200      * An entity tag for this notice
201      *
202      * Returns an Etag based on the action name, language, and
203      * timestamps of the notice
204      *
205      * @return string etag
206      */
207
208     function etag()
209     {
210         if (!empty($this->notice)) {
211
212             return '"' . implode(
213                 ':',
214                 array($this->arg('action'),
215                       common_user_cache_hash($this->auth_user),
216                       common_language(),
217                       $this->notice->id,
218                       strtotime($this->notice->created))
219             )
220             . '"';
221         }
222
223         return null;
224     }
225
226     function deleteNotice()
227     {
228         if ($this->format != 'atom') {
229             $this->clientError(_("Can only delete using the Atom format."));
230             return;
231         }
232
233         if (empty($this->auth_user) ||
234             ($this->notice->profile_id != $this->auth_user->id &&
235              !$this->auth_user->hasRight(Right::DELETEOTHERSNOTICE))) {
236             $this->clientError(_('Can\'t delete this notice.'), 403);
237             return;
238         }
239
240         if (Event::handle('StartDeleteOwnNotice', array($this->auth_user, $this->notice))) {
241             $this->notice->delete();
242             Event::handle('EndDeleteOwnNotice', array($this->auth_user, $this->notice));
243         }
244
245         // @fixme is there better output we could do here?
246
247         header('HTTP/1.1 200 OK');
248         header('Content-Type: text/plain');
249         print(sprintf(_('Deleted notice %d'), $this->notice->id));
250         print("\n");
251     }
252 }