API: Page prop=imageinfo by (title, timestamp) rather than using an offset. Suggested...
[lhc/web/wiklou.git] / includes / api / ApiMove.php
1 <?php
2
3 /*
4 * Created on Oct 31, 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 * @ingroup API
33 */
34 class ApiMove extends ApiBase {
35
36 public function __construct($main, $action) {
37 parent :: __construct($main, $action);
38 }
39
40 public function execute() {
41 global $wgUser;
42 $this->getMain()->requestWriteMode();
43 $params = $this->extractRequestParams();
44 if(is_null($params['reason']))
45 $params['reason'] = '';
46
47 $this->requireOnlyOneParameter($params, 'from', 'fromid');
48 if(!isset($params['to']))
49 $this->dieUsageMsg(array('missingparam', 'to'));
50 if(!isset($params['token']))
51 $this->dieUsageMsg(array('missingparam', 'token'));
52 if(!$wgUser->matchEditToken($params['token']))
53 $this->dieUsageMsg(array('sessionfailure'));
54
55 if(isset($params['from']))
56 {
57 $fromTitle = Title::newFromText($params['from']);
58 if(!$fromTitle)
59 $this->dieUsageMsg(array('invalidtitle', $params['from']));
60 }
61 else if(isset($params['fromid']))
62 {
63 $fromTitle = Title::newFromID($params['fromid']);
64 if(!$fromTitle)
65 $this->dieUsageMsg(array('nosuchpageid', $params['fromid']));
66 }
67 if(!$fromTitle->exists())
68 $this->dieUsageMsg(array('notanarticle'));
69 $fromTalk = $fromTitle->getTalkPage();
70
71 $toTitle = Title::newFromText($params['to']);
72 if(!$toTitle)
73 $this->dieUsageMsg(array('invalidtitle', $params['to']));
74 $toTalk = $toTitle->getTalkPage();
75
76 # Move the page
77 $hookErr = null;
78 $retval = $fromTitle->moveTo($toTitle, true, $params['reason'], !$params['noredirect']);
79 if($retval !== true)
80 $this->dieUsageMsg(reset($retval));
81
82 $r = array('from' => $fromTitle->getPrefixedText(), 'to' => $toTitle->getPrefixedText(), 'reason' => $params['reason']);
83 if(!$params['noredirect'] || !$wgUser->isAllowed('suppressredirect'))
84 $r['redirectcreated'] = '';
85
86 # Move the talk page
87 if($params['movetalk'] && $fromTalk->exists() && !$fromTitle->isTalkPage())
88 {
89 $retval = $fromTalk->moveTo($toTalk, true, $params['reason'], !$params['noredirect']);
90 if($retval === true)
91 {
92 $r['talkfrom'] = $fromTalk->getPrefixedText();
93 $r['talkto'] = $toTalk->getPrefixedText();
94 }
95 // We're not gonna dieUsage() on failure, since we already changed something
96 else
97 {
98 $parsed = $this->parseMsg(reset($retval));
99 $r['talkmove-error-code'] = $parsed['code'];
100 $r['talkmove-error-info'] = $parsed['info'];
101 }
102 }
103
104 # Move subpages
105 if($params['movesubpages'])
106 {
107 $r['subpages'] = $this->moveSubpages($fromTitle, $toTitle,
108 $params['reason'], $params['noredirect']);
109 $this->getResult()->setIndexedTagName($r['subpages'], 'subpage');
110 if($params['movetalk'])
111 {
112 $r['subpages-talk'] = $this->moveSubpages($fromTalk, $toTalk,
113 $params['reason'], $params['noredirect']);
114 $this->getResult()->setIndexedTagName($r['subpages-talk'], 'subpage');
115 }
116 }
117
118 # Watch pages
119 if($params['watch'] || $wgUser->getOption('watchmoves'))
120 {
121 $wgUser->addWatch($fromTitle);
122 $wgUser->addWatch($toTitle);
123 }
124 else if($params['unwatch'])
125 {
126 $wgUser->removeWatch($fromTitle);
127 $wgUser->removeWatch($toTitle);
128 }
129 $this->getResult()->addValue(null, $this->getModuleName(), $r);
130 }
131
132 public function moveSubpages($fromTitle, $toTitle, $reason, $noredirect)
133 {
134 $retval = array();
135 $success = $fromTitle->moveSubpages($toTitle, true, $reason, !$noredirect);
136 if(isset($success[0]))
137 return array('error' => $this->parseMsg($success));
138 else
139 {
140 // At least some pages could be moved
141 // Report each of them separately
142 foreach($success as $oldTitle => $newTitle)
143 {
144 $r = array('from' => $oldTitle);
145 if(is_array($newTitle))
146 $r['error'] = $this->parseMsg(reset($newTitle));
147 else
148 // Success
149 $r['to'] = $newTitle;
150 $retval[] = $r;
151 }
152 }
153 return $retval;
154 }
155
156 public function mustBePosted() { return true; }
157
158 public function getAllowedParams() {
159 return array (
160 'from' => null,
161 'fromid' => array(
162 ApiBase::PARAM_TYPE => 'integer'
163 ),
164 'to' => null,
165 'token' => null,
166 'reason' => null,
167 'movetalk' => false,
168 'movesubpages' => false,
169 'noredirect' => false,
170 'watch' => false,
171 'unwatch' => false
172 );
173 }
174
175 public function getParamDescription() {
176 return array (
177 'from' => 'Title of the page you want to move. Cannot be used together with fromid.',
178 'fromid' => 'Page ID of the page you want to move. Cannot be used together with from.',
179 'to' => 'Title you want to rename the page to.',
180 'token' => 'A move token previously retrieved through prop=info',
181 'reason' => 'Reason for the move (optional).',
182 'movetalk' => 'Move the talk page, if it exists.',
183 'movesubpages' => 'Move subpages, if applicable',
184 'noredirect' => 'Don\'t create a redirect',
185 'watch' => 'Add the page and the redirect to your watchlist',
186 'unwatch' => 'Remove the page and the redirect from your watchlist'
187 );
188 }
189
190 public function getDescription() {
191 return array(
192 'Move a page.'
193 );
194 }
195
196 protected function getExamples() {
197 return array (
198 'api.php?action=move&from=Exampel&to=Example&token=123ABC&reason=Misspelled%20title&movetalk&noredirect'
199 );
200 }
201
202 public function getVersion() {
203 return __CLASS__ . ': $Id$';
204 }
205 }