]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusesdestroy.php
Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / actions / apistatusesdestroy.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Destroy 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    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/apiauth.php';
42
43 /**
44  * Deletes one of the authenticating user's statuses (notices).
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 ApiStatusesDestroyAction extends ApiAuthAction
60 {
61     var $status = null;
62
63     /**
64      * Take arguments for running
65      *
66      * @param array $args $_REQUEST args
67      *
68      * @return boolean success flag
69      *
70      */
71
72     function prepare($args)
73     {
74         parent::prepare($args);
75
76         $this->user = $this->auth_user;
77         $this->notice_id = (int)$this->trimmed('id');
78
79         if (empty($notice_id)) {
80             $this->notice_id = (int)$this->arg('id');
81         }
82
83         $this->notice = Notice::staticGet((int)$this->notice_id);
84
85         return true;
86      }
87
88     /**
89      * Handle the request
90      *
91      * Delete the notice and all related replies
92      *
93      * @param array $args $_REQUEST data (unused)
94      *
95      * @return void
96      */
97
98     function handle($args)
99     {
100         parent::handle($args);
101
102         if (!in_array($this->format, array('xml', 'json'))) {
103             $this->clientError(
104                 _('API method not found.'),
105                 404
106             );
107             return;
108         }
109
110         if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) {
111             $this->clientError(
112                 _('This method requires a POST or DELETE.'),
113                 400,
114                 $this->format
115             );
116             return;
117         }
118
119         if (empty($this->notice)) {
120             $this->clientError(
121                 _('No status found with that ID.'),
122                 404, $this->format
123             );
124             return;
125         }
126
127         if ($this->user->id == $this->notice->profile_id) {
128             $replies = new Reply;
129             $replies->get('notice_id', $this->notice_id);
130             $replies->delete();
131             $this->notice->delete();
132                 $this->showNotice();
133         } else {
134             $this->clientError(
135                 _('You may not delete another user\'s status.'),
136                 403,
137                 $this->format
138             );
139         }
140     }
141
142     /**
143      * Show the deleted notice
144      *
145      * @return void
146      */
147
148     function showNotice()
149     {
150         if (!empty($this->notice)) {
151             if ($this->format == 'xml') {
152                 $this->showSingleXmlStatus($this->notice);
153             } elseif ($this->format == 'json') {
154                 $this->show_single_json_status($this->notice);
155             }
156         }
157     }
158
159 }