26 require_once __DIR__ .
'/Maintenance.php';
37 parent::__construct();
39 $this->
addOption(
'delete',
"Actually delete the page" );
40 $this->
addArg(
'title',
'Title to delete' );
44 $name = $this->
getArg( 0 );
51 $this->
output(
"Searching for \"$name\"..." );
52 $title = Title::newFromText( $name );
54 $id = $title->getArticleID();
55 $real = $title->getPrefixedText();
56 $isGoodArticle = $title->isContentPage();
57 $this->
output(
"found \"$real\" with ID $id.\n" );
59 # Get corresponding revisions
60 $this->
output(
"Searching for revisions..." );
62 $revs = $dbw->newSelectQueryBuilder()
65 ->where( [
'rev_page' => $id ] )
66 ->caller( __METHOD__ )->fetchFieldValues();
67 $count = count( $revs );
68 $this->
output(
"found $count.\n" );
70 # Delete the page record and associated recent changes entries
72 $this->
output(
"Deleting page record..." );
73 $dbw->delete(
'page', [
'page_id' => $id ], __METHOD__ );
74 $this->
output(
"done.\n" );
75 $this->
output(
"Cleaning up recent changes..." );
76 $dbw->delete(
'recentchanges', [
'rc_cur_id' => $id ], __METHOD__ );
77 $this->
output(
"done.\n" );
82 # Delete revisions as appropriate
83 if ( $delete && $count ) {
84 $this->
output(
"Deleting revisions..." );
86 $this->
output(
"done.\n" );
90 # Update stats as appropriate
92 $this->
output(
"Updating site stats..." );
94 $ga = $isGoodArticle ? -1 : 0;
101 $this->
output(
"done.\n" );
104 $this->
output(
"not found in database.\n" );
113 $dbw->delete(
'revision', [
'rev_id' => $ids ], __METHOD__ );
120 require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $dbDomain=false)
Returns a database to be used by current maintenance script.
addArg( $arg, $description, $required=true, $multi=false)
Add some args that are needed.
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
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.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Maintenance script that erases a page record from the database.
__construct()
Default constructor.
execute()
Do the actual work.
static factory(array $deltas)