MediaWiki master
deleteArchivedRevisions.php
Go to the documentation of this file.
1<?php
26// @codeCoverageIgnoreStart
27require_once __DIR__ . '/Maintenance.php';
28// @codeCoverageIgnoreEnd
29
37 public function __construct() {
38 parent::__construct();
39 $this->addDescription(
40 "Deletes all archived revisions\nThese revisions will no longer be restorable" );
41 $this->addOption( 'delete', 'Performs the deletion' );
42 }
43
44 public function execute() {
45 $dbw = $this->getPrimaryDB();
46
47 if ( !$this->hasOption( 'delete' ) ) {
48 $count = $dbw->newSelectQueryBuilder()
49 ->select( 'COUNT(*)' )
50 ->from( 'archive' )
51 ->caller( __METHOD__ )
52 ->fetchField();
53 $this->output( "Found $count revisions to delete.\n" );
54 $this->output( "Please run the script again with the --delete option "
55 . "to really delete the revisions.\n" );
56 return;
57 }
58
59 $this->output( "Deleting archived revisions..." );
60 $dbw->newDeleteQueryBuilder()
61 ->deleteFrom( 'archive' )
62 ->where( '*' )
63 ->caller( __METHOD__ )->execute();
64 $count = $dbw->affectedRows();
65 $this->output( "done. $count revisions deleted.\n" );
66
67 if ( $count ) {
68 $this->purgeRedundantText( true );
69 }
70 }
71}
72
73// @codeCoverageIgnoreStart
74$maintClass = DeleteArchivedRevisions::class;
75require_once RUN_MAINTENANCE_IF_MAIN;
76// @codeCoverageIgnoreEnd
Maintenance script to delete archived (deleted from public) revisions from the database.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
purgeRedundantText( $delete=true)
Support function for cleaning up redundant text records.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.