d8b57182c46e84308cbc633a102a51dd5534a3bc
[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 * Extracts the title, token, and reason from the request parameters and invokes
36 * the local delete() function with these as arguments. It does not make use of
37 * the delete function specified by Article.php. If the deletion succeeds, the
38 * details of the article deleted and the reason for deletion are added to the
39 * result object.
40 */
41 public function execute() {
42 $params = $this->extractRequestParams();
43
44 $pageObj = $this->getTitleOrPageId( $params, 'fromdbmaster' );
45 if ( !$pageObj->exists() ) {
46 $this->dieUsageMsg( 'notanarticle' );
47 }
48
49 $titleObj = $pageObj->getTitle();
50 $reason = $params['reason'];
51 $user = $this->getUser();
52
53 if ( $titleObj->getNamespace() == NS_FILE ) {
54 $status = self::deleteFile(
55 $pageObj,
56 $user,
57 $params['token'],
58 $params['oldimage'],
59 $reason,
60 false
61 );
62 } else {
63 $status = self::delete( $pageObj, $user, $params['token'], $reason );
64 }
65
66 if ( is_array( $status ) ) {
67 $this->dieUsageMsg( $status[0] );
68 }
69 if ( !$status->isGood() ) {
70 $this->dieStatus( $status );
71 }
72
73 // Deprecated parameters
74 if ( $params['watch'] ) {
75 $this->logFeatureUsage( 'action=delete&watch' );
76 $watch = 'watch';
77 } elseif ( $params['unwatch'] ) {
78 $this->logFeatureUsage( 'action=delete&unwatch' );
79 $watch = 'unwatch';
80 } else {
81 $watch = $params['watchlist'];
82 }
83 $this->setWatch( $watch, $titleObj, 'watchdeletion' );
84
85 $r = array(
86 'title' => $titleObj->getPrefixedText(),
87 'reason' => $reason,
88 'logid' => $status->value
89 );
90 $this->getResult()->addValue( null, $this->getModuleName(), $r );
91 }
92
93 /**
94 * @param Title $title
95 * @param User $user User doing the action
96 * @param string $token
97 * @return array
98 */
99 private static function getPermissionsError( $title, $user, $token ) {
100 // Check permissions
101 return $title->getUserPermissionsErrors( 'delete', $user );
102 }
103
104 /**
105 * We have our own delete() function, since Article.php's implementation is split in two phases
106 *
107 * @param Page|WikiPage $page Page or WikiPage object to work on
108 * @param User $user User doing the action
109 * @param string $token Delete token (same as edit token)
110 * @param string|null $reason Reason for the deletion. Autogenerated if null
111 * @return Status|array
112 */
113 public static function delete( Page $page, User $user, $token, &$reason = null ) {
114 $title = $page->getTitle();
115 $errors = self::getPermissionsError( $title, $user, $token );
116 if ( count( $errors ) ) {
117 return $errors;
118 }
119
120 // Auto-generate a summary, if necessary
121 if ( is_null( $reason ) ) {
122 // Need to pass a throwaway variable because generateReason expects
123 // a reference
124 $hasHistory = false;
125 $reason = $page->getAutoDeleteReason( $hasHistory );
126 if ( $reason === false ) {
127 return array( array( 'cannotdelete', $title->getPrefixedText() ) );
128 }
129 }
130
131 $error = '';
132
133 // Luckily, Article.php provides a reusable delete function that does the hard work for us
134 return $page->doDeleteArticleReal( $reason, false, 0, true, $error );
135 }
136
137 /**
138 * @param Page $page Object to work on
139 * @param User $user User doing the action
140 * @param string $token Delete token (same as edit token)
141 * @param string $oldimage Archive name
142 * @param string $reason Reason for the deletion. Autogenerated if null.
143 * @param bool $suppress Whether to mark all deleted versions as restricted
144 * @return Status|array
145 */
146 public static function deleteFile( Page $page, User $user, $token, $oldimage,
147 &$reason = null, $suppress = false
148 ) {
149 $title = $page->getTitle();
150 $errors = self::getPermissionsError( $title, $user, $token );
151 if ( count( $errors ) ) {
152 return $errors;
153 }
154
155 $file = $page->getFile();
156 if ( !$file->exists() || !$file->isLocal() || $file->getRedirected() ) {
157 return self::delete( $page, $user, $token, $reason );
158 }
159
160 if ( $oldimage ) {
161 if ( !FileDeleteForm::isValidOldSpec( $oldimage ) ) {
162 return array( array( 'invalidoldimage' ) );
163 }
164 $oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $oldimage );
165 if ( !$oldfile->exists() || !$oldfile->isLocal() || $oldfile->getRedirected() ) {
166 return array( array( 'nodeleteablefile' ) );
167 }
168 }
169
170 if ( is_null( $reason ) ) { // Log and RC don't like null reasons
171 $reason = '';
172 }
173
174 return FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, $suppress, $user );
175 }
176
177 public function mustBePosted() {
178 return true;
179 }
180
181 public function isWriteMode() {
182 return true;
183 }
184
185 public function getAllowedParams() {
186 return array(
187 'title' => null,
188 'pageid' => array(
189 ApiBase::PARAM_TYPE => 'integer'
190 ),
191 'reason' => null,
192 'watch' => array(
193 ApiBase::PARAM_DFLT => false,
194 ApiBase::PARAM_DEPRECATED => true,
195 ),
196 'watchlist' => array(
197 ApiBase::PARAM_DFLT => 'preferences',
198 ApiBase::PARAM_TYPE => array(
199 'watch',
200 'unwatch',
201 'preferences',
202 'nochange'
203 ),
204 ),
205 'unwatch' => array(
206 ApiBase::PARAM_DFLT => false,
207 ApiBase::PARAM_DEPRECATED => true,
208 ),
209 'oldimage' => null,
210 );
211 }
212
213 public function needsToken() {
214 return 'csrf';
215 }
216
217 protected function getExamplesMessages() {
218 return array(
219 'action=delete&title=Main%20Page&token=123ABC'
220 => 'apihelp-delete-example-simple',
221 'action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move'
222 => 'apihelp-delete-example-reason',
223 );
224 }
225
226 public function getHelpUrls() {
227 return 'https://www.mediawiki.org/wiki/API:Delete';
228 }
229 }