Merge "Perform a permission check on the title when changing the page language"
[lhc/web/wiklou.git] / maintenance / nukePage.php
1 <?php
2 /**
3 * Erase a page record from the database
4 * Irreversible (can't use standard undelete) and does not update link tables
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 */
25
26 require_once __DIR__ . '/Maintenance.php';
27
28 /**
29 * Maintenance script that erases a page record from the database.
30 *
31 * @ingroup Maintenance
32 */
33 class NukePage extends Maintenance {
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Remove a page record from the database' );
37 $this->addOption( 'delete', "Actually delete the page" );
38 $this->addArg( 'title', 'Title to delete' );
39 }
40
41 public function execute() {
42 $name = $this->getArg();
43 $delete = $this->hasOption( 'delete' );
44
45 $dbw = $this->getDB( DB_MASTER );
46 $this->beginTransaction( $dbw, __METHOD__ );
47
48 $tbl_pag = $dbw->tableName( 'page' );
49 $tbl_rec = $dbw->tableName( 'recentchanges' );
50 $tbl_rev = $dbw->tableName( 'revision' );
51
52 # Get page ID
53 $this->output( "Searching for \"$name\"..." );
54 $title = Title::newFromText( $name );
55 if ( $title ) {
56 $id = $title->getArticleID();
57 $real = $title->getPrefixedText();
58 $isGoodArticle = $title->isContentPage();
59 $this->output( "found \"$real\" with ID $id.\n" );
60
61 # Get corresponding revisions
62 $this->output( "Searching for revisions..." );
63 $res = $dbw->query( "SELECT rev_id FROM $tbl_rev WHERE rev_page = $id" );
64 $revs = [];
65 foreach ( $res as $row ) {
66 $revs[] = $row->rev_id;
67 }
68 $count = count( $revs );
69 $this->output( "found $count.\n" );
70
71 # Delete the page record and associated recent changes entries
72 if ( $delete ) {
73 $this->output( "Deleting page record..." );
74 $dbw->query( "DELETE FROM $tbl_pag WHERE page_id = $id" );
75 $this->output( "done.\n" );
76 $this->output( "Cleaning up recent changes..." );
77 $dbw->query( "DELETE FROM $tbl_rec WHERE rc_cur_id = $id" );
78 $this->output( "done.\n" );
79 }
80
81 $this->commitTransaction( $dbw, __METHOD__ );
82
83 # Delete revisions as appropriate
84 if ( $delete && $count ) {
85 $this->output( "Deleting revisions..." );
86 $this->deleteRevisions( $revs );
87 $this->output( "done.\n" );
88 $this->purgeRedundantText( true );
89 }
90
91 # Update stats as appropriate
92 if ( $delete ) {
93 $this->output( "Updating site stats..." );
94 $ga = $isGoodArticle ? -1 : 0; // if it was good, decrement that too
95 $stats = new SiteStatsUpdate( 0, -$count, $ga, -1 );
96 $stats->doUpdate();
97 $this->output( "done.\n" );
98 }
99 } else {
100 $this->output( "not found in database.\n" );
101 $this->commitTransaction( $dbw, __METHOD__ );
102 }
103 }
104
105 public function deleteRevisions( $ids ) {
106 $dbw = $this->getDB( DB_MASTER );
107 $this->beginTransaction( $dbw, __METHOD__ );
108
109 $tbl_rev = $dbw->tableName( 'revision' );
110
111 $set = implode( ', ', $ids );
112 $dbw->query( "DELETE FROM $tbl_rev WHERE rev_id IN ( $set )" );
113
114 $this->commitTransaction( $dbw, __METHOD__ );
115 }
116 }
117
118 $maintClass = "NukePage";
119 require_once RUN_MAINTENANCE_IF_MAIN;