3 * StatusNet, the distributed open-source microblogging tool
5 * Repeat a notice through the API
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 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/
30 if (!defined('STATUSNET')) {
34 require_once INSTALLDIR . '/lib/apiauth.php';
35 require_once INSTALLDIR . '/lib/mediafile.php';
38 * Repeat a notice through the API
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/
46 class ApiStatusesRetweetAction extends ApiAuthAction
51 * Take arguments for running
53 * @param array $args $_REQUEST args
55 * @return boolean success flag
57 function prepare($args)
59 parent::prepare($args);
61 if ($_SERVER['REQUEST_METHOD'] != 'POST') {
62 // TRANS: Client error. POST is a HTTP command. It should not be translated.
63 $this->clientError(_('This method requires a POST.'),
68 $id = $this->trimmed('id');
70 $this->original = Notice::staticGet('id', $id);
72 if (empty($this->original)) {
73 // TRANS: Client error displayed trying to repeat a non-existing notice through the API.
74 $this->clientError(_('No such notice.'),
79 $this->user = $this->auth_user;
87 * Make a new notice for the update, save it, and show it
89 * @param array $args $_REQUEST data (unused)
93 function handle($args)
95 parent::handle($args);
97 $repeat = $this->original->repeat($this->user->id, $this->source);
99 $this->showNotice($repeat);
103 * Show the resulting notice
107 function showNotice($notice)
109 if (!empty($notice)) {
110 if ($this->format == 'xml') {
111 $this->showSingleXmlStatus($notice);
112 } elseif ($this->format == 'json') {
113 $this->show_single_json_status($notice);