begin(); $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_storage_group,fa_storage_key FROM $tbl_arch" ); while( $row = $dbw->fetchObject( $res ) ) { $key = $row->fa_storage_key; $group = $row->fa_storage_group; $store = FileStore::get( $group ); if ( $store ) { $path = $store->filePath( $key ); if ( $path && file_exists($path) ) { $transaction->addCommit( FSTransaction::DELETE_FILE, $path ); } else { echo( "Notice - file '$key' not found in group '$group'\n" ); } } else { echo( "Notice - invalid file storage group '$group'\n" ); } } echo( "done.\n" ); $transaction->commit(); # Delete as appropriate echo( "Deleting filearchive rows..." ); $dbw->query( "TRUNCATE TABLE $tbl_arch" ); echo( "done.\n" ); # This bit's done # Purge redundant text records $dbw->commit(); } ?>