]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusesupdate.php
a0a81f3368fa23bb8c333e03e3b002b4da3a8418
[quix0rs-gnu-social.git] / actions / apistatusesupdate.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Post a notice (update your status) through the API
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-2010 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/
34  */
35
36 /* External API usage documentation. Please update when you change how this method works. */
37
38 /*! @page statusesupdate statuses/update
39
40     @section Description
41     Updates the authenticating user's status. Requires the status parameter specified below.
42     Request must be a POST.
43
44     @par URL pattern
45     /api/statuses/update.:format
46
47     @par Formats (:format)
48     xml, json
49
50     @par HTTP Method(s)
51     POST
52
53     @par Requires Authentication
54     Yes
55
56     @param status (Required) The URL-encoded text of the status update.
57     @param source (Optional) The source of the status.
58     @param in_reply_to_status_id (Optional) The ID of an existing status that the update is in reply to.
59     @param lat (Optional) The latitude the status refers to.
60     @param long (Optional) The longitude the status refers to.
61     @param media (Optional) a media upload, such as an image or movie file.
62
63     @sa @ref authentication
64     @sa @ref apiroot
65
66     @subsection usagenotes Usage notes
67
68     @li The URL pattern is relative to the @ref apiroot.
69     @li If the @e source parameter is not supplied the source of the status will default to 'api'.
70     @li The XML response uses <a href="http://georss.org/Main_Page">GeoRSS</a>
71     to encode the latitude and longitude (see example response below <georss:point>).
72     @li Data uploaded via the @e media parameter should be multipart/form-data encoded.
73
74     @subsection exampleusage Example usage
75
76     @verbatim
77     curl -u username:password http://example.com/api/statuses/update.xml -d status='Howdy!' -d lat='30.468' -d long='-94.743'
78     @endverbatim
79
80     @subsection exampleresponse Example response
81
82     @verbatim
83     <?xml version="1.0" encoding="UTF-8"?>
84     <status>
85       <text>Howdy!</text>
86       <truncated>false</truncated>
87       <created_at>Tue Mar 30 23:28:05 +0000 2010</created_at>
88       <in_reply_to_status_id/>
89       <source>api</source>
90       <id>26668724</id>
91       <in_reply_to_user_id/>
92       <in_reply_to_screen_name/>
93       <geo xmlns:georss="http://www.georss.org/georss">
94         <georss:point>30.468 -94.743</georss:point>
95       </geo>
96       <favorited>false</favorited>
97       <user>
98         <id>25803</id>
99         <name>Jed Sanders</name>
100         <screen_name>jedsanders</screen_name>
101         <location>Hoop and Holler, Texas</location>
102         <description>I like to think of myself as America's Favorite.</description>
103         <profile_image_url>http://avatar.example.com/25803-48-20080924200604.png</profile_image_url>
104         <url>http://jedsanders.net</url>
105         <protected>false</protected>
106         <followers_count>5</followers_count>
107         <profile_background_color/>
108         <profile_text_color/>
109         <profile_link_color/>
110         <profile_sidebar_fill_color/>
111         <profile_sidebar_border_color/>
112         <friends_count>2</friends_count>
113         <created_at>Wed Sep 24 20:04:00 +0000 2008</created_at>
114         <favourites_count>0</favourites_count>
115         <utc_offset>0</utc_offset>
116         <time_zone>UTC</time_zone>
117         <profile_background_image_url/>
118         <profile_background_tile>false</profile_background_tile>
119         <statuses_count>70</statuses_count>
120         <following>true</following>
121         <notifications>true</notifications>
122       </user>
123     </status>
124     @endverbatim
125 */
126
127 if (!defined('STATUSNET')) {
128     exit(1);
129 }
130
131 require_once INSTALLDIR . '/lib/apiauth.php';
132 require_once INSTALLDIR . '/lib/mediafile.php';
133
134 /**
135  * Updates the authenticating user's status (posts a notice).
136  *
137  * @category API
138  * @package  StatusNet
139  * @author   Craig Andrews <candrews@integralblue.com>
140  * @author   Evan Prodromou <evan@status.net>
141  * @author   Jeffery To <jeffery.to@gmail.com>
142  * @author   Tom Blankenship <mac65@mac65.com>
143  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
144  * @author   Robin Millette <robin@millette.info>
145  * @author   Zach Copley <zach@status.net>
146  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
147  * @link     http://status.net/
148  */
149
150 class ApiStatusesUpdateAction extends ApiAuthAction
151 {
152     var $source                = null;
153     var $status                = null;
154     var $in_reply_to_status_id = null;
155     var $lat                   = null;
156     var $lon                   = null;
157
158     /**
159      * Take arguments for running
160      *
161      * @param array $args $_REQUEST args
162      *
163      * @return boolean success flag
164      *
165      */
166
167     function prepare($args)
168     {
169         parent::prepare($args);
170
171         $this->status = $this->trimmed('status');
172         $this->lat    = $this->trimmed('lat');
173         $this->lon    = $this->trimmed('long');
174
175         $this->in_reply_to_status_id
176             = intval($this->trimmed('in_reply_to_status_id'));
177
178         return true;
179     }
180
181     /**
182      * Handle the request
183      *
184      * Make a new notice for the update, save it, and show it
185      *
186      * @param array $args $_REQUEST data (unused)
187      *
188      * @return void
189      */
190
191     function handle($args)
192     {
193         parent::handle($args);
194
195         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
196             $this->clientError(
197                 _('This method requires a POST.'),
198                 400, $this->format
199             );
200             return;
201         }
202
203         // Workaround for PHP returning empty $_POST and $_FILES when POST
204         // length > post_max_size in php.ini
205
206         if (empty($_FILES)
207             && empty($_POST)
208             && ($_SERVER['CONTENT_LENGTH'] > 0)
209         ) {
210              $msg = _('The server was unable to handle that much POST ' .
211                     'data (%s bytes) due to its current configuration.');
212
213             $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
214             return;
215         }
216
217         if (empty($this->status)) {
218             $this->clientError(
219                 'Client must provide a \'status\' parameter with a value.',
220                 400,
221                 $this->format
222             );
223             return;
224         }
225
226         if (empty($this->auth_user)) {
227             $this->clientError(_('No such user.'), 404, $this->format);
228             return;
229         }
230
231         $status_shortened = common_shorten_links($this->status);
232
233         if (Notice::contentTooLong($status_shortened)) {
234
235             // Note: Twitter truncates anything over 140, flags the status
236             // as "truncated."
237
238             $this->clientError(
239                 sprintf(
240                     _('That\'s too long. Max notice size is %d chars.'),
241                     Notice::maxContent()
242                 ),
243                 406,
244                 $this->format
245             );
246
247             return;
248         }
249
250         // Check for commands
251
252         $inter = new CommandInterpreter();
253         $cmd = $inter->handle_command($this->auth_user, $status_shortened);
254
255         if ($cmd) {
256
257             if ($this->supported($cmd)) {
258                 $cmd->execute(new Channel());
259             }
260
261             // Cmd not supported?  Twitter just returns your latest status.
262             // And, it returns your last status whether the cmd was successful
263             // or not!
264
265             $this->notice = $this->auth_user->getCurrentNotice();
266
267         } else {
268
269             $reply_to = null;
270
271             if (!empty($this->in_reply_to_status_id)) {
272
273                 // Check whether notice actually exists
274
275                 $reply = Notice::staticGet($this->in_reply_to_status_id);
276
277                 if ($reply) {
278                     $reply_to = $this->in_reply_to_status_id;
279                 } else {
280                     $this->clientError(
281                         _('Not found.'),
282                         $code = 404,
283                         $this->format
284                     );
285                     return;
286                 }
287             }
288
289             $upload = null;
290
291             try {
292                 $upload = MediaFile::fromUpload('media', $this->auth_user);
293             } catch (ClientException $ce) {
294                 $this->clientError($ce->getMessage());
295                 return;
296             }
297
298             if (isset($upload)) {
299                 $status_shortened .= ' ' . $upload->shortUrl();
300
301                 if (Notice::contentTooLong($status_shortened)) {
302                     $upload->delete();
303                     $msg = _(
304                         'Max notice size is %d chars, ' .
305                         'including attachment URL.'
306                     );
307                     $this->clientError(sprintf($msg, Notice::maxContent()));
308                 }
309             }
310
311             $content = html_entity_decode($status_shortened, ENT_NOQUOTES, 'UTF-8');
312
313             $options = array('reply_to' => $reply_to);
314
315             if ($this->auth_user->shareLocation()) {
316
317                 $locOptions = Notice::locationOptions($this->lat,
318                                                       $this->lon,
319                                                       null,
320                                                       null,
321                                                       $this->auth_user->getProfile());
322
323                 $options = array_merge($options, $locOptions);
324             }
325
326             try {
327                 $this->notice = Notice::saveNew(
328                     $this->auth_user->id,
329                     $content,
330                     $this->source,
331                     $options
332                 );
333             } catch (Exception $e) {
334                 $this->clientError($e->getMessage());
335                 return;
336             }
337
338             if (isset($upload)) {
339                 $upload->attachToNotice($this->notice);
340             }
341
342         }
343
344         $this->showNotice();
345     }
346
347     /**
348      * Show the resulting notice
349      *
350      * @return void
351      */
352
353     function showNotice()
354     {
355         if (!empty($this->notice)) {
356             if ($this->format == 'xml') {
357                 $this->showSingleXmlStatus($this->notice);
358             } elseif ($this->format == 'json') {
359                 $this->show_single_json_status($this->notice);
360             }
361         }
362     }
363
364     /**
365      * Is this command supported when doing an update from the API?
366      *
367      * @param string $cmd the command to check for
368      *
369      * @return boolean true or false
370      */
371
372     function supported($cmd)
373     {
374         static $cmdlist = array('MessageCommand', 'SubCommand', 'UnsubCommand',
375             'FavCommand', 'OnCommand', 'OffCommand');
376
377         if (in_array(get_class($cmd), $cmdlist)) {
378             return true;
379         }
380
381         return false;
382     }
383
384 }