From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- maintenance/cleanupUploadStash.php | 75 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 maintenance/cleanupUploadStash.php (limited to 'maintenance/cleanupUploadStash.php') diff --git a/maintenance/cleanupUploadStash.php b/maintenance/cleanupUploadStash.php new file mode 100644 index 00000000..4b47f397 --- /dev/null +++ b/maintenance/cleanupUploadStash.php @@ -0,0 +1,75 @@ + + * @ingroup Maintenance + */ + +require_once( dirname( __FILE__ ) . '/Maintenance.php' ); + +class UploadStashCleanup extends Maintenance { + + public function __construct() { + parent::__construct(); + $this->mDescription = "Clean up abandoned files in temporary uploaded file stash"; + } + + public function execute() { + $repo = RepoGroup::singleton()->getLocalRepo(); + + $dbr = $repo->getSlaveDb(); + + $this->output( "Getting list of files to clean up...\n" ); + $res = $dbr->select( + 'uploadstash', + 'us_key', + 'us_timestamp < ' . $dbr->timestamp( time() - UploadStash::REPO_AGE * 3600 ), + __METHOD__ + ); + + if( !is_object( $res ) || $res->numRows() == 0 ) { + // nothing to do. + return false; + } + + // finish the read before starting writes. + $keys = array(); + foreach($res as $row) { + array_push( $keys, $row->us_key ); + } + + $this->output( 'Removing ' . count($keys) . " file(s)...\n" ); + // this could be done some other, more direct/efficient way, but using + // UploadStash's own methods means it's less likely to fall accidentally + // out-of-date someday + $stash = new UploadStash( $repo ); + + foreach( $keys as $key ) { + $stash->getFile( $key, true ); + $stash->removeFileNoAuth( $key ); + } + } +} + +$maintClass = "UploadStashCleanup"; +require_once( RUN_MAINTENANCE_IF_MAIN ); \ No newline at end of file -- cgit v1.2.3-54-g00ecf