localInfo = $localInfo; $this->foreignInfo = $foreignInfo; $this->cache = array(); } /** * Search repositories for an image. * You can also use wfFindFile() to do this. * * @param $title Title|string Title object or string * @param $options array Associative array of options: * time: requested time for an archived image, or false for the * current version. An image object will be returned which was * created at the specified time. * * ignoreRedirect: If true, do not follow file redirects * * private: If true, return restricted (deleted) files if the current * user is allowed to view them. Otherwise, such files will not * be found. * * bypassCache: If true, do not use the process-local cache of File objects * @return File object or false if it is not found */ function findFile( $title, $options = array() ) { if ( !is_array( $options ) ) { // MW 1.15 compat $options = array( 'time' => $options ); } if ( !$this->reposInitialised ) { $this->initialiseRepos(); } if ( !($title instanceof Title) ) { $title = Title::makeTitleSafe( NS_FILE, $title ); if ( !is_object( $title ) ) { return false; } } if ( $title->getNamespace() != NS_MEDIA && $title->getNamespace() != NS_FILE ) { throw new MWException( __METHOD__ . ' received an Title object with incorrect namespace' ); } # Check the cache if ( empty( $options['ignoreRedirect'] ) && empty( $options['private'] ) && empty( $options['bypassCache'] ) && $title->getNamespace() == NS_FILE ) { $useCache = true; $time = isset( $options['time'] ) ? $options['time'] : ''; $dbkey = $title->getDBkey(); if ( isset( $this->cache[$dbkey][$time] ) ) { wfDebug( __METHOD__.": got File:$dbkey from process cache\n" ); # Move it to the end of the list so that we can delete the LRU entry later $tmp = $this->cache[$dbkey]; unset( $this->cache[$dbkey] ); $this->cache[$dbkey] = $tmp; # Return the entry return $this->cache[$dbkey][$time]; } else { # Add a negative cache entry, may be overridden $this->trimCache(); $this->cache[$dbkey][$time] = false; $cacheEntry =& $this->cache[$dbkey][$time]; } } else { $useCache = false; } # Check the local repo $image = $this->localRepo->findFile( $title, $options ); if ( $image ) { if ( $useCache ) { $cacheEntry = $image; } return $image; } # Check the foreign repos foreach ( $this->foreignRepos as $repo ) { $image = $repo->findFile( $title, $options ); if ( $image ) { if ( $useCache ) { $cacheEntry = $image; } return $image; } } # Not found, do not override negative cache return false; } function findFiles( $inputItems ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } $items = array(); foreach ( $inputItems as $item ) { if ( !is_array( $item ) ) { $item = array( 'title' => $item ); } if ( !( $item['title'] instanceof Title ) ) $item['title'] = Title::makeTitleSafe( NS_FILE, $item['title'] ); if ( $item['title'] ) $items[$item['title']->getDBkey()] = $item; } $images = $this->localRepo->findFiles( $items ); foreach ( $this->foreignRepos as $repo ) { // Remove found files from $items foreach ( $images as $name => $image ) { unset( $items[$name] ); } $images = array_merge( $images, $repo->findFiles( $items ) ); } return $images; } /** * Interface for FileRepo::checkRedirect() */ function checkRedirect( $title ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } $redir = $this->localRepo->checkRedirect( $title ); if( $redir ) { return $redir; } foreach ( $this->foreignRepos as $repo ) { $redir = $repo->checkRedirect( $title ); if ( $redir ) { return $redir; } } return false; } /** * Find an instance of the file with this key, created at the specified time * Returns false if the file does not exist. * * @param $hash String base 36 SHA-1 hash * @param $options Option array, same as findFile() * @return File object or false if it is not found */ function findFileFromKey( $hash, $options = array() ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } $file = $this->localRepo->findFileFromKey( $hash, $options ); if ( !$file ) { foreach ( $this->foreignRepos as $repo ) { $file = $repo->findFileFromKey( $hash, $options ); if ( $file ) break; } } return $file; } /** * Find all instances of files with this key * * @param $hash String base 36 SHA-1 hash * @return Array of File objects */ function findBySha1( $hash ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } $result = $this->localRepo->findBySha1( $hash ); foreach ( $this->foreignRepos as $repo ) { $result = array_merge( $result, $repo->findBySha1( $hash ) ); } return $result; } /** * Get the repo instance with a given key. */ function getRepo( $index ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } if ( $index === 'local' ) { return $this->localRepo; } elseif ( isset( $this->foreignRepos[$index] ) ) { return $this->foreignRepos[$index]; } else { return false; } } /** * Get the repo instance by its name */ function getRepoByName( $name ) { if ( !$this->reposInitialised ) { $this->initialiseRepos(); } foreach ( $this->foreignRepos as $repo ) { if ( $repo->name == $name) return $repo; } return false; } /** * Get the local repository, i.e. the one corresponding to the local image * table. Files are typically uploaded to the local repository. * * @return LocalRepo */ function getLocalRepo() { return $this->getRepo( 'local' ); } /** * Call a function for each foreign repo, with the repo object as the * first parameter. * * @param $callback Callback: the function to call * @param $params Array: optional additional parameters to pass to the function */ function forEachForeignRepo( $callback, $params = array() ) { foreach( $this->foreignRepos as $repo ) { $args = array_merge( array( $repo ), $params ); if( call_user_func_array( $callback, $args ) ) { return true; } } return false; } /** * Does the installation have any foreign repos set up? * @return Boolean */ function hasForeignRepos() { return (bool)$this->foreignRepos; } /** * Initialise the $repos array */ function initialiseRepos() { if ( $this->reposInitialised ) { return; } $this->reposInitialised = true; $this->localRepo = $this->newRepo( $this->localInfo ); $this->foreignRepos = array(); foreach ( $this->foreignInfo as $key => $info ) { $this->foreignRepos[$key] = $this->newRepo( $info ); } } /** * Create a repo class based on an info structure */ protected function newRepo( $info ) { $class = $info['class']; return new $class( $info ); } /** * Split a virtual URL into repo, zone and rel parts * @return an array containing repo, zone and rel */ function splitVirtualUrl( $url ) { if ( substr( $url, 0, 9 ) != 'mwrepo://' ) { throw new MWException( __METHOD__.': unknown protocol' ); } $bits = explode( '/', substr( $url, 9 ), 3 ); if ( count( $bits ) != 3 ) { throw new MWException( __METHOD__.": invalid mwrepo URL: $url" ); } return $bits; } function getFileProps( $fileName ) { if ( FileRepo::isVirtualUrl( $fileName ) ) { list( $repoName, /* $zone */, /* $rel */ ) = $this->splitVirtualUrl( $fileName ); if ( $repoName === '' ) { $repoName = 'local'; } $repo = $this->getRepo( $repoName ); return $repo->getFileProps( $fileName ); } else { return File::getPropsFromPath( $fileName ); } } /** * Limit cache memory */ function trimCache() { while ( count( $this->cache ) >= self::MAX_CACHE_SIZE ) { reset( $this->cache ); $key = key( $this->cache ); wfDebug( __METHOD__.": evicting $key\n" ); unset( $this->cache[$key] ); } } }