]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusesretweet.php
(Puctuation) consistency in clientError() calls.
[quix0rs-gnu-social.git] / actions / apistatusesretweet.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Repeat a notice 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    Evan Prodromou <evan@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/apiauth.php';
35 require_once INSTALLDIR . '/lib/mediafile.php';
36
37 /**
38  * Repeat a notice through the API
39  *
40  * @category API
41  * @package  StatusNet
42  * @author   Evan Prodromou <evan@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  */
46
47 class ApiStatusesRetweetAction extends ApiAuthAction
48 {
49     var $original = null;
50
51     /**
52      * Take arguments for running
53      *
54      * @param array $args $_REQUEST args
55      *
56      * @return boolean success flag
57      *
58      */
59
60     function prepare($args)
61     {
62         parent::prepare($args);
63
64         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
65             $this->clientError(_('This method requires a POST.'),
66                                400, $this->format);
67             return false;
68         }
69
70         $id = $this->trimmed('id');
71
72         $this->original = Notice::staticGet('id', $id);
73
74         if (empty($this->original)) {
75             $this->clientError(_('No such notice.'),
76                                400, $this->format);
77             return false;
78         }
79
80         $this->user = $this->auth_user;
81
82         if ($this->user->id == $notice->profile_id) {
83             $this->clientError(_('Cannot repeat your own notice.'));
84                                400, $this->format);
85             return false;
86         }
87
88         $profile = $this->user->getProfile();
89
90         if ($profile->hasRepeated($id)) {
91             $this->clientError(_('Already repeated that notice.'),
92                                400, $this->format);
93             return false;
94         }
95
96         return true;
97     }
98
99     /**
100      * Handle the request
101      *
102      * Make a new notice for the update, save it, and show it
103      *
104      * @param array $args $_REQUEST data (unused)
105      *
106      * @return void
107      */
108
109     function handle($args)
110     {
111         parent::handle($args);
112
113         $repeat = $this->original->repeat($this->user->id, $this->source);
114
115         common_broadcast_notice($repeat);
116
117         $this->showNotice($repeat);
118     }
119
120     /**
121      * Show the resulting notice
122      *
123      * @return void
124      */
125
126     function showNotice($notice)
127     {
128         if (!empty($notice)) {
129             if ($this->format == 'xml') {
130                 $this->showSingleXmlStatus($notice);
131             } elseif ($this->format == 'json') {
132                 $this->show_single_json_status($notice);
133             }
134         }
135     }
136 }