Remove deprecated ApiMain::scheduleCommit()
[lhc/web/wiklou.git] / includes / api / ApiDelete.php
1 <?php
2
3 /*
4 * Created on Jun 30, 2007
5 * API for MediaWiki 1.8+
6 *
7 * Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 */
24
25 if (!defined('MEDIAWIKI')) {
26 // Eclipse helper - will be ignored in production
27 require_once ("ApiBase.php");
28 }
29
30
31 /**
32 * API module that facilitates deleting pages. The API eqivalent of action=delete.
33 * Requires API write mode to be enabled.
34 *
35 * @addtogroup API
36 */
37 class ApiDelete extends ApiBase {
38
39 public function __construct($main, $action) {
40 parent :: __construct($main, $action);
41 }
42
43 /**
44 * Extracts the title, token, and reason from the request parameters and invokes
45 * the local delete() function with these as arguments. It does not make use of
46 * the delete function specified by Article.php. If the deletion succeeds, the
47 * details of the article deleted and the reason for deletion are added to the
48 * result object.
49 */
50 public function execute() {
51 global $wgUser;
52 $this->getMain()->requestWriteMode();
53 $params = $this->extractRequestParams();
54
55 $titleObj = NULL;
56 if(!isset($params['title']))
57 $this->dieUsageMsg(array('missingparam', 'title'));
58 if(!isset($params['token']))
59 $this->dieUsageMsg(array('missingparam', 'token'));
60
61 $titleObj = Title::newFromText($params['title']);
62 if(!$titleObj)
63 $this->dieUsageMsg(array('invalidtitle', $params['title']));
64 if(!$titleObj->exists())
65 $this->dieUsageMsg(array('notanarticle'));
66
67 $articleObj = new Article($titleObj);
68 $reason = (isset($params['reason']) ? $params['reason'] : NULL);
69 $retval = self::delete($articleObj, $params['token'], $reason);
70
71 if(!empty($retval))
72 // We don't care about multiple errors, just report one of them
73 $this->dieUsageMsg(current($retval));
74
75 if($params['watch'] || $wgUser->getOption('watchdeletion'))
76 $articleObj->doWatch();
77 else if($params['unwatch'])
78 $articleObj->doUnwatch();
79 $r = array('title' => $titleObj->getPrefixedText(), 'reason' => $reason);
80 $this->getResult()->addValue(null, $this->getModuleName(), $r);
81 }
82
83 /**
84 * We have our own delete() function, since Article.php's implementation is split in two phases
85 *
86 * @param Article $article - Article object to work on
87 * @param string $token - Delete token (same as edit token)
88 * @param string $reason - Reason for the deletion. Autogenerated if NULL
89 * @return Title::getUserPermissionsErrors()-like array
90 */
91 public static function delete(&$article, $token, &$reason = NULL)
92 {
93 global $wgUser;
94
95 // Check permissions
96 $errors = $article->mTitle->getUserPermissionsErrors('delete', $wgUser);
97 if(!empty($errors))
98 return $errors;
99 if(wfReadOnly())
100 return array(array('readonlytext'));
101 if($wgUser->isBlocked())
102 return array(array('blocked'));
103
104 // Check token
105 if(!$wgUser->matchEditToken($token))
106 return array(array('sessionfailure'));
107
108 // Auto-generate a summary, if necessary
109 if(is_null($reason))
110 {
111 $reason = $article->generateReason($hasHistory);
112 if($reason === false)
113 return array(array('cannotdelete'));
114 }
115
116 // Luckily, Article.php provides a reusable delete function that does the hard work for us
117 if($article->doDeleteArticle($reason))
118 return array();
119 return array(array('cannotdelete', $article->mTitle->getPrefixedText()));
120 }
121
122 public function mustBePosted() { return true; }
123
124 public function getAllowedParams() {
125 return array (
126 'title' => null,
127 'token' => null,
128 'reason' => null,
129 'watch' => false,
130 'unwatch' => false
131 );
132 }
133
134 public function getParamDescription() {
135 return array (
136 'title' => 'Title of the page you want to delete.',
137 'token' => 'A delete token previously retrieved through prop=info',
138 'reason' => 'Reason for the deletion. If not set, an automatically generated reason will be used.',
139 'watch' => 'Add the page to your watchlist',
140 'unwatch' => 'Remove the page from your watchlist'
141 );
142 }
143
144 public function getDescription() {
145 return array(
146 'Deletes a page. You need to be logged in as a sysop to use this function, see also action=login.'
147 );
148 }
149
150 protected function getExamples() {
151 return array (
152 'api.php?action=delete&title=Main%20Page&token=123ABC',
153 'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move'
154 );
155 }
156
157 public function getVersion() {
158 return __CLASS__ . ': $Id$';
159 }
160 }