Release notes tweaks.
[mediawiki.git] / maintenance / deleteOrphanedRevisions.php
blob5dc7567fc799f53ef888804ca2342fbf76a221b8
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.
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.
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.
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
21 * @file
22 * @ingroup Maintenance
23 * @author Rob Church <robchur@gmail.com>
24 * @todo More efficient cleanup of text records
27 require_once( __DIR__ . '/Maintenance.php' );
29 /**
30 * Maintenance script that deletes revisions which refer to a nonexisting page.
32 * @ingroup Maintenance
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' );
41 public function execute() {
42 $this->output( "Delete Orphaned Revisions\n" );
44 $report = $this->hasOption( 'report' );
46 $dbw = wfGetDB( DB_MASTER );
47 $dbw->begin( __METHOD__ );
48 list( $page, $revision ) = $dbw->tableNamesN( 'page', 'revision' );
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' );
55 # Stash 'em all up for deletion (if needed)
56 $revisions = array();
57 foreach ( $res as $row )
58 $revisions[] = $row->rev_id;
59 $count = count( $revisions );
60 $this->output( "found {$count}.\n" );
62 # Nothing to do?
63 if ( $report || $count == 0 ) {
64 $dbw->commit();
65 exit( 0 );
68 # Delete each revision
69 $this->output( "Deleting..." );
70 $this->deleteRevs( $revisions, $dbw );
71 $this->output( "done.\n" );
73 # Close the transaction and call the script to purge unused text records
74 $dbw->commit( __METHOD__ );
75 $this->purgeRedundantText( true );
78 /**
79 * Delete one or more revisions from the database
80 * Do this inside a transaction
82 * @param $id Array of revision id values
83 * @param $dbw DatabaseBase class (needs to be a master)
85 private function deleteRevs( $id, &$dbw ) {
86 if ( !is_array( $id ) )
87 $id = array( $id );
88 $dbw->delete( 'revision', array( 'rev_id' => $id ), __METHOD__ );
92 $maintClass = "DeleteOrphanedRevisions";
93 require_once( RUN_MAINTENANCE_IF_MAIN );