MediaWiki REL1_38
deleteArchivedFiles.php
Go to the documentation of this file.
1<?php
27
28require_once __DIR__ . '/Maintenance.php';
29
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription( 'Deletes all archived images.' );
39 $this->addOption( 'delete', 'Perform the deletion' );
40 $this->addOption( 'force', 'Force deletion of rows from filearchive' );
41 }
42
43 public function execute() {
44 if ( !$this->hasOption( 'delete' ) ) {
45 $this->output( "Use --delete to actually confirm this script\n" );
46 return;
47 }
48
49 # Data should come off the master, wrapped in a transaction
50 $dbw = $this->getDB( DB_PRIMARY );
51 $this->beginTransaction( $dbw, __METHOD__ );
52 $repo = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo();
53
54 # Get "active" revisions from the filearchive table
55 $this->output( "Searching for and deleting archived files...\n" );
56 $res = $dbw->select(
57 'filearchive',
58 [ 'fa_id', 'fa_storage_group', 'fa_storage_key', 'fa_sha1', 'fa_name' ],
59 '',
60 __METHOD__
61 );
62
63 $count = 0;
64 foreach ( $res as $row ) {
65 $key = $row->fa_storage_key;
66 if ( !strlen( $key ) ) {
67 $this->output( "Entry with ID {$row->fa_id} has empty key, skipping\n" );
68 continue;
69 }
70
71 $file = $repo->newFile( $row->fa_name );
72 $status = $file->acquireFileLock( 10 );
73 if ( !$status->isOK() ) {
74 $this->error( "Could not acquire lock on '{$row->fa_name}', skipping\n" );
75 continue;
76 }
77
78 $group = $row->fa_storage_group;
79 $id = $row->fa_id;
80 $path = $repo->getZonePath( 'deleted' ) .
81 '/' . $repo->getDeletedHashPath( $key ) . $key;
82 if ( isset( $row->fa_sha1 ) ) {
83 $sha1 = $row->fa_sha1;
84 } else {
85 // old row, populate from key
86 $sha1 = LocalRepo::getHashFromKey( $key );
87 }
88
89 // Check if the file is used anywhere...
90 $inuse = (bool)$dbw->selectField( 'oldimage', '1',
91 [
92 'oi_sha1' => $sha1,
93 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE
94 ],
95 __METHOD__,
96 [ 'FOR UPDATE' ]
97 );
98
99 $needForce = true;
100 if ( !$repo->fileExists( $path ) ) {
101 $this->output( "Notice - file '$key' not found in group '$group'\n" );
102 } elseif ( $inuse ) {
103 $this->output( "Notice - file '$key' is still in use\n" );
104 } elseif ( !$repo->quickPurge( $path ) ) {
105 $this->output( "Unable to remove file $path, skipping\n" );
106 $file->releaseFileLock();
107
108 // don't delete even with --force
109 continue;
110 } else {
111 $needForce = false;
112 }
113
114 if ( $needForce ) {
115 if ( $this->hasOption( 'force' ) ) {
116 $this->output( "Got --force, deleting DB entry\n" );
117 } else {
118 $file->releaseFileLock();
119 continue;
120 }
121 }
122
123 $count++;
124 $dbw->delete( 'filearchive', [ 'fa_id' => $id ], __METHOD__ );
125 $file->releaseFileLock();
126 }
127
128 $this->commitTransaction( $dbw, __METHOD__ );
129 $this->output( "Done! [$count file(s)]\n" );
130 }
131}
132
133$maintClass = DeleteArchivedFiles::class;
134require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
Maintenance script to delete archived (non-current) files from the database.
__construct()
Default constructor.
execute()
Do the actual work.
static getHashFromKey( $key)
Gets the SHA1 hash from a storage key.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
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.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
MediaWikiServices is the service locator for the application scope of MediaWiki.
const DB_PRIMARY
Definition defines.php:27
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition router.php:42