blob: da1c14d589246f0d9c5b8ce437e3ac17bedbeb59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/**
* Support functions for the deleteArchivedFiles script
*
* @file
* @ingroup Maintenance
* @author Aaron Schulz
*/
require_once( "$IP/includes/FileStore.php" );
require_once( "$IP/includes/filerepo/File.php" );
function DeleteArchivedFiles( $delete = false ) {
# Data should come off the master, wrapped in a transaction
$dbw = wfGetDB( DB_MASTER );
$transaction = new FSTransaction();
if( !FileStore::lock() ) {
wfDebug( __METHOD__.": failed to acquire file store lock, aborting\n" );
return false;
}
$tbl_arch = $dbw->tableName( 'filearchive' );
# Get "active" revisions from the filearchive table
echo( "Searching for and deleting archived files...\n" );
$res = $dbw->query( "SELECT fa_id,fa_storage_group,fa_storage_key FROM $tbl_arch" );
while( $row = $dbw->fetchObject( $res ) ) {
$key = $row->fa_storage_key;
$group = $row->fa_storage_group;
$id = $row->fa_id;
$store = FileStore::get( $group );
if( $store ) {
$path = $store->filePath( $key );
$sha1 = substr( $key, 0, strcspn( $key, '.' ) );
$inuse = $dbw->selectField( 'oldimage', '1',
array( 'oi_sha1' => $sha1,
'oi_deleted & '.File::DELETED_FILE => File::DELETED_FILE ),
__METHOD__, array( 'FOR UPDATE' ) );
if ( $path && file_exists($path) && !$inuse ) {
$transaction->addCommit( FSTransaction::DELETE_FILE, $path );
$dbw->query( "DELETE FROM $tbl_arch WHERE fa_id = $id" );
} else {
echo( "Notice - file '$key' not found in group '$group'\n" );
}
} else {
echo( "Notice - invalid file storage group '$group' for file '$key'\n" );
}
}
echo( "done.\n" );
$transaction->commit();
}
|