d05723e5e0541ed98b8da421926ddda209d9cf1b
[lhc/web/wiklou.git] / includes / api / ApiDelete.php
1 <?php
2 /**
3 *
4 *
5 * Created on Jun 30, 2007
6 *
7 * Copyright © 2007 Roan Kattouw <Firstname>.<Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 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 General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( "ApiBase.php" );
30 }
31
32 /**
33 * API module that facilitates deleting pages. The API equivalent of action=delete.
34 * Requires API write mode to be enabled.
35 *
36 * @ingroup API
37 */
38 class ApiDelete extends ApiBase {
39
40 public function __construct( $main, $action ) {
41 parent::__construct( $main, $action );
42 }
43
44 /**
45 * Extracts the title, token, and reason from the request parameters and invokes
46 * the local delete() function with these as arguments. It does not make use of
47 * the delete function specified by Article.php. If the deletion succeeds, the
48 * details of the article deleted and the reason for deletion are added to the
49 * result object.
50 */
51 public function execute() {
52 $params = $this->extractRequestParams();
53
54 $this->requireOnlyOneParameter( $params, 'title', 'pageid' );
55
56 if ( isset( $params['title'] ) ) {
57 $titleObj = Title::newFromText( $params['title'] );
58 if ( !$titleObj ) {
59 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
60 }
61 } elseif ( isset( $params['pageid'] ) ) {
62 $titleObj = Title::newFromID( $params['pageid'] );
63 if ( !$titleObj ) {
64 $this->dieUsageMsg( array( 'nosuchpageid', $params['pageid'] ) );
65 }
66 }
67 if ( !$titleObj->exists() ) {
68 $this->dieUsageMsg( array( 'notanarticle' ) );
69 }
70
71 $reason = ( isset( $params['reason'] ) ? $params['reason'] : null );
72 if ( $titleObj->getNamespace() == NS_FILE ) {
73 $retval = self::deleteFile( $params['token'], $titleObj, $params['oldimage'], $reason, false );
74 if ( count( $retval ) ) {
75 $this->dieUsageMsg( reset( $retval ) ); // We don't care about multiple errors, just report one of them
76 }
77 } else {
78 $articleObj = new Article( $titleObj );
79 $retval = self::delete( $articleObj, $params['token'], $reason );
80
81 if ( count( $retval ) ) {
82 $this->dieUsageMsg( reset( $retval ) ); // We don't care about multiple errors, just report one of them
83 }
84
85 // Deprecated parameters
86 if ( $params['watch'] ) {
87 $watch = 'watch';
88 } elseif ( $params['unwatch'] ) {
89 $watch = 'unwatch';
90 } else {
91 $watch = $params['watchlist'];
92 }
93 $this->setWatch( $watch, $titleObj, 'watchdeletion' );
94 }
95
96 $r = array( 'title' => $titleObj->getPrefixedText(), 'reason' => $reason );
97 $this->getResult()->addValue( null, $this->getModuleName(), $r );
98 }
99
100 /**
101 *
102 * @param &$title Title
103 * @param $token String
104 */
105 private static function getPermissionsError( &$title, $token ) {
106 global $wgUser;
107
108 // Check permissions
109 $errors = $title->getUserPermissionsErrors( 'delete', $wgUser );
110 if ( count( $errors ) > 0 ) {
111 return $errors;
112 }
113
114 return array();
115 }
116
117 /**
118 * We have our own delete() function, since Article.php's implementation is split in two phases
119 *
120 * @param $article Article object to work on
121 * @param $token String: delete token (same as edit token)
122 * @param $reason String: reason for the deletion. Autogenerated if NULL
123 * @return Title::getUserPermissionsErrors()-like array
124 */
125 public static function delete( &$article, $token, &$reason = null ) {
126 global $wgUser;
127 if ( $article->isBigDeletion() && !$wgUser->isAllowed( 'bigdelete' ) ) {
128 global $wgDeleteRevisionsLimit;
129 return array( array( 'delete-toobig', $wgDeleteRevisionsLimit ) );
130 }
131 $title = $article->getTitle();
132 $errors = self::getPermissionsError( $title, $token );
133 if ( count( $errors ) ) {
134 return $errors;
135 }
136
137 // Auto-generate a summary, if necessary
138 if ( is_null( $reason ) ) {
139 // Need to pass a throwaway variable because generateReason expects
140 // a reference
141 $hasHistory = false;
142 $reason = $article->generateReason( $hasHistory );
143 if ( $reason === false ) {
144 return array( array( 'cannotdelete' ) );
145 }
146 }
147
148 $error = '';
149 // Luckily, Article.php provides a reusable delete function that does the hard work for us
150 if ( $article->doDeleteArticle( $reason, false, 0, true, &$error ) ) {
151 return array();
152 } else {
153 return array( array( 'cannotdelete', $article->mTitle->getPrefixedText() ) );
154 }
155 }
156
157 /**
158 * @static
159 * @param $token
160 * @param $title Title
161 * @param $oldimage
162 * @param $reason
163 * @param $suppress bool
164 * @return \type|array|Title
165 */
166 public static function deleteFile( $token, &$title, $oldimage, &$reason = null, $suppress = false ) {
167 $errors = self::getPermissionsError( $title, $token );
168 if ( count( $errors ) ) {
169 return $errors;
170 }
171
172 if ( $oldimage && !FileDeleteForm::isValidOldSpec( $oldimage ) ) {
173 return array( array( 'invalidoldimage' ) );
174 }
175
176 $file = wfFindFile( $title, array( 'ignoreRedirect' => true ) );
177 $oldfile = false;
178
179 if ( $oldimage ) {
180 $oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $oldimage );
181 }
182
183 if ( !FileDeleteForm::haveDeletableFile( $file, $oldfile, $oldimage ) ) {
184 return self::delete( new Article( $title ), $token, $reason );
185 }
186 if ( is_null( $reason ) ) { // Log and RC don't like null reasons
187 $reason = '';
188 }
189 $status = FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, $suppress );
190
191 if ( !$status->isGood() ) {
192 return array( array( 'cannotdelete', $title->getPrefixedText() ) );
193 }
194
195 return array();
196 }
197
198 public function mustBePosted() {
199 return true;
200 }
201
202 public function isWriteMode() {
203 return true;
204 }
205
206 public function getAllowedParams() {
207 return array(
208 'title' => null,
209 'pageid' => array(
210 ApiBase::PARAM_TYPE => 'integer'
211 ),
212 'token' => null,
213 'reason' => null,
214 'watch' => array(
215 ApiBase::PARAM_DFLT => false,
216 ApiBase::PARAM_DEPRECATED => true,
217 ),
218 'watchlist' => array(
219 ApiBase::PARAM_DFLT => 'preferences',
220 ApiBase::PARAM_TYPE => array(
221 'watch',
222 'unwatch',
223 'preferences',
224 'nochange'
225 ),
226 ),
227 'unwatch' => array(
228 ApiBase::PARAM_DFLT => false,
229 ApiBase::PARAM_DEPRECATED => true,
230 ),
231 'oldimage' => null,
232 );
233 }
234
235 public function getParamDescription() {
236 $p = $this->getModulePrefix();
237 return array(
238 'title' => "Title of the page you want to delete. Cannot be used together with {$p}pageid",
239 'pageid' => "Page ID of the page you want to delete. Cannot be used together with {$p}title",
240 'token' => 'A delete token previously retrieved through prop=info',
241 'reason' => 'Reason for the deletion. If not set, an automatically generated reason will be used',
242 'watch' => 'Add the page to your watchlist',
243 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
244 'unwatch' => 'Remove the page from your watchlist',
245 'oldimage' => 'The name of the old image to delete as provided by iiprop=archivename'
246 );
247 }
248
249 public function getDescription() {
250 return 'Delete a page';
251 }
252
253 public function getPossibleErrors() {
254 return array_merge( parent::getPossibleErrors(),
255 $this->getRequireOnlyOneParameterErrorMessages( array( 'title', 'pageid' ) ),
256 array(
257 array( 'invalidtitle', 'title' ),
258 array( 'nosuchpageid', 'pageid' ),
259 array( 'notanarticle' ),
260 array( 'hookaborted', 'error' ),
261 )
262 );
263 }
264
265 public function needsToken() {
266 return true;
267 }
268
269 public function getTokenSalt() {
270 return '';
271 }
272
273 protected function getExamples() {
274 return array(
275 'api.php?action=delete&title=Main%20Page&token=123ABC',
276 'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move'
277 );
278 }
279
280 public function getVersion() {
281 return __CLASS__ . ': $Id$';
282 }
283 }