Merge "[LockManager] Cleaned up DBLockManager and reduced code duplication."
[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 /**
28 * API module that facilitates deleting pages. The API equivalent of action=delete.
29 * Requires API write mode to be enabled.
30 *
31 * @ingroup API
32 */
33 class ApiDelete extends ApiBase {
34
35 public function __construct( $main, $action ) {
36 parent::__construct( $main, $action );
37 }
38
39 /**
40 * Extracts the title, token, and reason from the request parameters and invokes
41 * the local delete() function with these as arguments. It does not make use of
42 * the delete function specified by Article.php. If the deletion succeeds, the
43 * details of the article deleted and the reason for deletion are added to the
44 * result object.
45 */
46 public function execute() {
47 $params = $this->extractRequestParams();
48
49 $pageObj = $this->getTitleOrPageId( $params, 'fromdbmaster' );
50 if ( !$pageObj->exists() ) {
51 $this->dieUsageMsg( 'notanarticle' );
52 }
53
54 $titleObj = $pageObj->getTitle();
55 $reason = $params['reason'];
56 $user = $this->getUser();
57
58 if ( $titleObj->getNamespace() == NS_FILE ) {
59 $status = self::deleteFile( $pageObj, $user, $params['token'], $params['oldimage'], $reason, false );
60 } else {
61 $status = self::delete( $pageObj, $user, $params['token'], $reason );
62 }
63
64 if ( !$status->isGood() ) {
65 $errors = $status->getErrorsArray();
66 $this->dieUsageMsg( $errors[0] ); // We don't care about multiple errors, just report one of them
67 }
68
69 // Deprecated parameters
70 if ( $params['watch'] ) {
71 $watch = 'watch';
72 } elseif ( $params['unwatch'] ) {
73 $watch = 'unwatch';
74 } else {
75 $watch = $params['watchlist'];
76 }
77 $this->setWatch( $watch, $titleObj, 'watchdeletion' );
78
79 $r = array(
80 'title' => $titleObj->getPrefixedText(),
81 'reason' => $reason,
82 'logid' => $status->value
83 );
84 $this->getResult()->addValue( null, $this->getModuleName(), $r );
85 }
86
87 /**
88 * @param $title Title
89 * @param $user User doing the action
90 * @param $token String
91 * @return array
92 */
93 private static function getPermissionsError( $title, $user, $token ) {
94 // Check permissions
95 return $title->getUserPermissionsErrors( 'delete', $user );
96 }
97
98 /**
99 * We have our own delete() function, since Article.php's implementation is split in two phases
100 *
101 * @param $page WikiPage object to work on
102 * @param $user User doing the action
103 * @param $token String: delete token (same as edit token)
104 * @param $reason String: reason for the deletion. Autogenerated if NULL
105 * @return Status
106 */
107 public static function delete( Page $page, User $user, $token, &$reason = null ) {
108 $title = $page->getTitle();
109 $errors = self::getPermissionsError( $title, $user, $token );
110 if ( count( $errors ) ) {
111 return $errors;
112 }
113
114 // Auto-generate a summary, if necessary
115 if ( is_null( $reason ) ) {
116 // Need to pass a throwaway variable because generateReason expects
117 // a reference
118 $hasHistory = false;
119 $reason = $page->getAutoDeleteReason( $hasHistory );
120 if ( $reason === false ) {
121 return array( array( 'cannotdelete', $title->getPrefixedText() ) );
122 }
123 }
124
125 $error = '';
126 // Luckily, Article.php provides a reusable delete function that does the hard work for us
127 return $page->doDeleteArticleReal( $reason, false, 0, true, $error );
128 }
129
130 /**
131 * @param $page WikiPage object to work on
132 * @param $user User doing the action
133 * @param $token
134 * @param $oldimage
135 * @param $reason
136 * @param $suppress bool
137 * @return Status
138 */
139 public static function deleteFile( Page $page, User $user, $token, $oldimage, &$reason = null, $suppress = false ) {
140 $title = $page->getTitle();
141 $errors = self::getPermissionsError( $title, $user, $token );
142 if ( count( $errors ) ) {
143 return $errors;
144 }
145
146 $file = $page->getFile();
147 if ( !$file->exists() || !$file->isLocal() || $file->getRedirected() ) {
148 return self::delete( $page, $user, $token, $reason );
149 }
150
151 if ( $oldimage ) {
152 if ( !FileDeleteForm::isValidOldSpec( $oldimage ) ) {
153 return array( array( 'invalidoldimage' ) );
154 }
155 $oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $oldimage );
156 if ( !$oldfile->exists() || !$oldfile->isLocal() || $oldfile->getRedirected() ) {
157 return array( array( 'nodeleteablefile' ) );
158 }
159 }
160
161 if ( is_null( $reason ) ) { // Log and RC don't like null reasons
162 $reason = '';
163 }
164 return FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, $suppress );
165 }
166
167 public function mustBePosted() {
168 return true;
169 }
170
171 public function isWriteMode() {
172 return true;
173 }
174
175 public function getAllowedParams() {
176 return array(
177 'title' => null,
178 'pageid' => array(
179 ApiBase::PARAM_TYPE => 'integer'
180 ),
181 'token' => array(
182 ApiBase::PARAM_TYPE => 'string',
183 ApiBase::PARAM_REQUIRED => true
184 ),
185 'reason' => null,
186 'watch' => array(
187 ApiBase::PARAM_DFLT => false,
188 ApiBase::PARAM_DEPRECATED => true,
189 ),
190 'watchlist' => array(
191 ApiBase::PARAM_DFLT => 'preferences',
192 ApiBase::PARAM_TYPE => array(
193 'watch',
194 'unwatch',
195 'preferences',
196 'nochange'
197 ),
198 ),
199 'unwatch' => array(
200 ApiBase::PARAM_DFLT => false,
201 ApiBase::PARAM_DEPRECATED => true,
202 ),
203 'oldimage' => null,
204 );
205 }
206
207 public function getParamDescription() {
208 $p = $this->getModulePrefix();
209 return array(
210 'title' => "Title of the page you want to delete. Cannot be used together with {$p}pageid",
211 'pageid' => "Page ID of the page you want to delete. Cannot be used together with {$p}title",
212 'token' => 'A delete token previously retrieved through prop=info',
213 'reason' => 'Reason for the deletion. If not set, an automatically generated reason will be used',
214 'watch' => 'Add the page to your watchlist',
215 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
216 'unwatch' => 'Remove the page from your watchlist',
217 'oldimage' => 'The name of the old image to delete as provided by iiprop=archivename'
218 );
219 }
220
221 public function getResultProperties() {
222 return array(
223 '' => array(
224 'title' => 'string',
225 'reason' => 'string',
226 'logid' => 'integer'
227 )
228 );
229 }
230
231 public function getDescription() {
232 return 'Delete a page';
233 }
234
235 public function getPossibleErrors() {
236 return array_merge( parent::getPossibleErrors(),
237 $this->getTitleOrPageIdErrorMessage(),
238 array(
239 array( 'notanarticle' ),
240 array( 'hookaborted', 'error' ),
241 array( 'delete-toobig', 'limit' ),
242 array( 'cannotdelete', 'title' ),
243 array( 'invalidoldimage' ),
244 array( 'nodeleteablefile' ),
245 )
246 );
247 }
248
249 public function needsToken() {
250 return true;
251 }
252
253 public function getTokenSalt() {
254 return '';
255 }
256
257 public function getExamples() {
258 return array(
259 'api.php?action=delete&title=Main%20Page&token=123ABC' => 'Delete the Main Page',
260 'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move' => 'Delete the Main Page with the reason "Preparing for move"',
261 );
262 }
263
264 public function getHelpUrls() {
265 return 'https://www.mediawiki.org/wiki/API:Delete';
266 }
267
268 public function getVersion() {
269 return __CLASS__ . ': $Id$';
270 }
271 }