* Removed messages in English, they'll be inherited from the parent.
[lhc/web/wiklou.git] / includes / SpecialUndelete.php
1 <?php
2 /**
3 * @todo document
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /** */
9 require_once( 'Revision.php' );
10
11 /**
12 *
13 */
14 function wfSpecialUndelete( $par ) {
15 global $wgRequest;
16
17 $form = new UndeleteForm( $wgRequest, $par );
18 $form->execute();
19 }
20
21 /**
22 *
23 * @package MediaWiki
24 * @subpackage SpecialPage
25 */
26 class PageArchive {
27 var $title;
28
29 function PageArchive( &$title ) {
30 if( is_null( $title ) ) {
31 wfDebugDieBacktrace( 'Archiver() given a null title.');
32 }
33 $this->title =& $title;
34 }
35
36 /**
37 * List all deleted pages recorded in the archive table. Returns result
38 * wrapper with (ar_namespace, ar_title, count) fields, ordered by page
39 * namespace/title. Can be called staticaly.
40 *
41 * @return ResultWrapper
42 */
43 /* static */ function &listAllPages() {
44 $dbr =& wfGetDB( DB_SLAVE );
45 $archive = $dbr->tableName( 'archive' );
46
47 $sql = "SELECT ar_namespace,ar_title, COUNT(*) AS count FROM $archive " .
48 "GROUP BY ar_namespace,ar_title ORDER BY ar_namespace,ar_title";
49
50 return $dbr->resultObject( $dbr->query( $sql, 'PageArchive::listAllPages' ) );
51 }
52
53 /**
54 * List the revisions of the given page. Returns result wrapper with
55 * (ar_minor_edit, ar_timestamp, ar_user, ar_user_text, ar_comment) fields.
56 *
57 * @return ResultWrapper
58 */
59 function &listRevisions() {
60 $dbr =& wfGetDB( DB_SLAVE );
61 return $dbr->resultObject( $dbr->select( 'archive',
62 array( 'ar_minor_edit', 'ar_timestamp', 'ar_user', 'ar_user_text', 'ar_comment' ),
63 array( 'ar_namespace' => $this->title->getNamespace(),
64 'ar_title' => $this->title->getDBkey() ),
65 'PageArchive::listRevisions',
66 array( 'ORDER BY' => 'ar_timestamp DESC' ) ) );
67 }
68
69 /**
70 * Fetch (and decompress if necessary) the stored text for the deleted
71 * revision of the page with the given timestamp.
72 *
73 * @return string
74 */
75 function getRevisionText( $timestamp ) {
76 $dbr =& wfGetDB( DB_SLAVE );
77 $row = $dbr->selectRow( 'archive',
78 array( 'ar_text', 'ar_flags' ),
79 array( 'ar_namespace' => $this->title->getNamespace(),
80 'ar_title' => $this->title->getDbkey(),
81 'ar_timestamp' => $dbr->timestamp( $timestamp ) ) );
82 return Revision::getRevisionText( $row, "ar_" );
83 }
84
85 /**
86 * Fetch (and decompress if necessary) the stored text of the most
87 * recently edited deleted revision of the page.
88 *
89 * If there are no archived revisions for the page, returns NULL.
90 *
91 * @return string
92 */
93 function getLastRevisionText() {
94 $dbr =& wfGetDB( DB_SLAVE );
95 $row = $dbr->selectRow( 'archive',
96 array( 'ar_text', 'ar_flags' ),
97 array( 'ar_namespace' => $this->title->getNamespace(),
98 'ar_title' => $this->title->getDBkey() ),
99 'PageArchive::getLastRevisionText',
100 array( 'ORDER BY' => 'ar_timestamp DESC' ) );
101 if( $row ) {
102 return Revision::getRevisionText( $row, "ar_" );
103 } else {
104 return NULL;
105 }
106 }
107
108 /**
109 * Quick check if any archived revisions are present for the page.
110 * @return bool
111 */
112 function isDeleted() {
113 $dbr =& wfGetDB( DB_SLAVE );
114 $n = $dbr->selectField( 'archive', 'COUNT(ar_title)',
115 array( 'ar_namespace' => $this->title->getNamespace(),
116 'ar_title' => $this->title->getDBkey() ) );
117 return ($n > 0);
118 }
119
120 /**
121 * This is the meaty bit -- restores archived revisions of the given page
122 * to the cur/old tables. If the page currently exists, all revisions will
123 * be stuffed into old, otherwise the most recent will go into cur.
124 * The deletion log will be updated with an undeletion notice.
125 *
126 * Returns true on success.
127 *
128 * @param array $timestamps Pass an empty array to restore all revisions, otherwise list the ones to undelete.
129 * @return bool
130 */
131 function undelete( $timestamps ) {
132 global $wgUser, $wgOut, $wgLang, $wgDeferredUpdateList;
133 global $wgUseSquid, $wgInternalServer, $wgLinkCache;
134 global $wgDBtype;
135
136 $fname = "doUndeleteArticle";
137 $restoreAll = empty( $timestamps );
138 $restoreRevisions = count( $timestamps );
139
140 $dbw =& wfGetDB( DB_MASTER );
141 extract( $dbw->tableNames( 'page', 'archive' ) );
142
143 # Does this page already exist? We'll have to update it...
144 $article = new Article( $this->title );
145 $options = ( $wgDBtype == 'PostgreSQL' )
146 ? '' // pg doesn't support this?
147 : 'FOR UPDATE';
148 $page = $dbw->selectRow( 'page',
149 array( 'page_id', 'page_latest' ),
150 array( 'page_namespace' => $this->title->getNamespace(),
151 'page_title' => $this->title->getDBkey() ),
152 $fname,
153 $options );
154 if( $page ) {
155 # Page already exists. Import the history, and if necessary
156 # we'll update the latest revision field in the record.
157 $newid = 0;
158 $pageId = $page->page_id;
159 $previousRevId = $page->page_latest;
160 $previousTimestamp = $page->rev_timestamp;
161 } else {
162 # Have to create a new article...
163 $newid = $article->insertOn( $dbw );
164 $pageId = $newid;
165 $previousRevId = 0;
166 $previousTimestamp = 0;
167 }
168
169 if( $restoreAll ) {
170 $oldones = '1'; # All revisions...
171 } else {
172 $oldts = implode( ',',
173 array_map( array( &$dbw, 'addQuotes' ),
174 array_map( array( &$dbw, 'timestamp' ),
175 $timestamps ) ) );
176
177 $oldones = "ar_timestamp IN ( {$oldts} )";
178 }
179
180 /**
181 * Restore each revision...
182 */
183 $result = $dbw->select( 'archive',
184 /* fields */ array(
185 'ar_rev_id',
186 'ar_text',
187 'ar_comment',
188 'ar_user',
189 'ar_user_text',
190 'ar_timestamp',
191 'ar_minor_edit',
192 'ar_flags' ),
193 /* WHERE */ array(
194 'ar_namespace' => $this->title->getNamespace(),
195 'ar_title' => $this->title->getDBkey(),
196 $oldones ),
197 $fname,
198 /* options */ array(
199 'ORDER BY' => 'ar_timestamp' )
200 );
201 $revision = null;
202 while( $row = $dbw->fetchObject( $result ) ) {
203 $revision = new Revision( array(
204 'page' => $pageId,
205 'id' => $row->ar_rev_id,
206 'text' => Revision::getRevisionText( $row, 'ar_' ),
207 'comment' => $row->ar_comment,
208 'user' => $row->ar_user,
209 'user_text' => $row->ar_user_text,
210 'timestamp' => $row->ar_timestamp,
211 'minor_edit' => $row->ar_minor_edit,
212 ) );
213 $revision->insertOn( $dbw );
214 }
215
216 if( $revision ) {
217 # FIXME: Update latest if newer as well...
218 if( $newid ) {
219 # FIXME: update article count if changed...
220 $article->updateRevisionOn( $dbw, $revision, $previousRevId );
221
222 # Finally, clean up the link tables
223 $wgLinkCache = new LinkCache();
224 # Select for update
225 $wgLinkCache->forUpdate( true );
226
227 # Create a dummy OutputPage to update the outgoing links
228 $dummyOut = new OutputPage();
229 $dummyOut->addWikiText( $revision->getText() );
230
231 $u = new LinksUpdate( $newid, $this->title->getPrefixedDBkey() );
232 array_push( $wgDeferredUpdateList, $u );
233
234 #TODO: SearchUpdate, etc.
235 }
236
237 if( $newid ) {
238 Article::onArticleCreate( $this->title );
239 } else {
240 Article::onArticleEdit( $this->title );
241 }
242 } else {
243 # Something went terribly worong!
244 }
245
246 # Now that it's safely stored, take it out of the archive
247 $dbw->delete( 'archive',
248 /* WHERE */ array(
249 'ar_namespace' => $this->title->getNamespace(),
250 'ar_title' => $this->title->getDBkey(),
251 $oldones ),
252 $fname );
253
254 # Touch the log!
255 $log = new LogPage( 'delete' );
256 if( $restoreAll ) {
257 $reason = "";
258 } else {
259 $reason = wfMsg( 'undeletedrevisions', $restoreRevisions );
260 }
261 $log->addEntry( 'restore', $this->title, $reason );
262
263 return true;
264 }
265 }
266
267 /**
268 *
269 * @package MediaWiki
270 * @subpackage SpecialPage
271 */
272 class UndeleteForm {
273 var $mAction, $mTarget, $mTimestamp, $mRestore, $mTargetObj;
274 var $mTargetTimestamp;
275
276 function UndeleteForm( &$request, $par = "" ) {
277 global $wgUser;
278 $this->mAction = $request->getText( 'action' );
279 $this->mTarget = $request->getText( 'target' );
280 $this->mTimestamp = $request->getText( 'timestamp' );
281 $this->mRestore = $request->getCheck( 'restore' ) &&
282 $request->wasPosted() &&
283 $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
284 if( $par != "" ) {
285 $this->mTarget = $par;
286 }
287 if ( $this->mTarget !== "" ) {
288 $this->mTargetObj = Title::newFromURL( $this->mTarget );
289 } else {
290 $this->mTargetObj = NULL;
291 }
292 if( $this->mRestore ) {
293 $timestamps = array();
294 foreach( $_REQUEST as $key => $val ) {
295 if( preg_match( '/^ts(\d{14})$/', $key, $matches ) ) {
296 array_push( $timestamps, $matches[1] );
297 }
298 }
299 rsort( $timestamps );
300 $this->mTargetTimestamp = $timestamps;
301 }
302 }
303
304 function execute() {
305 if( is_null( $this->mTargetObj ) ) {
306 return $this->showList();
307 }
308 if( $this->mTimestamp !== "" ) {
309 return $this->showRevision( $this->mTimestamp );
310 }
311 if( $this->mRestore && $this->mAction == "submit" ) {
312 return $this->undelete();
313 }
314 return $this->showHistory();
315 }
316
317 /* private */ function showList() {
318 global $wgLang, $wgContLang, $wgUser, $wgOut;
319 $fname = "UndeleteForm::showList";
320
321 # List undeletable articles
322 $result = PageArchive::listAllPages();
323
324 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
325 $wgOut->addWikiText( wfMsg( "undeletepagetext" ) );
326
327 $sk = $wgUser->getSkin();
328 $undelete =& Title::makeTitle( NS_SPECIAL, 'Undelete' );
329 $wgOut->addHTML( "<ul>\n" );
330 while( $row = $result->fetchObject() ) {
331 $n = ($row->ar_namespace ?
332 ($wgContLang->getNsText( $row->ar_namespace ) . ":") : "").
333 $row->ar_title;
334 $link = $sk->makeKnownLinkObj( $undelete,
335 htmlspecialchars( $n ), "target=" . urlencode( $n ) );
336 $revisions = htmlspecialchars( wfMsg( "undeleterevisions",
337 $wgLang->formatNum( $row->count ) ) );
338 $wgOut->addHTML( "<li>$link $revisions</li>\n" );
339 }
340 $result->free();
341 $wgOut->addHTML( "</ul>\n" );
342
343 return true;
344 }
345
346 /* private */ function showRevision( $timestamp ) {
347 global $wgLang, $wgUser, $wgOut;
348 $fname = "UndeleteForm::showRevision";
349
350 if(!preg_match("/[0-9]{14}/",$timestamp)) return 0;
351
352 $archive =& new PageArchive( $this->mTargetObj );
353 $text = $archive->getRevisionText( $timestamp );
354
355 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
356 $wgOut->addWikiText( "(" . wfMsg( "undeleterevision",
357 $wgLang->date( $timestamp ) ) . ")\n<hr />\n" . $text );
358 }
359
360 /* private */ function showHistory() {
361 global $wgLang, $wgUser, $wgOut;
362
363 $sk = $wgUser->getSkin();
364 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
365
366 $archive = new PageArchive( $this->mTargetObj );
367 $text = $archive->getLastRevisionText();
368 if( is_null( $text ) ) {
369 $wgOut->addWikiText( wfMsg( "nohistory" ) );
370 return;
371 }
372 $wgOut->addWikiText( wfMsg( "undeletehistory" ) . "\n----\n" . $text );
373
374 # List all stored revisions
375 $revisions = $archive->listRevisions();
376
377 $titleObj = Title::makeTitle( NS_SPECIAL, "Undelete" );
378 $action = $titleObj->escapeLocalURL( "action=submit" );
379 $encTarget = htmlspecialchars( $this->mTarget );
380 $button = htmlspecialchars( wfMsg("undeletebtn") );
381 $token = htmlspecialchars( $wgUser->editToken() );
382
383 $wgOut->addHTML("
384 <form id=\"undelete\" method=\"post\" action=\"{$action}\">
385 <input type=\"hidden\" name=\"target\" value=\"{$encTarget}\" />
386 <input type=\"submit\" name=\"restore\" value=\"{$button}\" />
387 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
388 ");
389
390 # Show relevant lines from the deletion log:
391 $wgOut->addHTML( "<h2>" . htmlspecialchars( LogPage::logName( 'delete' ) ) . "</h2>\n" );
392 require_once( 'SpecialLog.php' );
393 $logViewer =& new LogViewer(
394 new LogReader(
395 new FauxRequest(
396 array( 'page' => $this->mTargetObj->getPrefixedText(),
397 'type' => 'delete' ) ) ) );
398 $logViewer->showList( $wgOut );
399
400 # The page's stored (deleted) history:
401 $wgOut->addHTML( "<h2>" . htmlspecialchars( wfMsg( "history" ) ) . "</h2>\n" );
402 $wgOut->addHTML("<ul>");
403 $target = urlencode( $this->mTarget );
404 while( $row = $revisions->fetchObject() ) {
405 $ts = wfTimestamp( TS_MW, $row->ar_timestamp );
406 $checkBox = "<input type=\"checkbox\" name=\"ts$ts\" value=\"1\" />";
407 $pageLink = $sk->makeKnownLinkObj( $titleObj,
408 $wgLang->timeanddate( $row->ar_timestamp, true ),
409 "target=$target&timestamp=$ts" );
410 $userLink = htmlspecialchars( $row->ar_user_text );
411 if( $row->ar_user ) {
412 $userLink = $sk->makeKnownLinkObj(
413 Title::makeTitle( NS_USER, $row->ar_user_text ),
414 $userLink );
415 } else {
416 $userLink = $sk->makeKnownLinkObj(
417 Title::makeTitle( NS_SPECIAL, 'Contributions' ),
418 $userLink, 'target=' . $row->ar_user_text );
419 }
420 $comment = $sk->commentBlock( $row->ar_comment );
421 $wgOut->addHTML( "<li>$checkBox $pageLink . . $userLink $comment</li>\n" );
422
423 }
424 $revisions->free();
425 $wgOut->addHTML("</ul>\n</form>");
426
427 return true;
428 }
429
430 function undelete() {
431 global $wgOut;
432 if( !is_null( $this->mTargetObj ) ) {
433 $archive = new PageArchive( $this->mTargetObj );
434 if( $archive->undelete( $this->mTargetTimestamp ) ) {
435 $wgOut->addWikiText( wfMsg( "undeletedtext", $this->mTarget ) );
436
437 if (NS_IMAGE == $this->mTargetObj->getNamespace()) {
438 /* refresh image metadata cache */
439 new Image( $this->mTargetObj->getText(), true );
440 }
441
442 return true;
443 }
444 }
445 $wgOut->fatalError( wfMsg( "cannotundelete" ) );
446 return false;
447 }
448 }
449
450 ?>