Treat the "temp" repo zone as private
[mediawiki.git] / includes / api / ApiMove.php
blobdb0fde3486e91d96dce4f86f4191be83833cf708
1 <?php
2 /**
5 * Created on Oct 31, 2007
7 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
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.
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.
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
24 * @file
27 /**
28 * API Module to move pages
29 * @ingroup API
31 class ApiMove extends ApiBase {
33 public function execute() {
34 $user = $this->getUser();
35 $params = $this->extractRequestParams();
37 $this->requireOnlyOneParameter( $params, 'from', 'fromid' );
39 if ( isset( $params['from'] ) ) {
40 $fromTitle = Title::newFromText( $params['from'] );
41 if ( !$fromTitle || $fromTitle->isExternal() ) {
42 $this->dieUsageMsg( array( 'invalidtitle', $params['from'] ) );
44 } elseif ( isset( $params['fromid'] ) ) {
45 $fromTitle = Title::newFromID( $params['fromid'] );
46 if ( !$fromTitle ) {
47 $this->dieUsageMsg( array( 'nosuchpageid', $params['fromid'] ) );
51 if ( !$fromTitle->exists() ) {
52 $this->dieUsageMsg( 'notanarticle' );
54 $fromTalk = $fromTitle->getTalkPage();
56 $toTitle = Title::newFromText( $params['to'] );
57 if ( !$toTitle || $toTitle->isExternal() ) {
58 $this->dieUsageMsg( array( 'invalidtitle', $params['to'] ) );
60 $toTalk = $toTitle->getTalkPage();
62 if ( $toTitle->getNamespace() == NS_FILE
63 && !RepoGroup::singleton()->getLocalRepo()->findFile( $toTitle )
64 && wfFindFile( $toTitle )
65 ) {
66 if ( !$params['ignorewarnings'] && $user->isAllowed( 'reupload-shared' ) ) {
67 $this->dieUsageMsg( 'sharedfile-exists' );
68 } elseif ( !$user->isAllowed( 'reupload-shared' ) ) {
69 $this->dieUsageMsg( 'cantoverwrite-sharedfile' );
73 // Move the page
74 $toTitleExists = $toTitle->exists();
75 $retval = $fromTitle->moveTo( $toTitle, true, $params['reason'], !$params['noredirect'] );
76 if ( $retval !== true ) {
77 $this->dieUsageMsg( reset( $retval ) );
80 $r = array(
81 'from' => $fromTitle->getPrefixedText(),
82 'to' => $toTitle->getPrefixedText(),
83 'reason' => $params['reason']
86 if ( $fromTitle->exists() ) {
87 //NOTE: we assume that if the old title exists, it's because it was re-created as
88 // a redirect to the new title. This is not safe, but what we did before was
89 // even worse: we just determined whether a redirect should have been created,
90 // and reported that it was created if it should have, without any checks.
91 // Also note that isRedirect() is unreliable because of bug 37209.
92 $r['redirectcreated'] = '';
95 if ( $toTitleExists ) {
96 $r['moveoverredirect'] = '';
99 // Move the talk page
100 if ( $params['movetalk'] && $fromTalk->exists() && !$fromTitle->isTalkPage() ) {
101 $toTalkExists = $toTalk->exists();
102 $retval = $fromTalk->moveTo( $toTalk, true, $params['reason'], !$params['noredirect'] );
103 if ( $retval === true ) {
104 $r['talkfrom'] = $fromTalk->getPrefixedText();
105 $r['talkto'] = $toTalk->getPrefixedText();
106 if ( $toTalkExists ) {
107 $r['talkmoveoverredirect'] = '';
109 } else {
110 // We're not gonna dieUsage() on failure, since we already changed something
111 $parsed = $this->parseMsg( reset( $retval ) );
112 $r['talkmove-error-code'] = $parsed['code'];
113 $r['talkmove-error-info'] = $parsed['info'];
117 $result = $this->getResult();
119 // Move subpages
120 if ( $params['movesubpages'] ) {
121 $r['subpages'] = $this->moveSubpages( $fromTitle, $toTitle,
122 $params['reason'], $params['noredirect'] );
123 $result->setIndexedTagName( $r['subpages'], 'subpage' );
125 if ( $params['movetalk'] ) {
126 $r['subpages-talk'] = $this->moveSubpages( $fromTalk, $toTalk,
127 $params['reason'], $params['noredirect'] );
128 $result->setIndexedTagName( $r['subpages-talk'], 'subpage' );
132 $watch = 'preferences';
133 if ( isset( $params['watchlist'] ) ) {
134 $watch = $params['watchlist'];
135 } elseif ( $params['watch'] ) {
136 $watch = 'watch';
137 $this->logFeatureUsage( 'action=move&watch' );
138 } elseif ( $params['unwatch'] ) {
139 $watch = 'unwatch';
140 $this->logFeatureUsage( 'action=move&unwatch' );
143 // Watch pages
144 $this->setWatch( $watch, $fromTitle, 'watchmoves' );
145 $this->setWatch( $watch, $toTitle, 'watchmoves' );
147 $result->addValue( null, $this->getModuleName(), $r );
151 * @param Title $fromTitle
152 * @param Title $toTitle
153 * @param string $reason
154 * @param bool $noredirect
155 * @return array
157 public function moveSubpages( $fromTitle, $toTitle, $reason, $noredirect ) {
158 $retval = array();
159 $success = $fromTitle->moveSubpages( $toTitle, true, $reason, !$noredirect );
160 if ( isset( $success[0] ) ) {
161 return array( 'error' => $this->parseMsg( $success ) );
164 // At least some pages could be moved
165 // Report each of them separately
166 foreach ( $success as $oldTitle => $newTitle ) {
167 $r = array( 'from' => $oldTitle );
168 if ( is_array( $newTitle ) ) {
169 $r['error'] = $this->parseMsg( reset( $newTitle ) );
170 } else {
171 // Success
172 $r['to'] = $newTitle;
174 $retval[] = $r;
177 return $retval;
180 public function mustBePosted() {
181 return true;
184 public function isWriteMode() {
185 return true;
188 public function getAllowedParams() {
189 return array(
190 'from' => null,
191 'fromid' => array(
192 ApiBase::PARAM_TYPE => 'integer'
194 'to' => array(
195 ApiBase::PARAM_TYPE => 'string',
196 ApiBase::PARAM_REQUIRED => true
198 'reason' => '',
199 'movetalk' => false,
200 'movesubpages' => false,
201 'noredirect' => false,
202 'watch' => array(
203 ApiBase::PARAM_DFLT => false,
204 ApiBase::PARAM_DEPRECATED => true,
206 'unwatch' => array(
207 ApiBase::PARAM_DFLT => false,
208 ApiBase::PARAM_DEPRECATED => true,
210 'watchlist' => array(
211 ApiBase::PARAM_DFLT => 'preferences',
212 ApiBase::PARAM_TYPE => array(
213 'watch',
214 'unwatch',
215 'preferences',
216 'nochange'
219 'ignorewarnings' => false
223 public function needsToken() {
224 return 'csrf';
227 public function getExamplesMessages() {
228 return array(
229 'action=move&from=Badtitle&to=Goodtitle&token=123ABC&' .
230 'reason=Misspelled%20title&movetalk=&noredirect='
231 => 'apihelp-move-example-move',
235 public function getHelpUrls() {
236 return 'https://www.mediawiki.org/wiki/API:Move';