3 * Prioritized list of file repositories.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Prioritized list of file repositories
33 /** @var FileRepo[] */
34 protected $foreignRepos;
37 protected $reposInitialised = false;
43 protected $foreignInfo;
45 /** @var ProcessCacheLRU */
49 protected static $instance;
51 /** Maximum number of cache items */
52 const MAX_CACHE_SIZE
= 500;
55 * Get a RepoGroup instance. At present only one instance of RepoGroup is
56 * needed in a MediaWiki invocation, this may change in the future.
59 static function singleton() {
60 if ( self
::$instance ) {
61 return self
::$instance;
63 global $wgLocalFileRepo, $wgForeignFileRepos;
64 self
::$instance = new RepoGroup( $wgLocalFileRepo, $wgForeignFileRepos );
66 return self
::$instance;
70 * Destroy the singleton instance, so that a new one will be created next
71 * time singleton() is called.
73 static function destroySingleton() {
74 self
::$instance = null;
78 * Set the singleton instance to a given object
79 * Used by extensions which hook into the Repo chain.
80 * It's not enough to just create a superclass ... you have
81 * to get people to call into it even though all they know is RepoGroup::singleton()
83 * @param RepoGroup $instance
85 static function setSingleton( $instance ) {
86 self
::$instance = $instance;
90 * Construct a group of file repositories.
92 * @param array $localInfo Associative array for local repo's info
93 * @param array $foreignInfo Array of repository info arrays.
94 * Each info array is an associative array with the 'class' member
95 * giving the class name. The entire array is passed to the repository
96 * constructor as the first parameter.
98 function __construct( $localInfo, $foreignInfo ) {
99 $this->localInfo
= $localInfo;
100 $this->foreignInfo
= $foreignInfo;
101 $this->cache
= new ProcessCacheLRU( self
::MAX_CACHE_SIZE
);
105 * Search repositories for an image.
106 * You can also use wfFindFile() to do this.
108 * @param Title|string $title Title object or string
109 * @param array $options Associative array of options:
110 * time: requested time for an archived image, or false for the
111 * current version. An image object will be returned which was
112 * created at the specified time.
113 * ignoreRedirect: If true, do not follow file redirects
114 * private: If true, return restricted (deleted) files if the current
115 * user is allowed to view them. Otherwise, such files will not
117 * bypassCache: If true, do not use the process-local cache of File objects
118 * @return File|bool False if title is not found
120 function findFile( $title, $options = array() ) {
121 if ( !is_array( $options ) ) {
123 $options = array( 'time' => $options );
125 if ( !$this->reposInitialised
) {
126 $this->initialiseRepos();
128 $title = File
::normalizeTitle( $title );
134 if ( empty( $options['ignoreRedirect'] )
135 && empty( $options['private'] )
136 && empty( $options['bypassCache'] )
138 $time = isset( $options['time'] ) ?
$options['time'] : '';
139 $dbkey = $title->getDBkey();
140 if ( $this->cache
->has( $dbkey, $time, 60 ) ) {
141 return $this->cache
->get( $dbkey, $time );
148 # Check the local repo
149 $image = $this->localRepo
->findFile( $title, $options );
151 # Check the foreign repos
153 foreach ( $this->foreignRepos
as $repo ) {
154 $image = $repo->findFile( $title, $options );
161 $image = $image ?
$image : false; // type sanity
162 # Cache file existence or non-existence
163 if ( $useCache && ( !$image ||
$image->isCacheable() ) ) {
164 $this->cache
->set( $dbkey, $time, $image );
171 * Search repositories for many files at once.
173 * @param array $inputItems An array of titles, or an array of findFile() options with
174 * the "title" option giving the title. Example:
176 * $findItem = array( 'title' => $title, 'private' => true );
177 * $findBatch = array( $findItem );
178 * $repo->findFiles( $findBatch );
180 * No title should appear in $items twice, as the result use titles as keys
181 * @param int $flags Supports:
182 * - FileRepo::NAME_AND_TIME_ONLY : return a (search title => (title,timestamp)) map.
183 * The search title uses the input titles; the other is the final post-redirect title.
184 * All titles are returned as string DB keys and the inner array is associative.
185 * @return array Map of (file name => File objects) for matches
187 function findFiles( array $inputItems, $flags = 0 ) {
188 if ( !$this->reposInitialised
) {
189 $this->initialiseRepos();
193 foreach ( $inputItems as $item ) {
194 if ( !is_array( $item ) ) {
195 $item = array( 'title' => $item );
197 $item['title'] = File
::normalizeTitle( $item['title'] );
198 if ( $item['title'] ) {
199 $items[$item['title']->getDBkey()] = $item;
203 $images = $this->localRepo
->findFiles( $items, $flags );
205 foreach ( $this->foreignRepos
as $repo ) {
206 // Remove found files from $items
207 foreach ( $images as $name => $image ) {
208 unset( $items[$name] );
211 $images = array_merge( $images, $repo->findFiles( $items, $flags ) );
218 * Interface for FileRepo::checkRedirect()
219 * @param Title $title
222 function checkRedirect( Title
$title ) {
223 if ( !$this->reposInitialised
) {
224 $this->initialiseRepos();
227 $redir = $this->localRepo
->checkRedirect( $title );
232 foreach ( $this->foreignRepos
as $repo ) {
233 $redir = $repo->checkRedirect( $title );
243 * Find an instance of the file with this key, created at the specified time
244 * Returns false if the file does not exist.
246 * @param string $hash Base 36 SHA-1 hash
247 * @param array $options Option array, same as findFile()
248 * @return File|bool File object or false if it is not found
250 function findFileFromKey( $hash, $options = array() ) {
251 if ( !$this->reposInitialised
) {
252 $this->initialiseRepos();
255 $file = $this->localRepo
->findFileFromKey( $hash, $options );
257 foreach ( $this->foreignRepos
as $repo ) {
258 $file = $repo->findFileFromKey( $hash, $options );
269 * Find all instances of files with this key
271 * @param string $hash Base 36 SHA-1 hash
274 function findBySha1( $hash ) {
275 if ( !$this->reposInitialised
) {
276 $this->initialiseRepos();
279 $result = $this->localRepo
->findBySha1( $hash );
280 foreach ( $this->foreignRepos
as $repo ) {
281 $result = array_merge( $result, $repo->findBySha1( $hash ) );
283 usort( $result, 'File::compare' );
289 * Find all instances of files with this keys
291 * @param array $hashes Base 36 SHA-1 hashes
292 * @return array Array of array of File objects
294 function findBySha1s( array $hashes ) {
295 if ( !$this->reposInitialised
) {
296 $this->initialiseRepos();
299 $result = $this->localRepo
->findBySha1s( $hashes );
300 foreach ( $this->foreignRepos
as $repo ) {
301 $result = array_merge_recursive( $result, $repo->findBySha1s( $hashes ) );
303 //sort the merged (and presorted) sublist of each hash
304 foreach ( $result as $hash => $files ) {
305 usort( $result[$hash], 'File::compare' );
312 * Get the repo instance with a given key.
313 * @param string|int $index
314 * @return bool|LocalRepo
316 function getRepo( $index ) {
317 if ( !$this->reposInitialised
) {
318 $this->initialiseRepos();
320 if ( $index === 'local' ) {
321 return $this->localRepo
;
322 } elseif ( isset( $this->foreignRepos
[$index] ) ) {
323 return $this->foreignRepos
[$index];
330 * Get the repo instance by its name
331 * @param string $name
334 function getRepoByName( $name ) {
335 if ( !$this->reposInitialised
) {
336 $this->initialiseRepos();
338 foreach ( $this->foreignRepos
as $repo ) {
339 if ( $repo->name
== $name ) {
348 * Get the local repository, i.e. the one corresponding to the local image
349 * table. Files are typically uploaded to the local repository.
353 function getLocalRepo() {
354 return $this->getRepo( 'local' );
358 * Call a function for each foreign repo, with the repo object as the
361 * @param callable $callback The function to call
362 * @param array $params Optional additional parameters to pass to the function
365 function forEachForeignRepo( $callback, $params = array() ) {
366 if ( !$this->reposInitialised
) {
367 $this->initialiseRepos();
369 foreach ( $this->foreignRepos
as $repo ) {
370 $args = array_merge( array( $repo ), $params );
371 if ( call_user_func_array( $callback, $args ) ) {
380 * Does the installation have any foreign repos set up?
383 function hasForeignRepos() {
384 if ( !$this->reposInitialised
) {
385 $this->initialiseRepos();
387 return (bool)$this->foreignRepos
;
391 * Initialise the $repos array
393 function initialiseRepos() {
394 if ( $this->reposInitialised
) {
397 $this->reposInitialised
= true;
399 $this->localRepo
= $this->newRepo( $this->localInfo
);
400 $this->foreignRepos
= array();
401 foreach ( $this->foreignInfo
as $key => $info ) {
402 $this->foreignRepos
[$key] = $this->newRepo( $info );
407 * Create a repo class based on an info structure
411 protected function newRepo( $info ) {
412 $class = $info['class'];
414 return new $class( $info );
418 * Split a virtual URL into repo, zone and rel parts
420 * @throws MWException
421 * @return array Containing repo, zone and rel
423 function splitVirtualUrl( $url ) {
424 if ( substr( $url, 0, 9 ) != 'mwrepo://' ) {
425 throw new MWException( __METHOD__
. ': unknown protocol' );
428 $bits = explode( '/', substr( $url, 9 ), 3 );
429 if ( count( $bits ) != 3 ) {
430 throw new MWException( __METHOD__
. ": invalid mwrepo URL: $url" );
437 * @param string $fileName
440 function getFileProps( $fileName ) {
441 if ( FileRepo
::isVirtualUrl( $fileName ) ) {
442 list( $repoName, /* $zone */, /* $rel */ ) = $this->splitVirtualUrl( $fileName );
443 if ( $repoName === '' ) {
446 $repo = $this->getRepo( $repoName );
448 return $repo->getFileProps( $fileName );
450 return FSFile
::getPropsFromPath( $fileName );
455 * Clear RepoGroup process cache used for finding a file
456 * @param Title|null $title Title of the file or null to clear all files
458 public function clearCache( Title
$title = null ) {
459 if ( $title == null ) {
460 $this->cache
->clear();
462 $this->cache
->clear( $title->getDBkey() );