bfd0e54980dcfc4e84fd74c879f2c375c3adbc80
[lhc/web/wiklou.git] / includes / SpecialUndelete.php
1 <?
2
3 function wfSpecialUndelete( $par )
4 {
5 global $wgLang, $wgUser, $wgOut, $action, $target, $timestamp, $restore;
6
7 if( $par != "" ) $target = $par;
8 if( isset($target ) ) {
9 $t = Title::newFromURL( $target );
10 $title = $t->mDbkeyform;
11 $namespace = $t->mNamespace;
12 if( isset( $timestamp ) ) {
13 return doUndeleteShowRevision( $namespace, $title, $timestamp );
14 }
15 if( isset( $action ) and isset( $restore) and $action == "submit" ) {
16 return doUndeleteArticle( $namespace, $title );
17 }
18 return doUndeleteShowHistory( $namespace, $title );
19 }
20
21 # List undeletable articles
22 $sql = "SELECT ar_namespace,ar_title, COUNT(*) AS count FROM archive GROUP BY ar_namespace,ar_title ORDER BY ar_namespace,ar_title";
23 $res = wfQuery( $sql, DB_READ );
24
25 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
26 $wgOut->addWikiText( wfMsg( "undeletepagetext" ) );
27
28 $special = $wgLang->getNsText( Namespace::getSpecial() );
29 $sk = $wgUser->getSkin();
30 $wgOut->addHTML( "<ul>\n" );
31 while ($row = wfFetchObject( $res )) {
32 $n = ($row->ar_namespace ?
33 ($wgLang->getNsText( $row->ar_namespace ) . ":") : "").
34 $row->ar_title;
35
36 $wgOut->addHTML( "<li>" .
37 $sk->makeKnownLink( $wgLang->specialPage( "Undelete" ),
38 $n, "target=" . urlencode($n) ) . " " .
39 wfMsg( "undeleterevisions", $row->count ) );
40 }
41 $wgOut->addHTML( "</ul>\n" );
42
43 return $ret;
44 }
45
46 /* private */ function doUndeleteShowRevision( $namespace, $title, $timestamp ) {
47 global $wgLang, $wgUser, $wgOut, $action, $target, $timestamp, $restore;
48
49 if(!preg_match("/[0-9]{14}/",$timestamp)) return 0;
50
51 $sql = "SELECT ar_text FROM archive WHERE ar_namespace={$namespace} AND ar_title=\"{$title}\" AND ar_timestamp={$timestamp}";
52 $ret = wfQuery( $sql, DB_READ );
53 $row = wfFetchObject( $ret );
54
55 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
56 $wgOut->addWikiText( "(" . wfMsg( "undeleterevision", $wgLang->date($timestamp, true) )
57 . ")\n<hr>\n" . $row->ar_text );
58
59 return 0;
60 }
61
62 /* private */ function doUndeleteShowHistory( $namespace, $title ) {
63 global $wgLang, $wgUser, $wgOut, $action, $target, $timestamp, $restore;
64
65 $sk = $wgUser->getSkin();
66 $wgOut->setPagetitle( wfMsg( "undeletepage" ) );
67
68 $sql = "SELECT ar_minor_edit,ar_timestamp,ar_user,ar_user_text,ar_comment
69 FROM archive WHERE ar_namespace={$namespace} AND ar_title=\"{$title}\"
70 ORDER BY ar_timestamp DESC";
71 $ret = wfQuery( $sql, DB_READ );
72
73 if( wfNumRows( $ret ) == 0 ) {
74 $wgOut->addWikiText( wfMsg( "nohistory" ) );
75 return 0;
76 }
77
78 $wgOut->addWikiText( wfMsg( "undeletehistory" ) . "\n<hr>\n" . $row->ar_text );
79
80 $action = wfLocalUrlE( $wgLang->specialPage( "Undelete" ), "action=submit" );
81 $wgOut->addHTML("<p>
82 <form id=\"undelete\" method=\"post\" action=\"{$action}\">
83 <input type=hidden name=\"target\" value=\"{$target}\">
84 <input type=submit name=\"restore\" value=\"".wfMsg("undeletebtn")."\">
85 </form>");
86
87 $log = wfGetSQL("cur", "cur_text", "cur_namespace=4 AND cur_title=\"".wfMsg("dellogpage")."\"" );
88 if(preg_match("/^(.*".
89 preg_quote( ($namespace ? ($wgLang->getNsText($namespace) . ":") : "")
90 . str_replace("_", " ", $title), "/" ).".*)$/m", $log, $m)) {
91 $wgOut->addWikiText( $m[1] );
92 }
93
94 $special = $wgLang->getNsText( Namespace::getSpecial() );
95 $wgOut->addHTML("<ul>");
96 while( $row = wfFetchObject( $ret ) ) {
97 $wgOut->addHTML( "<li>" .
98 $sk->makeKnownLink( $wgLang->specialPage( "Undelete" ),
99 $wgLang->timeanddate( $row->ar_timestamp, true ),
100 "target=" . urlencode($target) . "&timestamp={$row->ar_timestamp}" ) . " " .
101 ". . {$row->ar_user_text}" .
102 " <i>(" . htmlspecialchars($row->ar_comment) . "</i>)\n");
103
104 }
105 $wgOut->addHTML("</ul>");
106
107 return 0;
108 }
109
110 /* private */ function doUndeleteArticle( $namespace, $title )
111 {
112 global $wgUser, $wgOut, $wgLang, $target, $wgDeferredUpdateList;
113
114 $fname = "doUndeleteArticle";
115
116 if ( "" == $title ) {
117 $wgOut->fatalError( wfMsg( "cannotundelete" ) );
118 return;
119 }
120 $t = addslashes($title);
121
122 # Move article and history from the "archive" table
123 $sql = "SELECT COUNT(*) AS count FROM cur WHERE cur_namespace={$namespace} AND cur_title='{$t}'";
124 $res = wfQuery( $sql, DB_READ );
125 $row = wfFetchObject( $res );
126 if( $row->count == 0) {
127 # Have to create new article...
128 $now = wfTimestampNow();
129 $max = wfGetSQL( "archive", "MAX(ar_timestamp)", "ar_namespace={$namespace} AND ar_title='{$t}'" );
130 $sql = "INSERT INTO cur (cur_namespace,cur_title,cur_text," .
131 "cur_comment,cur_user,cur_user_text,cur_timestamp,inverse_timestamp,cur_minor_edit,cur_random,cur_touched)" .
132 "SELECT ar_namespace,ar_title,ar_text,ar_comment," .
133 "ar_user,ar_user_text,ar_timestamp,99999999999999-ar_timestamp,ar_minor_edit,RAND(),'{$now}' FROM archive " .
134 "WHERE ar_namespace={$namespace} AND ar_title='{$t}' AND ar_timestamp={$max}";
135 wfQuery( $sql, DB_WRITE, $fname );
136 $newid = wfInsertId();
137 $oldones = "AND ar_timestamp<{$max}";
138 } else {
139 # If already exists, put history entirely into old table
140 $oldones = "";
141 $newid = 0;
142 }
143
144 $sql = "INSERT INTO old (old_namespace,old_title,old_text," .
145 "old_comment,old_user,old_user_text,old_timestamp,inverse_timestamp,old_minor_edit," .
146 "old_flags) SELECT ar_namespace,ar_title,ar_text,ar_comment," .
147 "ar_user,ar_user_text,ar_timestamp,99999999999999-ar_timestamp,ar_minor_edit,ar_flags " .
148 "FROM archive WHERE ar_namespace={$namespace} AND ar_title='{$t}' {$oldones}";
149 wfQuery( $sql, DB_WRITE, $fname );
150
151 # Finally, clean up the link tables
152 if( $newid ) {
153 # Create a dummy OutputPage to update the outgoing links
154 # This works at the moment due to good luck. It may stop working in the
155 # future. Damn globals.
156 $dummyOut = new OutputPage();
157 $to = Title::newFromDBKey( $target );
158 $res = wfQuery( "SELECT cur_text FROM cur WHERE cur_id={$newid} " .
159 "AND cur_namespace={$namespace}", DB_READ, $fname );
160 $row = wfFetchObject( $res );
161 $text = $row->cur_text;
162 $dummyOut->addWikiText( $text );
163 wfFreeResult( $res );
164
165 $u = new LinksUpdate( $newid, $to->getPrefixedDBkey() );
166 array_push( $wgDeferredUpdateList, $u );
167
168 global $wgEnablePersistentLC;
169 if ( $wgEnablePersistentLC ) {
170 // Purge related entries in links cache on undelete, to heal broken links
171 $ptitle = wfStrencode( $to->getPrefixedDBkey() );
172 wfQuery("DELETE linkscc FROM linkscc,brokenlinks ".
173 "WHERE lcc_pageid=bl_from AND bl_to='{$ptitle}'", DB_WRITE);
174 }
175 #TODO: SearchUpdate, etc.
176 }
177
178 # Now that it's safely stored, take it out of the archive
179 $sql = "DELETE FROM archive WHERE ar_namespace={$namespace} AND " .
180 "ar_title='{$t}'";
181 wfQuery( $sql, DB_WRITE, $fname );
182
183
184 # Touch the log?
185 $log = new LogPage( wfMsg( "dellogpage" ), wfMsg( "dellogpagetext" ) );
186 $log->addEntry( wfMsg( "undeletedarticle", $target ), "" );
187
188 $wgOut->addWikiText( wfMsg( "undeletedtext", $target ) );
189 return 0;
190 }
191 ?>