Replaced some hardcoded colons with the colon-separator message
[lhc/web/wiklou.git] / includes / specials / SpecialMergeHistory.php
1 <?php
2 /**
3 * Special page allowing users with the appropriate permissions to
4 * merge article histories, with some restrictions
5 *
6 * @file
7 * @ingroup SpecialPage
8 */
9
10 /**
11 * Constructor
12 */
13 function wfSpecialMergehistory( $par ) {
14 global $wgRequest;
15
16 $form = new MergehistoryForm( $wgRequest, $par );
17 $form->execute();
18 }
19
20 /**
21 * The HTML form for Special:MergeHistory, which allows users with the appropriate
22 * permissions to view and restore deleted content.
23 * @ingroup SpecialPage
24 */
25 class MergehistoryForm {
26 var $mAction, $mTarget, $mDest, $mTimestamp, $mTargetID, $mDestID, $mComment;
27 var $mTargetObj, $mDestObj;
28
29 function MergehistoryForm( $request, $par = "" ) {
30 global $wgUser;
31
32 $this->mAction = $request->getVal( 'action' );
33 $this->mTarget = $request->getVal( 'target' );
34 $this->mDest = $request->getVal( 'dest' );
35 $this->mSubmitted = $request->getBool( 'submitted' );
36
37 $this->mTargetID = intval( $request->getVal( 'targetID' ) );
38 $this->mDestID = intval( $request->getVal( 'destID' ) );
39 $this->mTimestamp = $request->getVal( 'mergepoint' );
40 if( !preg_match("/[0-9]{14}/",$this->mTimestamp) ) {
41 $this->mTimestamp = '';
42 }
43 $this->mComment = $request->getText( 'wpComment' );
44
45 $this->mMerge = $request->wasPosted() && $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
46 // target page
47 if( $this->mSubmitted ) {
48 $this->mTargetObj = Title::newFromURL( $this->mTarget );
49 $this->mDestObj = Title::newFromURL( $this->mDest );
50 } else {
51 $this->mTargetObj = null;
52 $this->mDestObj = null;
53 }
54
55 $this->preCacheMessages();
56 }
57
58 /**
59 * As we use the same small set of messages in various methods and that
60 * they are called often, we call them once and save them in $this->message
61 */
62 function preCacheMessages() {
63 // Precache various messages
64 if( !isset( $this->message ) ) {
65 $this->message['last'] = wfMsgExt( 'last', array( 'escape') );
66 }
67 }
68
69 function execute() {
70 global $wgOut, $wgUser;
71
72 $wgOut->setPagetitle( wfMsgHtml( "mergehistory" ) );
73
74 if( $this->mTargetID && $this->mDestID && $this->mAction=="submit" && $this->mMerge ) {
75 return $this->merge();
76 }
77
78 if ( !$this->mSubmitted ) {
79 $this->showMergeForm();
80 return;
81 }
82
83 $errors = array();
84 if ( !$this->mTargetObj instanceof Title ) {
85 $errors[] = wfMsgExt( 'mergehistory-invalid-source', array( 'parse' ) );
86 } elseif( !$this->mTargetObj->exists() ) {
87 $errors[] = wfMsgExt( 'mergehistory-no-source', array( 'parse' ),
88 wfEscapeWikiText( $this->mTargetObj->getPrefixedText() )
89 );
90 }
91
92 if ( !$this->mDestObj instanceof Title) {
93 $errors[] = wfMsgExt( 'mergehistory-invalid-destination', array( 'parse' ) );
94 } elseif( !$this->mDestObj->exists() ) {
95 $errors[] = wfMsgExt( 'mergehistory-no-destination', array( 'parse' ),
96 wfEscapeWikiText( $this->mDestObj->getPrefixedText() )
97 );
98 }
99
100 if ( $this->mTargetObj->equals( $this->mDestObj ) ) {
101 $errors[] = wfMsgExt( 'mergehistory-same-destination', array( 'parse' ) );
102 }
103
104 if ( count( $errors ) ) {
105 $this->showMergeForm();
106 $wgOut->addHTML( implode( "\n", $errors ) );
107 } else {
108 $this->showHistory();
109 }
110
111 }
112
113 function showMergeForm() {
114 global $wgOut, $wgScript;
115
116 $wgOut->addWikiMsg( 'mergehistory-header' );
117
118 $wgOut->addHTML(
119 Xml::openElement( 'form', array(
120 'method' => 'get',
121 'action' => $wgScript ) ) .
122 '<fieldset>' .
123 Xml::element( 'legend', array(),
124 wfMsg( 'mergehistory-box' ) ) .
125 Xml::hidden( 'title',
126 SpecialPage::getTitleFor( 'Mergehistory' )->getPrefixedDbKey() ) .
127 Xml::hidden( 'submitted', '1' ) .
128 Xml::hidden( 'mergepoint', $this->mTimestamp ) .
129 Xml::openElement( 'table' ) .
130 "<tr>
131 <td>".Xml::label( wfMsg( 'mergehistory-from' ), 'target' )."</td>
132 <td>".Xml::input( 'target', 30, $this->mTarget, array('id'=>'target') )."</td>
133 </tr><tr>
134 <td>".Xml::label( wfMsg( 'mergehistory-into' ), 'dest' )."</td>
135 <td>".Xml::input( 'dest', 30, $this->mDest, array('id'=>'dest') )."</td>
136 </tr><tr><td>" .
137 Xml::submitButton( wfMsg( 'mergehistory-go' ) ) .
138 "</td></tr>" .
139 Xml::closeElement( 'table' ) .
140 '</fieldset>' .
141 '</form>' );
142 }
143
144 private function showHistory() {
145 global $wgLang, $wgUser, $wgOut;
146
147 $this->sk = $wgUser->getSkin();
148
149 $wgOut->setPagetitle( wfMsg( "mergehistory" ) );
150
151 $this->showMergeForm();
152
153 # List all stored revisions
154 $revisions = new MergeHistoryPager( $this, array(), $this->mTargetObj, $this->mDestObj );
155 $haveRevisions = $revisions && $revisions->getNumRows() > 0;
156
157 $titleObj = SpecialPage::getTitleFor( "Mergehistory" );
158 $action = $titleObj->getLocalURL( "action=submit" );
159 # Start the form here
160 $top = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $action, 'id' => 'merge' ) );
161 $wgOut->addHTML( $top );
162
163 if( $haveRevisions ) {
164 # Format the user-visible controls (comment field, submission button)
165 # in a nice little table
166 $table =
167 Xml::openElement( 'fieldset' ) .
168 Xml::openElement( 'table', array( 'id' => 'mw-mergehistory-table' ) ) .
169 "<tr>
170 <td class='mw-label'>" .
171 wfMsgExt( 'mergehistory-merge', array('parseinline'),
172 $this->mTargetObj->getPrefixedText(), $this->mDestObj->getPrefixedText() ) .
173 "</td>
174 </tr>
175 <tr>
176 <td class='mw-label'>" .
177 Xml::label( wfMsg( 'undeletecomment' ), 'wpComment' ) .
178 "</td>
179 <td class='mw-input'>" .
180 Xml::input( 'wpComment', 50, $this->mComment ) .
181 "</td>
182 </tr>
183 <tr>
184 <td>&nbsp;</td>
185 <td class='mw-submit'>" .
186 Xml::submitButton( wfMsg( 'mergehistory-submit' ), array( 'name' => 'merge', 'id' => 'mw-merge-submit' ) ) .
187 "</td>
188 </tr>" .
189 Xml::closeElement( 'table' ) .
190 Xml::closeElement( 'fieldset' );
191
192 $wgOut->addHTML( $table );
193 }
194
195 $wgOut->addHTML( "<h2 id=\"mw-mergehistory\">" . wfMsgHtml( "mergehistory-list" ) . "</h2>\n" );
196
197 if( $haveRevisions ) {
198 $wgOut->addHTML( $revisions->getNavigationBar() );
199 $wgOut->addHTML( "<ul>" );
200 $wgOut->addHTML( $revisions->getBody() );
201 $wgOut->addHTML( "</ul>" );
202 $wgOut->addHTML( $revisions->getNavigationBar() );
203 } else {
204 $wgOut->addWikiMsg( "mergehistory-empty" );
205 }
206
207 # Show relevant lines from the deletion log:
208 $wgOut->addHTML( "<h2>" . htmlspecialchars( LogPage::logName( 'merge' ) ) . "</h2>\n" );
209 LogEventsList::showLogExtract( $wgOut, 'merge', $this->mTargetObj->getPrefixedText() );
210
211 # When we submit, go by page ID to avoid some nasty but unlikely collisions.
212 # Such would happen if a page was renamed after the form loaded, but before submit
213 $misc = Xml::hidden( 'targetID', $this->mTargetObj->getArticleID() );
214 $misc .= Xml::hidden( 'destID', $this->mDestObj->getArticleID() );
215 $misc .= Xml::hidden( 'target', $this->mTarget );
216 $misc .= Xml::hidden( 'dest', $this->mDest );
217 $misc .= Xml::hidden( 'wpEditToken', $wgUser->editToken() );
218 $misc .= Xml::closeElement( 'form' );
219 $wgOut->addHTML( $misc );
220
221 return true;
222 }
223
224 function formatRevisionRow( $row ) {
225 global $wgUser, $wgLang;
226
227 $rev = new Revision( $row );
228
229 $stxt = '';
230 $last = $this->message['last'];
231
232 $ts = wfTimestamp( TS_MW, $row->rev_timestamp );
233 $checkBox = Xml::radio( "mergepoint", $ts, false );
234
235 $pageLink = $this->sk->makeKnownLinkObj( $rev->getTitle(),
236 htmlspecialchars( $wgLang->timeanddate( $ts ) ), 'oldid=' . $rev->getId() );
237 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
238 $pageLink = '<span class="history-deleted">' . $pageLink . '</span>';
239 }
240
241 # Last link
242 if( !$rev->userCan( Revision::DELETED_TEXT ) )
243 $last = $this->message['last'];
244 else if( isset($this->prevId[$row->rev_id]) )
245 $last = $this->sk->makeKnownLinkObj( $rev->getTitle(), $this->message['last'],
246 "diff=" . $row->rev_id . "&oldid=" . $this->prevId[$row->rev_id] );
247
248 $userLink = $this->sk->revUserTools( $rev );
249
250 if(!is_null($size = $row->rev_len)) {
251 $stxt = $this->sk->formatRevisionSize( $size );
252 }
253 $comment = $this->sk->revComment( $rev );
254
255 return "<li>$checkBox ($last) $pageLink . . $userLink $stxt $comment</li>";
256 }
257
258 /**
259 * Fetch revision text link if it's available to all users
260 * @return string
261 */
262 function getPageLink( $row, $titleObj, $ts, $target ) {
263 global $wgLang;
264
265 if( !$this->userCan($row, Revision::DELETED_TEXT) ) {
266 return '<span class="history-deleted">' . $wgLang->timeanddate( $ts, true ) . '</span>';
267 } else {
268 $link = $this->sk->makeKnownLinkObj( $titleObj,
269 $wgLang->timeanddate( $ts, true ), "target=$target&timestamp=$ts" );
270 if( $this->isDeleted($row, Revision::DELETED_TEXT) )
271 $link = '<span class="history-deleted">' . $link . '</span>';
272 return $link;
273 }
274 }
275
276 function merge() {
277 global $wgOut, $wgUser;
278 # Get the titles directly from the IDs, in case the target page params
279 # were spoofed. The queries are done based on the IDs, so it's best to
280 # keep it consistent...
281 $targetTitle = Title::newFromID( $this->mTargetID );
282 $destTitle = Title::newFromID( $this->mDestID );
283 if( is_null($targetTitle) || is_null($destTitle) )
284 return false; // validate these
285 if( $targetTitle->getArticleId() == $destTitle->getArticleId() )
286 return false;
287 # Verify that this timestamp is valid
288 # Must be older than the destination page
289 $dbw = wfGetDB( DB_MASTER );
290 # Get timestamp into DB format
291 $this->mTimestamp = $this->mTimestamp ? $dbw->timestamp($this->mTimestamp) : '';
292 # Max timestamp should be min of destination page
293 $maxtimestamp = $dbw->selectField( 'revision', 'MIN(rev_timestamp)',
294 array('rev_page' => $this->mDestID ),
295 __METHOD__ );
296 # Destination page must exist with revisions
297 if( !$maxtimestamp ) {
298 $wgOut->addWikiMsg('mergehistory-fail');
299 return false;
300 }
301 # Get the latest timestamp of the source
302 $lasttimestamp = $dbw->selectField( array('page','revision'),
303 'rev_timestamp',
304 array('page_id' => $this->mTargetID, 'page_latest = rev_id' ),
305 __METHOD__ );
306 # $this->mTimestamp must be older than $maxtimestamp
307 if( $this->mTimestamp >= $maxtimestamp ) {
308 $wgOut->addWikiMsg('mergehistory-fail');
309 return false;
310 }
311 # Update the revisions
312 if( $this->mTimestamp ) {
313 $timewhere = "rev_timestamp <= {$this->mTimestamp}";
314 $TimestampLimit = wfTimestamp(TS_MW,$this->mTimestamp);
315 } else {
316 $timewhere = "rev_timestamp <= {$maxtimestamp}";
317 $TimestampLimit = wfTimestamp(TS_MW,$lasttimestamp);
318 }
319 # Do the moving...
320 $dbw->update( 'revision',
321 array( 'rev_page' => $this->mDestID ),
322 array( 'rev_page' => $this->mTargetID,
323 $timewhere ),
324 __METHOD__ );
325
326 $count = $dbw->affectedRows();
327 # Make the source page a redirect if no revisions are left
328 $haveRevisions = $dbw->selectField( 'revision',
329 'rev_timestamp',
330 array( 'rev_page' => $this->mTargetID ),
331 __METHOD__,
332 array( 'FOR UPDATE' ) );
333 if( !$haveRevisions ) {
334 if( $this->mComment ) {
335 $comment = wfMsgForContent( 'mergehistory-comment', $targetTitle->getPrefixedText(),
336 $destTitle->getPrefixedText(), $this->mComment );
337 } else {
338 $comment = wfMsgForContent( 'mergehistory-autocomment', $targetTitle->getPrefixedText(),
339 $destTitle->getPrefixedText() );
340 }
341 $mwRedir = MagicWord::get( 'redirect' );
342 $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $destTitle->getPrefixedText() . "]]\n";
343 $redirectArticle = new Article( $targetTitle );
344 $redirectRevision = new Revision( array(
345 'page' => $this->mTargetID,
346 'comment' => $comment,
347 'text' => $redirectText ) );
348 $redirectRevision->insertOn( $dbw );
349 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision );
350
351 # Now, we record the link from the redirect to the new title.
352 # It should have no other outgoing links...
353 $dbw->delete( 'pagelinks', array( 'pl_from' => $this->mDestID ), __METHOD__ );
354 $dbw->insert( 'pagelinks',
355 array(
356 'pl_from' => $this->mDestID,
357 'pl_namespace' => $destTitle->getNamespace(),
358 'pl_title' => $destTitle->getDBkey() ),
359 __METHOD__ );
360 } else {
361 $targetTitle->invalidateCache(); // update histories
362 }
363 $destTitle->invalidateCache(); // update histories
364 # Check if this did anything
365 if( !$count ) {
366 $wgOut->addWikiMsg('mergehistory-fail');
367 return false;
368 }
369 # Update our logs
370 $log = new LogPage( 'merge' );
371 $log->addEntry( 'merge', $targetTitle, $this->mComment,
372 array($destTitle->getPrefixedText(),$TimestampLimit) );
373
374 $wgOut->addHTML( wfMsgExt( 'mergehistory-success', array('parseinline'),
375 $targetTitle->getPrefixedText(), $destTitle->getPrefixedText(), $count ) );
376
377 wfRunHooks( 'ArticleMergeComplete', array( $targetTitle, $destTitle ) );
378
379 return true;
380 }
381 }
382
383 class MergeHistoryPager extends ReverseChronologicalPager {
384 public $mForm, $mConds;
385
386 function __construct( $form, $conds = array(), $source, $dest ) {
387 $this->mForm = $form;
388 $this->mConds = $conds;
389 $this->title = $source;
390 $this->articleID = $source->getArticleID();
391
392 $dbr = wfGetDB( DB_SLAVE );
393 $maxtimestamp = $dbr->selectField( 'revision', 'MIN(rev_timestamp)',
394 array('rev_page' => $dest->getArticleID() ),
395 __METHOD__ );
396 $this->maxTimestamp = $maxtimestamp;
397
398 parent::__construct();
399 }
400
401 function getStartBody() {
402 wfProfileIn( __METHOD__ );
403 # Do a link batch query
404 $this->mResult->seek( 0 );
405 $batch = new LinkBatch();
406 # Give some pointers to make (last) links
407 $this->mForm->prevId = array();
408 while( $row = $this->mResult->fetchObject() ) {
409 $batch->addObj( Title::makeTitleSafe( NS_USER, $row->rev_user_text ) );
410 $batch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->rev_user_text ) );
411
412 $rev_id = isset($rev_id) ? $rev_id : $row->rev_id;
413 if( $rev_id > $row->rev_id )
414 $this->mForm->prevId[$rev_id] = $row->rev_id;
415 else if( $rev_id < $row->rev_id )
416 $this->mForm->prevId[$row->rev_id] = $rev_id;
417
418 $rev_id = $row->rev_id;
419 }
420
421 $batch->execute();
422 $this->mResult->seek( 0 );
423
424 wfProfileOut( __METHOD__ );
425 return '';
426 }
427
428 function formatRow( $row ) {
429 $block = new Block;
430 return $this->mForm->formatRevisionRow( $row );
431 }
432
433 function getQueryInfo() {
434 $conds = $this->mConds;
435 $conds['rev_page'] = $this->articleID;
436 $conds[] = 'page_id = rev_page';
437 $conds[] = "rev_timestamp < {$this->maxTimestamp}";
438 return array(
439 'tables' => array('revision','page'),
440 'fields' => array( 'rev_minor_edit', 'rev_timestamp', 'rev_user', 'rev_user_text', 'rev_comment',
441 'rev_id', 'rev_page', 'rev_text_id', 'rev_len', 'rev_deleted' ),
442 'conds' => $conds
443 );
444 }
445
446 function getIndexField() {
447 return 'rev_timestamp';
448 }
449 }