Made SwiftFileBackend::loadObjectListing() populate stat entries in reverse order.
[lhc/web/wiklou.git] / maintenance / deleteOrphanedRevisions.php
1 <?php
2 /**
3 * Delete revisions which refer to a nonexisting page.
4 * Sometimes manual deletion done in a rush leaves crap in the database.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 * @ingroup Maintenance
23 * @author Rob Church <robchur@gmail.com>
24 * @todo More efficient cleanup of text records
25 */
26
27 require_once( __DIR__ . '/Maintenance.php' );
28
29 /**
30 * Maintenance script that deletes revisions which refer to a nonexisting page.
31 *
32 * @ingroup Maintenance
33 */
34 class DeleteOrphanedRevisions extends Maintenance {
35 public function __construct() {
36 parent::__construct();
37 $this->mDescription = "Maintenance script to delete revisions which refer to a nonexisting page";
38 $this->addOption( 'report', 'Prints out a count of affected revisions but doesn\'t delete them' );
39 }
40
41 public function execute() {
42 $this->output( "Delete Orphaned Revisions\n" );
43
44 $report = $this->hasOption( 'report' );
45
46 $dbw = wfGetDB( DB_MASTER );
47 $dbw->begin( __METHOD__ );
48 list( $page, $revision ) = $dbw->tableNamesN( 'page', 'revision' );
49
50 # Find all the orphaned revisions
51 $this->output( "Checking for orphaned revisions..." );
52 $sql = "SELECT rev_id FROM {$revision} LEFT JOIN {$page} ON rev_page = page_id WHERE page_namespace IS NULL";
53 $res = $dbw->query( $sql, 'deleteOrphanedRevisions' );
54
55 # Stash 'em all up for deletion (if needed)
56 $revisions = array();
57 foreach ( $res as $row ) {
58 $revisions[] = $row->rev_id;
59 }
60 $count = count( $revisions );
61 $this->output( "found {$count}.\n" );
62
63 # Nothing to do?
64 if ( $report || $count == 0 ) {
65 $dbw->commit( __METHOD__ );
66 exit( 0 );
67 }
68
69 # Delete each revision
70 $this->output( "Deleting..." );
71 $this->deleteRevs( $revisions, $dbw );
72 $this->output( "done.\n" );
73
74 # Close the transaction and call the script to purge unused text records
75 $dbw->commit( __METHOD__ );
76 $this->purgeRedundantText( true );
77 }
78
79 /**
80 * Delete one or more revisions from the database
81 * Do this inside a transaction
82 *
83 * @param $id Array of revision id values
84 * @param $dbw DatabaseBase class (needs to be a master)
85 */
86 private function deleteRevs( $id, &$dbw ) {
87 if ( !is_array( $id ) ) {
88 $id = array( $id );
89 }
90 $dbw->delete( 'revision', array( 'rev_id' => $id ), __METHOD__ );
91 }
92 }
93
94 $maintClass = "DeleteOrphanedRevisions";
95 require_once RUN_MAINTENANCE_IF_MAIN;