]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - maintenance/dumpUploads.php
MediaWiki 1.17.1-scripts
[autoinstalls/mediawiki.git] / maintenance / dumpUploads.php
index c8f1667b0854539ae6b83f7f47ce25c44ea3f26b..74c0cb0bc9a7c73ac978eb25403fd65bd19baf43 100644 (file)
@@ -20,7 +20,7 @@
  * @ingroup Maintenance
  */
 
-require_once( dirname(__FILE__) . '/Maintenance.php' );
+require_once( dirname( __FILE__ ) . '/Maintenance.php' );
 
 class UploadDumper extends Maintenance {
        public function __construct() {
@@ -34,22 +34,22 @@ By default, outputs relative paths against the parent directory of \$wgUploadDir
        }
 
        public function execute() {
-               global $IP, $wgUseSharedUploads;
+               global $IP;
                $this->mAction = 'fetchLocal';
                $this->mBasePath = $this->getOption( 'base', $IP );
                $this->mShared = false;
                $this->mSharedSupplement = false;
 
-               if( $this->hasOption('local') ) {
+               if ( $this->hasOption( 'local' ) ) {
                        $this->mAction = 'fetchLocal';
                }
-               
-               if( $this->hasOption('used') ) {
+
+               if ( $this->hasOption( 'used' ) ) {
                        $this->mAction = 'fetchUsed';
                }
-               
-               if( $this->hasOption('shared') ) {
-                       if( $this->hasOption('used') ) {
+
+               if ( $this->hasOption( 'shared' ) ) {
+                       if ( $this->hasOption( 'used' ) ) {
                                // Include shared-repo files in the used check
                                $this->mShared = true;
                        } else {
@@ -57,51 +57,53 @@ By default, outputs relative paths against the parent directory of \$wgUploadDir
                                $this->mSharedSupplement = true;
                        }
                }
-               $this->{$this->mAction}( $this->mShared );
-               if( $this->mSharedSupplement ) {
+               $this-> { $this->mAction } ( $this->mShared );
+               if ( $this->mSharedSupplement ) {
                        $this->fetchUsed( true );
                }
        }
 
        /**
-        * Fetch a list of all or used images from a particular image source.
-        * @param string $table
-        * @param string $directory Base directory where files are located
-        * @param bool $shared true to pass shared-dir settings to hash func
+        * Fetch a list of used images from a particular image source.
+        *
+        * @param $shared Boolean: true to pass shared-dir settings to hash func
         */
        function fetchUsed( $shared ) {
                $dbr = wfGetDB( DB_SLAVE );
                $image = $dbr->tableName( 'image' );
                $imagelinks = $dbr->tableName( 'imagelinks' );
-               
+
                $sql = "SELECT DISTINCT il_to, img_name
                        FROM $imagelinks
                        LEFT OUTER JOIN $image
                        ON il_to=img_name";
                $result = $dbr->query( $sql );
-               
-               foreach( $result as $row ) {
+
+               foreach ( $result as $row ) {
                        $this->outputItem( $row->il_to, $shared );
                }
-               $dbr->freeResult( $result );
        }
 
+       /**
+        * Fetch a list of all images from a particular image source.
+        *
+        * @param $shared Boolean: true to pass shared-dir settings to hash func
+        */
        function fetchLocal( $shared ) {
                $dbr = wfGetDB( DB_SLAVE );
                $result = $dbr->select( 'image',
                        array( 'img_name' ),
                        '',
                        __METHOD__ );
-               
-               foreach( $result as $row ) {
+
+               foreach ( $result as $row ) {
                        $this->outputItem( $row->img_name, $shared );
                }
-               $dbr->freeResult( $result );
        }
-       
+
        function outputItem( $name, $shared ) {
                $file = wfFindFile( $name );
-               if( $file && $this->filterItem( $file, $shared ) ) {
+               if ( $file && $this->filterItem( $file, $shared ) ) {
                        $filename = $file->getFullPath();
                        $rel = wfRelativePath( $filename, $this->mBasePath );
                        $this->output( "$rel\n" );
@@ -116,4 +118,4 @@ By default, outputs relative paths against the parent directory of \$wgUploadDir
 }
 
 $maintClass = "UploadDumper";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );