* @todo More efficient cleanup of text records */ require_once __DIR__ . '/Maintenance.php'; use Wikimedia\Rdbms\IDatabase; /** * Maintenance script that deletes revisions which refer to a nonexisting page. * * @ingroup Maintenance */ class DeleteOrphanedRevisions extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Maintenance script to delete revisions which refer to a nonexisting page' ); $this->addOption( 'report', 'Prints out a count of affected revisions but doesn\'t delete them' ); } public function execute() { $this->output( "Delete Orphaned Revisions\n" ); $report = $this->hasOption( 'report' ); $dbw = $this->getDB( DB_MASTER ); $this->beginTransaction( $dbw, __METHOD__ ); list( $page, $revision ) = $dbw->tableNamesN( 'page', 'revision' ); # Find all the orphaned revisions $this->output( "Checking for orphaned revisions..." ); $sql = "SELECT rev_id FROM {$revision} LEFT JOIN {$page} ON rev_page = page_id " . "WHERE page_namespace IS NULL"; $res = $dbw->query( $sql, 'deleteOrphanedRevisions' ); # Stash 'em all up for deletion (if needed) $revisions = []; foreach ( $res as $row ) { $revisions[] = $row->rev_id; } $count = count( $revisions ); $this->output( "found {$count}.\n" ); # Nothing to do? if ( $report || $count == 0 ) { $this->commitTransaction( $dbw, __METHOD__ ); exit( 0 ); } # Delete each revision $this->output( "Deleting..." ); $this->deleteRevs( $revisions, $dbw ); $this->output( "done.\n" ); # Close the transaction and call the script to purge unused text records $this->commitTransaction( $dbw, __METHOD__ ); $this->purgeRedundantText( true ); } /** * Delete one or more revisions from the database * Do this inside a transaction * * @param array $id Array of revision id values * @param IDatabase $dbw Master DB handle */ private function deleteRevs( $id, &$dbw ) { if ( !is_array( $id ) ) { $id = [ $id ]; } $dbw->delete( 'revision', [ 'rev_id' => $id ], __METHOD__ ); // Delete from ip_changes should a record exist. $dbw->delete( 'ip_changes', [ 'ipc_rev_id' => $id ], __METHOD__ ); } } $maintClass = DeleteOrphanedRevisions::class; require_once RUN_MAINTENANCE_IF_MAIN;