ApiParse: don't reparse language link titles
[mediawiki.git] / maintenance / deleteAutoPatrolLogs.php
blobc2db18591ad1cfbc3f6d52c94e771df418c4de4a
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
19 // @codeCoverageIgnoreStart
20 require_once __DIR__ . '/Maintenance.php';
21 // @codeCoverageIgnoreEnd
23 /**
24 * Remove autopatrol logs in the logging table.
26 * @ingroup Maintenance
28 class DeleteAutoPatrolLogs extends Maintenance {
30 public function __construct() {
31 parent::__construct();
32 $this->addDescription( 'Remove autopatrol logs in the logging table' );
33 $this->addOption( 'dry-run', 'Print debug info instead of actually deleting' );
34 $this->addOption(
35 'check-old',
36 'Check old patrol logs (for deleting old format autopatrols).'
38 $this->addOption(
39 'before',
40 'Timestamp to delete only before that time, all MediaWiki timestamp formats are accepted',
41 false,
42 true
44 $this->addOption(
45 'from-id',
46 'First row (log id) to start updating from',
47 false,
48 true
50 $this->addOption(
51 'sleep',
52 'Sleep time (in seconds) between every batch',
53 false,
54 true
56 $this->setBatchSize( 1000 );
59 public function execute() {
60 $this->setBatchSize( $this->getOption( 'batch-size', $this->getBatchSize() ) );
62 $sleep = (int)$this->getOption( 'sleep', 10 );
63 $fromId = $this->getOption( 'from-id', null );
64 $this->countDown( 5 );
65 while ( true ) {
66 if ( $this->hasOption( 'check-old' ) ) {
67 $rowsData = $this->getRowsOld( $fromId );
68 // We reached end of the table
69 if ( !$rowsData ) {
70 break;
72 $rows = $rowsData['rows'];
73 $fromId = $rowsData['lastId'];
75 // There is nothing to delete in this batch
76 if ( !$rows ) {
77 continue;
79 } else {
80 $rows = $this->getRows( $fromId );
81 if ( !$rows ) {
82 break;
84 $fromId = end( $rows );
87 if ( $this->hasOption( 'dry-run' ) ) {
88 $this->output( 'These rows will get deleted: ' . implode( ', ', $rows ) . "\n" );
89 } else {
90 $this->deleteRows( $rows );
91 $this->output( 'Processed up to row id ' . end( $rows ) . "\n" );
94 if ( $sleep > 0 ) {
95 sleep( $sleep );
100 private function getRows( $fromId ) {
101 $dbr = $this->getReplicaDB();
102 $before = $this->getOption( 'before', false );
104 $conds = [
105 'log_type' => 'patrol',
106 'log_action' => 'autopatrol',
109 if ( $fromId ) {
110 $conds[] = $dbr->expr( 'log_id', '>', $fromId );
113 if ( $before ) {
114 $conds[] = $dbr->expr( 'log_timestamp', '<', $dbr->timestamp( $before ) );
117 return $dbr->newSelectQueryBuilder()
118 ->select( 'log_id' )
119 ->from( 'logging' )
120 ->where( $conds )
121 ->orderBy( 'log_id' )
122 ->limit( $this->getBatchSize() )
123 ->caller( __METHOD__ )
124 ->fetchFieldValues();
127 private function getRowsOld( $fromId ) {
128 $dbr = $this->getReplicaDB();
129 $batchSize = $this->getBatchSize();
130 $before = $this->getOption( 'before', false );
132 $conds = [
133 'log_type' => 'patrol',
134 'log_action' => 'patrol',
137 if ( $fromId ) {
138 $conds[] = $dbr->expr( 'log_id', '>', $fromId );
141 if ( $before ) {
142 $conds[] = $dbr->expr( 'log_timestamp', '<', $dbr->timestamp( $before ) );
145 $result = $dbr->newSelectQueryBuilder()
146 ->select( [ 'log_id', 'log_params' ] )
147 ->from( 'logging' )
148 ->where( $conds )
149 ->orderBy( 'log_id' )
150 ->limit( $batchSize )
151 ->caller( __METHOD__ )
152 ->fetchResultSet();
154 $last = null;
155 $autopatrols = [];
156 foreach ( $result as $row ) {
157 $last = $row->log_id;
158 $logEntry = DatabaseLogEntry::newFromRow( $row );
159 $params = $logEntry->getParameters();
160 if ( !is_array( $params ) ) {
161 continue;
164 // This logic belongs to PatrolLogFormatter::getMessageKey
165 // and LogFormatter::extractParameters the 'auto' value is logically presented as key [5].
166 // For legacy case the logical key is index + 3, meaning [2].
167 // For the modern case, the logical key is index - 1 meaning [6].
168 if ( array_key_exists( '6::auto', $params ) ) {
169 // Between 2011-2016 autopatrol logs
170 $auto = $params['6::auto'] === true;
171 } elseif ( $logEntry->isLegacy() === true && array_key_exists( 2, $params ) ) {
172 // Pre-2011 autopatrol logs
173 $auto = $params[2] === '1';
174 } else {
175 continue;
178 if ( $auto ) {
179 $autopatrols[] = $row->log_id;
183 if ( $last === null ) {
184 return null;
187 return [ 'rows' => $autopatrols, 'lastId' => $last ];
190 private function deleteRows( array $rows ) {
191 $dbw = $this->getPrimaryDB();
193 $dbw->newDeleteQueryBuilder()
194 ->deleteFrom( 'logging' )
195 ->where( [ 'log_id' => $rows ] )
196 ->caller( __METHOD__ )->execute();
198 $this->waitForReplication();
203 // @codeCoverageIgnoreStart
204 $maintClass = DeleteAutoPatrolLogs::class;
205 require_once RUN_MAINTENANCE_IF_MAIN;
206 // @codeCoverageIgnoreEnd