MediaWiki master
purgeChangedFiles.php
Go to the documentation of this file.
1<?php
25
26require_once __DIR__ . '/Maintenance.php';
27
39 private static $typeMappings = [
40 'created' => [
41 'upload' => [ 'upload' ],
42 'import' => [ 'upload', 'interwiki' ],
43 ],
44 'deleted' => [
45 'delete' => [ 'delete', 'revision' ],
46 'suppress' => [ 'delete', 'revision' ],
47 ],
48 'modified' => [
49 'upload' => [ 'overwrite', 'revert' ],
50 'move' => [ 'move', 'move_redir' ],
51 ],
52 ];
53
57 private $startTimestamp;
58
62 private $endTimestamp;
63
64 public function __construct() {
65 parent::__construct();
66 $this->addDescription( 'Scan the logging table and purge files and thumbnails.' );
67 $this->addOption( 'starttime', 'Starting timestamp', true, true );
68 $this->addOption( 'endtime', 'Ending timestamp', true, true );
69 $this->addOption( 'type', 'Comma-separated list of types of changes to send purges for (' .
70 implode( ',', array_keys( self::$typeMappings ) ) . ',all)', false, true );
71 $this->addOption( 'htcp-dest', 'HTCP announcement destination (IP:port)', false, true );
72 $this->addOption( 'dry-run', 'Do not send purge requests' );
73 $this->addOption( 'sleep-per-batch', 'Milliseconds to sleep between batches', false, true );
74 $this->addOption( 'verbose', 'Show more output', false, false, 'v' );
75 $this->setBatchSize( 100 );
76 }
77
78 public function execute() {
79 global $wgHTCPRouting;
80
81 if ( $this->hasOption( 'htcp-dest' ) ) {
82 $parts = explode( ':', $this->getOption( 'htcp-dest' ), 2 );
83 if ( count( $parts ) < 2 ) {
84 // Add default htcp port
85 $parts[] = '4827';
86 }
87
88 // Route all HTCP messages to provided host:port
90 '' => [ 'host' => $parts[0], 'port' => $parts[1] ],
91 ];
92 $this->verbose( "HTCP broadcasts to {$parts[0]}:{$parts[1]}\n" );
93 }
94
95 // Find out which actions we should be concerned with
96 $typeOpt = $this->getOption( 'type', 'all' );
97 if ( $typeOpt === 'all' ) {
98 // Convert 'all' to all registered types
99 $typeOpt = implode( ',', array_keys( self::$typeMappings ) );
100 }
101 $typeList = explode( ',', $typeOpt );
102 foreach ( $typeList as $type ) {
103 if ( !isset( self::$typeMappings[$type] ) ) {
104 $this->error( "\nERROR: Unknown type: {$type}\n" );
105 $this->maybeHelp( true );
106 }
107 }
108
109 // Validate the timestamps
110 $dbr = $this->getReplicaDB();
111 $this->startTimestamp = $dbr->timestamp( $this->getOption( 'starttime' ) );
112 $this->endTimestamp = $dbr->timestamp( $this->getOption( 'endtime' ) );
113
114 if ( $this->startTimestamp > $this->endTimestamp ) {
115 $this->error( "\nERROR: starttime after endtime\n" );
116 $this->maybeHelp( true );
117 }
118
119 // Turn on verbose when dry-run is enabled
120 if ( $this->hasOption( 'dry-run' ) ) {
121 $this->mOptions['verbose'] = 1;
122 }
123
124 $this->verbose( 'Purging files that were: ' . implode( ', ', $typeList ) . "\n" );
125 foreach ( $typeList as $type ) {
126 $this->verbose( "Checking for {$type} files...\n" );
127 $this->purgeFromLogType( $type );
128 if ( !$this->hasOption( 'dry-run' ) ) {
129 $this->verbose( "...{$type} files purged.\n\n" );
130 }
131 }
132 }
133
139 protected function purgeFromLogType( $type ) {
140 $repo = $this->getServiceContainer()->getRepoGroup()->getLocalRepo();
141 $dbr = $this->getReplicaDB();
142
143 foreach ( self::$typeMappings[$type] as $logType => $logActions ) {
144 $this->verbose( "Scanning for {$logType}/" . implode( ',', $logActions ) . "\n" );
145
146 $res = $dbr->newSelectQueryBuilder()
147 ->select( [ 'log_title', 'log_timestamp', 'log_params' ] )
148 ->from( 'logging' )
149 ->where( [
150 'log_namespace' => NS_FILE,
151 'log_type' => $logType,
152 'log_action' => $logActions,
153 $dbr->expr( 'log_timestamp', '>=', $this->startTimestamp ),
154 $dbr->expr( 'log_timestamp', '<=', $this->endTimestamp ),
155 ] )
156 ->caller( __METHOD__ )->fetchResultSet();
157
158 $bSize = 0;
159 foreach ( $res as $row ) {
160 $file = $repo->newFile( Title::makeTitle( NS_FILE, $row->log_title ) );
161
162 if ( $this->hasOption( 'dry-run' ) ) {
163 $this->verbose( "{$type}[{$row->log_timestamp}]: {$row->log_title}\n" );
164 continue;
165 }
166
167 // Purge current version and its thumbnails
168 $file->purgeCache();
169 // Purge the old versions and their thumbnails
170 foreach ( $file->getHistory() as $oldFile ) {
171 $oldFile->purgeCache();
172 }
173
174 if ( $logType === 'delete' ) {
175 // If there is an orphaned storage file... delete it
176 if ( !$file->exists() && $repo->fileExists( $file->getPath() ) ) {
177 $dpath = $this->getDeletedPath( $repo, $file );
178 if ( $repo->fileExists( $dpath ) ) {
179 // Check to avoid data loss
180 $repo->getBackend()->delete( [ 'src' => $file->getPath() ] );
181 $this->verbose( "Deleted orphan file: {$file->getPath()}.\n" );
182 } else {
183 $this->error( "File was not deleted: {$file->getPath()}.\n" );
184 }
185 }
186
187 // Purge items from fileachive table (rows are likely here)
188 $this->purgeFromArchiveTable( $repo, $file );
189 } elseif ( $logType === 'move' ) {
190 // Purge the target file as well
191
192 $params = unserialize( $row->log_params );
193 if ( isset( $params['4::target'] ) ) {
194 $target = $params['4::target'];
195 $targetFile = $repo->newFile( Title::makeTitle( NS_FILE, $target ) );
196 $targetFile->purgeCache();
197 $this->verbose( "Purged file {$target}; move target @{$row->log_timestamp}.\n" );
198 }
199 }
200
201 $this->verbose( "Purged file {$row->log_title}; {$type} @{$row->log_timestamp}.\n" );
202
203 if ( $this->hasOption( 'sleep-per-batch' ) && ++$bSize > $this->getBatchSize() ) {
204 $bSize = 0;
205 // sleep-per-batch is milliseconds, usleep wants micro seconds.
206 usleep( 1000 * (int)$this->getOption( 'sleep-per-batch' ) );
207 }
208 }
209 }
210 }
211
212 protected function purgeFromArchiveTable( LocalRepo $repo, LocalFile $file ) {
213 $dbr = $repo->getReplicaDB();
214 $res = $dbr->newSelectQueryBuilder()
215 ->select( [ 'fa_archive_name' ] )
216 ->from( 'filearchive' )
217 ->where( [ 'fa_name' => $file->getName() ] )
218 ->caller( __METHOD__ )->fetchResultSet();
219
220 foreach ( $res as $row ) {
221 if ( $row->fa_archive_name === null ) {
222 // Was not an old version (current version names checked already)
223 continue;
224 }
225 $ofile = $repo->newFromArchiveName( $file->getTitle(), $row->fa_archive_name );
226 // If there is an orphaned storage file still there...delete it
227 if ( !$file->exists() && $repo->fileExists( $ofile->getPath() ) ) {
228 $dpath = $this->getDeletedPath( $repo, $ofile );
229 if ( $repo->fileExists( $dpath ) ) {
230 // Check to avoid data loss
231 $repo->getBackend()->delete( [ 'src' => $ofile->getPath() ] );
232 $this->output( "Deleted orphan file: {$ofile->getPath()}.\n" );
233 } else {
234 $this->error( "File was not deleted: {$ofile->getPath()}.\n" );
235 }
236 }
237 $file->purgeOldThumbnails( $row->fa_archive_name );
238 }
239 }
240
241 protected function getDeletedPath( LocalRepo $repo, LocalFile $file ) {
242 $hash = $repo->getFileSha1( $file->getPath() );
243 $key = "{$hash}.{$file->getExtension()}";
244
245 return $repo->getDeletedHashPath( $key ) . $key;
246 }
247
253 protected function verbose( $msg ) {
254 if ( $this->hasOption( 'verbose' ) ) {
255 $this->output( $msg );
256 }
257 }
258}
259
260$maintClass = PurgeChangedFiles::class;
261require_once RUN_MAINTENANCE_IF_MAIN;
const NS_FILE
Definition Defines.php:70
array $params
The job parameters.
fileExists( $file)
Checks existence of a file.
getFileSha1( $virtualUrl)
Get the sha1 (base 36) of a file with a given virtual URL/storage path.
getDeletedHashPath( $key)
Get a relative path for a deletion archive key, e.g.
getBackend()
Get the file backend instance.
Definition FileRepo.php:253
getPath()
Return the storage path to the file.
Definition File.php:469
getName()
Return the name of this file.
Definition File.php:341
getTitle()
Return the associated title object.
Definition File.php:371
Local file in the wiki's own database.
Definition LocalFile.php:68
exists()
canRender inherited
purgeOldThumbnails( $archiveName)
Delete cached transformed files for an archived version only.
Local repository that stores files in the local filesystem and registers them in the wiki's own datab...
Definition LocalRepo.php:49
getReplicaDB()
Get a connection to the replica DB.
newFromArchiveName( $title, $archiveName)
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
getServiceContainer()
Returns the main service container.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
maybeHelp( $force=false)
Maybe show the help.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
setBatchSize( $s=0)
Represents a title within MediaWiki.
Definition Title.php:78
Maintenance script that scans the deletion log and purges affected files within a timeframe.
execute()
Do the actual work.
__construct()
Default constructor.
purgeFromLogType( $type)
Purge cache and thumbnails for changes of the given type.
getDeletedPath(LocalRepo $repo, LocalFile $file)
purgeFromArchiveTable(LocalRepo $repo, LocalFile $file)
verbose( $msg)
Send an output message iff the 'verbose' option has been provided.
$wgHTCPRouting
Config variable stub for the HTCPRouting setting, for use by phpdoc and IDEs.