Set Redis::OPT_READ_TIMEOUT by default
[mediawiki.git] / includes / filerepo / FileRepo.php
blob7a30ccc26cb5587af36e4502c8ced206cd7fcacf
1 <?php
2 /**
3 * @defgroup FileRepo File Repository
5 * @brief This module handles how MediaWiki interacts with filesystems.
7 * @details
8 */
10 /**
11 * Base code for file repositories.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 * http://www.gnu.org/copyleft/gpl.html
28 * @file
29 * @ingroup FileRepo
32 /**
33 * Base class for file repositories
35 * @ingroup FileRepo
37 class FileRepo {
38 const DELETE_SOURCE = 1;
39 const OVERWRITE = 2;
40 const OVERWRITE_SAME = 4;
41 const SKIP_LOCKING = 8;
43 const NAME_AND_TIME_ONLY = 1;
45 /** @var bool Whether to fetch commons image description pages and display
46 * them on the local wiki */
47 public $fetchDescription;
49 /** @var int */
50 public $descriptionCacheExpiry;
52 /** @var FileBackend */
53 protected $backend;
55 /** @var array Map of zones to config */
56 protected $zones = array();
58 /** @var string URL of thumb.php */
59 protected $thumbScriptUrl;
61 /** @var bool Whether to skip media file transformation on parse and rely
62 * on a 404 handler instead. */
63 protected $transformVia404;
65 /** @var string URL of image description pages, e.g.
66 * http://en.wikipedia.org/wiki/File:
68 protected $descBaseUrl;
70 /** @var string URL of the MediaWiki installation, equivalent to
71 * $wgScriptPath, e.g. https://en.wikipedia.org/w
73 protected $scriptDirUrl;
75 /** @var string Script extension of the MediaWiki installation, equivalent
76 * to $wgScriptExtension, e.g. .php5 defaults to .php */
77 protected $scriptExtension;
79 /** @var string Equivalent to $wgArticlePath, e.g. http://en.wikipedia.org/wiki/$1 */
80 protected $articleUrl;
82 /** @var bool Equivalent to $wgCapitalLinks (or $wgCapitalLinkOverrides[NS_FILE],
83 * determines whether filenames implicitly start with a capital letter.
84 * The current implementation may give incorrect description page links
85 * when the local $wgCapitalLinks and initialCapital are mismatched.
87 protected $initialCapital;
89 /** @var string May be 'paranoid' to remove all parameters from error
90 * messages, 'none' to leave the paths in unchanged, or 'simple' to
91 * replace paths with placeholders. Default for LocalRepo is
92 * 'simple'.
94 protected $pathDisclosureProtection = 'simple';
96 /** @var bool Public zone URL. */
97 protected $url;
99 /** @var string The base thumbnail URL. Defaults to "<url>/thumb". */
100 protected $thumbUrl;
102 /** @var int The number of directory levels for hash-based division of files */
103 protected $hashLevels;
105 /** @var int The number of directory levels for hash-based division of deleted files */
106 protected $deletedHashLevels;
108 /** @var int File names over this size will use the short form of thumbnail
109 * names. Short thumbnail names only have the width, parameters, and the
110 * extension.
112 protected $abbrvThreshold;
114 /** @var string The URL of the repo's favicon, if any */
115 protected $favicon;
118 * Factory functions for creating new files
119 * Override these in the base class
121 protected $fileFactory = array( 'UnregisteredLocalFile', 'newFromTitle' );
122 protected $oldFileFactory = false;
123 protected $fileFactoryKey = false;
124 protected $oldFileFactoryKey = false;
127 * @param array|null $info
128 * @throws MWException
130 public function __construct( array $info = null ) {
131 // Verify required settings presence
132 if (
133 $info === null
134 || !array_key_exists( 'name', $info )
135 || !array_key_exists( 'backend', $info )
137 throw new MWException( __CLASS__ .
138 " requires an array of options having both 'name' and 'backend' keys.\n" );
141 // Required settings
142 $this->name = $info['name'];
143 if ( $info['backend'] instanceof FileBackend ) {
144 $this->backend = $info['backend']; // useful for testing
145 } else {
146 $this->backend = FileBackendGroup::singleton()->get( $info['backend'] );
149 // Optional settings that can have no value
150 $optionalSettings = array(
151 'descBaseUrl', 'scriptDirUrl', 'articleUrl', 'fetchDescription',
152 'thumbScriptUrl', 'pathDisclosureProtection', 'descriptionCacheExpiry',
153 'scriptExtension', 'favicon'
155 foreach ( $optionalSettings as $var ) {
156 if ( isset( $info[$var] ) ) {
157 $this->$var = $info[$var];
161 // Optional settings that have a default
162 $this->initialCapital = isset( $info['initialCapital'] )
163 ? $info['initialCapital']
164 : MWNamespace::isCapitalized( NS_FILE );
165 $this->url = isset( $info['url'] )
166 ? $info['url']
167 : false; // a subclass may set the URL (e.g. ForeignAPIRepo)
168 if ( isset( $info['thumbUrl'] ) ) {
169 $this->thumbUrl = $info['thumbUrl'];
170 } else {
171 $this->thumbUrl = $this->url ? "{$this->url}/thumb" : false;
173 $this->hashLevels = isset( $info['hashLevels'] )
174 ? $info['hashLevels']
175 : 2;
176 $this->deletedHashLevels = isset( $info['deletedHashLevels'] )
177 ? $info['deletedHashLevels']
178 : $this->hashLevels;
179 $this->transformVia404 = !empty( $info['transformVia404'] );
180 $this->abbrvThreshold = isset( $info['abbrvThreshold'] )
181 ? $info['abbrvThreshold']
182 : 255;
183 $this->isPrivate = !empty( $info['isPrivate'] );
184 // Give defaults for the basic zones...
185 $this->zones = isset( $info['zones'] ) ? $info['zones'] : array();
186 foreach ( array( 'public', 'thumb', 'transcoded', 'temp', 'deleted' ) as $zone ) {
187 if ( !isset( $this->zones[$zone]['container'] ) ) {
188 $this->zones[$zone]['container'] = "{$this->name}-{$zone}";
190 if ( !isset( $this->zones[$zone]['directory'] ) ) {
191 $this->zones[$zone]['directory'] = '';
193 if ( !isset( $this->zones[$zone]['urlsByExt'] ) ) {
194 $this->zones[$zone]['urlsByExt'] = array();
200 * Get the file backend instance. Use this function wisely.
202 * @return FileBackend
204 public function getBackend() {
205 return $this->backend;
209 * Get an explanatory message if this repo is read-only.
210 * This checks if an administrator disabled writes to the backend.
212 * @return string|bool Returns false if the repo is not read-only
214 public function getReadOnlyReason() {
215 return $this->backend->getReadOnlyReason();
219 * Check if a single zone or list of zones is defined for usage
221 * @param array $doZones Only do a particular zones
222 * @throws MWException
223 * @return Status
225 protected function initZones( $doZones = array() ) {
226 $status = $this->newGood();
227 foreach ( (array)$doZones as $zone ) {
228 $root = $this->getZonePath( $zone );
229 if ( $root === null ) {
230 throw new MWException( "No '$zone' zone defined in the {$this->name} repo." );
234 return $status;
238 * Determine if a string is an mwrepo:// URL
240 * @param string $url
241 * @return bool
243 public static function isVirtualUrl( $url ) {
244 return substr( $url, 0, 9 ) == 'mwrepo://';
248 * Get a URL referring to this repository, with the private mwrepo protocol.
249 * The suffix, if supplied, is considered to be unencoded, and will be
250 * URL-encoded before being returned.
252 * @param string|bool $suffix
253 * @return string
255 public function getVirtualUrl( $suffix = false ) {
256 $path = 'mwrepo://' . $this->name;
257 if ( $suffix !== false ) {
258 $path .= '/' . rawurlencode( $suffix );
261 return $path;
265 * Get the URL corresponding to one of the four basic zones
267 * @param string $zone One of: public, deleted, temp, thumb
268 * @param string|null $ext Optional file extension
269 * @return string|bool
271 public function getZoneUrl( $zone, $ext = null ) {
272 if ( in_array( $zone, array( 'public', 'temp', 'thumb', 'transcoded' ) ) ) {
273 // standard public zones
274 if ( $ext !== null && isset( $this->zones[$zone]['urlsByExt'][$ext] ) ) {
275 // custom URL for extension/zone
276 return $this->zones[$zone]['urlsByExt'][$ext];
277 } elseif ( isset( $this->zones[$zone]['url'] ) ) {
278 // custom URL for zone
279 return $this->zones[$zone]['url'];
282 switch ( $zone ) {
283 case 'public':
284 return $this->url;
285 case 'temp':
286 return "{$this->url}/temp";
287 case 'deleted':
288 return false; // no public URL
289 case 'thumb':
290 return $this->thumbUrl;
291 case 'transcoded':
292 return "{$this->url}/transcoded";
293 default:
294 return false;
299 * Get the backend storage path corresponding to a virtual URL.
300 * Use this function wisely.
302 * @param string $url
303 * @throws MWException
304 * @return string
306 public function resolveVirtualUrl( $url ) {
307 if ( substr( $url, 0, 9 ) != 'mwrepo://' ) {
308 throw new MWException( __METHOD__ . ': unknown protocol' );
310 $bits = explode( '/', substr( $url, 9 ), 3 );
311 if ( count( $bits ) != 3 ) {
312 throw new MWException( __METHOD__ . ": invalid mwrepo URL: $url" );
314 list( $repo, $zone, $rel ) = $bits;
315 if ( $repo !== $this->name ) {
316 throw new MWException( __METHOD__ . ": fetching from a foreign repo is not supported" );
318 $base = $this->getZonePath( $zone );
319 if ( !$base ) {
320 throw new MWException( __METHOD__ . ": invalid zone: $zone" );
323 return $base . '/' . rawurldecode( $rel );
327 * The the storage container and base path of a zone
329 * @param string $zone
330 * @return array (container, base path) or (null, null)
332 protected function getZoneLocation( $zone ) {
333 if ( !isset( $this->zones[$zone] ) ) {
334 return array( null, null ); // bogus
337 return array( $this->zones[$zone]['container'], $this->zones[$zone]['directory'] );
341 * Get the storage path corresponding to one of the zones
343 * @param string $zone
344 * @return string|null Returns null if the zone is not defined
346 public function getZonePath( $zone ) {
347 list( $container, $base ) = $this->getZoneLocation( $zone );
348 if ( $container === null || $base === null ) {
349 return null;
351 $backendName = $this->backend->getName();
352 if ( $base != '' ) { // may not be set
353 $base = "/{$base}";
356 return "mwstore://$backendName/{$container}{$base}";
360 * Create a new File object from the local repository
362 * @param Title|string $title Title object or string
363 * @param bool|string $time Time at which the image was uploaded. If this
364 * is specified, the returned object will be an instance of the
365 * repository's old file class instead of a current file. Repositories
366 * not supporting version control should return false if this parameter
367 * is set.
368 * @return File|null A File, or null if passed an invalid Title
370 public function newFile( $title, $time = false ) {
371 $title = File::normalizeTitle( $title );
372 if ( !$title ) {
373 return null;
375 if ( $time ) {
376 if ( $this->oldFileFactory ) {
377 return call_user_func( $this->oldFileFactory, $title, $this, $time );
378 } else {
379 return false;
381 } else {
382 return call_user_func( $this->fileFactory, $title, $this );
387 * Find an instance of the named file created at the specified time
388 * Returns false if the file does not exist. Repositories not supporting
389 * version control should return false if the time is specified.
391 * @param Title|string $title Title object or string
392 * @param array $options Associative array of options:
393 * time: requested time for a specific file version, or false for the
394 * current version. An image object will be returned which was
395 * created at the specified time (which may be archived or current).
396 * ignoreRedirect: If true, do not follow file redirects
397 * private: If true, return restricted (deleted) files if the current
398 * user is allowed to view them. Otherwise, such files will not
399 * be found. If a User object, use that user instead of the current.
400 * @return File|bool False on failure
402 public function findFile( $title, $options = array() ) {
403 $title = File::normalizeTitle( $title );
404 if ( !$title ) {
405 return false;
407 $time = isset( $options['time'] ) ? $options['time'] : false;
408 # First try the current version of the file to see if it precedes the timestamp
409 $img = $this->newFile( $title );
410 if ( !$img ) {
411 return false;
413 if ( $img->exists() && ( !$time || $img->getTimestamp() == $time ) ) {
414 return $img;
416 # Now try an old version of the file
417 if ( $time !== false ) {
418 $img = $this->newFile( $title, $time );
419 if ( $img && $img->exists() ) {
420 if ( !$img->isDeleted( File::DELETED_FILE ) ) {
421 return $img; // always OK
422 } elseif ( !empty( $options['private'] ) &&
423 $img->userCan( File::DELETED_FILE,
424 $options['private'] instanceof User ? $options['private'] : null
427 return $img;
432 # Now try redirects
433 if ( !empty( $options['ignoreRedirect'] ) ) {
434 return false;
436 $redir = $this->checkRedirect( $title );
437 if ( $redir && $title->getNamespace() == NS_FILE ) {
438 $img = $this->newFile( $redir );
439 if ( !$img ) {
440 return false;
442 if ( $img->exists() ) {
443 $img->redirectedFrom( $title->getDBkey() );
445 return $img;
449 return false;
453 * Find many files at once.
455 * @param array $items An array of titles, or an array of findFile() options with
456 * the "title" option giving the title. Example:
458 * $findItem = array( 'title' => $title, 'private' => true );
459 * $findBatch = array( $findItem );
460 * $repo->findFiles( $findBatch );
462 * No title should appear in $items twice, as the result use titles as keys
463 * @param int $flags Supports:
464 * - FileRepo::NAME_AND_TIME_ONLY : return a (search title => (title,timestamp)) map.
465 * The search title uses the input titles; the other is the final post-redirect title.
466 * All titles are returned as string DB keys and the inner array is associative.
467 * @return array Map of (file name => File objects) for matches
469 public function findFiles( array $items, $flags = 0 ) {
470 $result = array();
471 foreach ( $items as $item ) {
472 if ( is_array( $item ) ) {
473 $title = $item['title'];
474 $options = $item;
475 unset( $options['title'] );
476 } else {
477 $title = $item;
478 $options = array();
480 $file = $this->findFile( $title, $options );
481 if ( $file ) {
482 $searchName = File::normalizeTitle( $title )->getDBkey(); // must be valid
483 if ( $flags & self::NAME_AND_TIME_ONLY ) {
484 $result[$searchName] = array(
485 'title' => $file->getTitle()->getDBkey(),
486 'timestamp' => $file->getTimestamp()
488 } else {
489 $result[$searchName] = $file;
494 return $result;
498 * Find an instance of the file with this key, created at the specified time
499 * Returns false if the file does not exist. Repositories not supporting
500 * version control should return false if the time is specified.
502 * @param string $sha1 Base 36 SHA-1 hash
503 * @param array $options Option array, same as findFile().
504 * @return File|bool False on failure
506 public function findFileFromKey( $sha1, $options = array() ) {
507 $time = isset( $options['time'] ) ? $options['time'] : false;
508 # First try to find a matching current version of a file...
509 if ( $this->fileFactoryKey ) {
510 $img = call_user_func( $this->fileFactoryKey, $sha1, $this, $time );
511 } else {
512 return false; // find-by-sha1 not supported
514 if ( $img && $img->exists() ) {
515 return $img;
517 # Now try to find a matching old version of a file...
518 if ( $time !== false && $this->oldFileFactoryKey ) { // find-by-sha1 supported?
519 $img = call_user_func( $this->oldFileFactoryKey, $sha1, $this, $time );
520 if ( $img && $img->exists() ) {
521 if ( !$img->isDeleted( File::DELETED_FILE ) ) {
522 return $img; // always OK
523 } elseif ( !empty( $options['private'] ) &&
524 $img->userCan( File::DELETED_FILE,
525 $options['private'] instanceof User ? $options['private'] : null
528 return $img;
533 return false;
537 * Get an array or iterator of file objects for files that have a given
538 * SHA-1 content hash.
540 * STUB
541 * @param string $hash SHA-1 hash
542 * @return array
544 public function findBySha1( $hash ) {
545 return array();
549 * Get an array of arrays or iterators of file objects for files that
550 * have the given SHA-1 content hashes.
552 * @param array $hashes An array of hashes
553 * @return array An Array of arrays or iterators of file objects and the hash as key
555 public function findBySha1s( array $hashes ) {
556 $result = array();
557 foreach ( $hashes as $hash ) {
558 $files = $this->findBySha1( $hash );
559 if ( count( $files ) ) {
560 $result[$hash] = $files;
564 return $result;
568 * Return an array of files where the name starts with $prefix.
570 * STUB
571 * @param string $prefix The prefix to search for
572 * @param int $limit The maximum amount of files to return
573 * @return array
575 public function findFilesByPrefix( $prefix, $limit ) {
576 return array();
580 * Get the public root URL of the repository
582 * @deprecated since 1.20
583 * @return string
585 public function getRootUrl() {
586 return $this->getZoneUrl( 'public' );
590 * Get the URL of thumb.php
592 * @return string
594 public function getThumbScriptUrl() {
595 return $this->thumbScriptUrl;
599 * Returns true if the repository can transform files via a 404 handler
601 * @return bool
603 public function canTransformVia404() {
604 return $this->transformVia404;
608 * Get the name of a file from its title object
610 * @param Title $title
611 * @return string
613 public function getNameFromTitle( Title $title ) {
614 global $wgContLang;
615 if ( $this->initialCapital != MWNamespace::isCapitalized( NS_FILE ) ) {
616 $name = $title->getUserCaseDBKey();
617 if ( $this->initialCapital ) {
618 $name = $wgContLang->ucfirst( $name );
620 } else {
621 $name = $title->getDBkey();
624 return $name;
628 * Get the public zone root storage directory of the repository
630 * @return string
632 public function getRootDirectory() {
633 return $this->getZonePath( 'public' );
637 * Get a relative path including trailing slash, e.g. f/fa/
638 * If the repo is not hashed, returns an empty string
640 * @param string $name Name of file
641 * @return string
643 public function getHashPath( $name ) {
644 return self::getHashPathForLevel( $name, $this->hashLevels );
648 * Get a relative path including trailing slash, e.g. f/fa/
649 * If the repo is not hashed, returns an empty string
651 * @param string $suffix Basename of file from FileRepo::storeTemp()
652 * @return string
654 public function getTempHashPath( $suffix ) {
655 $parts = explode( '!', $suffix, 2 ); // format is <timestamp>!<name> or just <name>
656 $name = isset( $parts[1] ) ? $parts[1] : $suffix; // hash path is not based on timestamp
657 return self::getHashPathForLevel( $name, $this->hashLevels );
661 * @param string $name
662 * @param int $levels
663 * @return string
665 protected static function getHashPathForLevel( $name, $levels ) {
666 if ( $levels == 0 ) {
667 return '';
668 } else {
669 $hash = md5( $name );
670 $path = '';
671 for ( $i = 1; $i <= $levels; $i++ ) {
672 $path .= substr( $hash, 0, $i ) . '/';
675 return $path;
680 * Get the number of hash directory levels
682 * @return int
684 public function getHashLevels() {
685 return $this->hashLevels;
689 * Get the name of this repository, as specified by $info['name]' to the constructor
691 * @return string
693 public function getName() {
694 return $this->name;
698 * Make an url to this repo
700 * @param string $query Query string to append
701 * @param string $entry Entry point; defaults to index
702 * @return string|bool False on failure
704 public function makeUrl( $query = '', $entry = 'index' ) {
705 if ( isset( $this->scriptDirUrl ) ) {
706 $ext = isset( $this->scriptExtension ) ? $this->scriptExtension : '.php';
708 return wfAppendQuery( "{$this->scriptDirUrl}/{$entry}{$ext}", $query );
711 return false;
715 * Get the URL of an image description page. May return false if it is
716 * unknown or not applicable. In general this should only be called by the
717 * File class, since it may return invalid results for certain kinds of
718 * repositories. Use File::getDescriptionUrl() in user code.
720 * In particular, it uses the article paths as specified to the repository
721 * constructor, whereas local repositories use the local Title functions.
723 * @param string $name
724 * @return string
726 public function getDescriptionUrl( $name ) {
727 $encName = wfUrlencode( $name );
728 if ( !is_null( $this->descBaseUrl ) ) {
729 # "http://example.com/wiki/File:"
730 return $this->descBaseUrl . $encName;
732 if ( !is_null( $this->articleUrl ) ) {
733 # "http://example.com/wiki/$1"
735 # We use "Image:" as the canonical namespace for
736 # compatibility across all MediaWiki versions.
737 return str_replace( '$1',
738 "Image:$encName", $this->articleUrl );
740 if ( !is_null( $this->scriptDirUrl ) ) {
741 # "http://example.com/w"
743 # We use "Image:" as the canonical namespace for
744 # compatibility across all MediaWiki versions,
745 # and just sort of hope index.php is right. ;)
746 return $this->makeUrl( "title=Image:$encName" );
749 return false;
753 * Get the URL of the content-only fragment of the description page. For
754 * MediaWiki this means action=render. This should only be called by the
755 * repository's file class, since it may return invalid results. User code
756 * should use File::getDescriptionText().
758 * @param string $name Name of image to fetch
759 * @param string $lang Language to fetch it in, if any.
760 * @return string
762 public function getDescriptionRenderUrl( $name, $lang = null ) {
763 $query = 'action=render';
764 if ( !is_null( $lang ) ) {
765 $query .= '&uselang=' . $lang;
767 if ( isset( $this->scriptDirUrl ) ) {
768 return $this->makeUrl(
769 'title=' .
770 wfUrlencode( 'Image:' . $name ) .
771 "&$query" );
772 } else {
773 $descUrl = $this->getDescriptionUrl( $name );
774 if ( $descUrl ) {
775 return wfAppendQuery( $descUrl, $query );
776 } else {
777 return false;
783 * Get the URL of the stylesheet to apply to description pages
785 * @return string|bool False on failure
787 public function getDescriptionStylesheetUrl() {
788 if ( isset( $this->scriptDirUrl ) ) {
789 return $this->makeUrl( 'title=MediaWiki:Filepage.css&' .
790 wfArrayToCgi( Skin::getDynamicStylesheetQuery() ) );
793 return false;
797 * Store a file to a given destination.
799 * @param string $srcPath Source file system path, storage path, or virtual URL
800 * @param string $dstZone Destination zone
801 * @param string $dstRel Destination relative path
802 * @param int $flags Bitwise combination of the following flags:
803 * self::DELETE_SOURCE Delete the source file after upload
804 * self::OVERWRITE Overwrite an existing destination file instead of failing
805 * self::OVERWRITE_SAME Overwrite the file if the destination exists and has the
806 * same contents as the source
807 * self::SKIP_LOCKING Skip any file locking when doing the store
808 * @return FileRepoStatus
810 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
811 $this->assertWritableRepo(); // fail out if read-only
813 $status = $this->storeBatch( array( array( $srcPath, $dstZone, $dstRel ) ), $flags );
814 if ( $status->successCount == 0 ) {
815 $status->ok = false;
818 return $status;
822 * Store a batch of files
824 * @param array $triplets (src, dest zone, dest rel) triplets as per store()
825 * @param int $flags Bitwise combination of the following flags:
826 * self::DELETE_SOURCE Delete the source file after upload
827 * self::OVERWRITE Overwrite an existing destination file instead of failing
828 * self::OVERWRITE_SAME Overwrite the file if the destination exists and has the
829 * same contents as the source
830 * self::SKIP_LOCKING Skip any file locking when doing the store
831 * @throws MWException
832 * @return FileRepoStatus
834 public function storeBatch( array $triplets, $flags = 0 ) {
835 $this->assertWritableRepo(); // fail out if read-only
837 $status = $this->newGood();
838 $backend = $this->backend; // convenience
840 $operations = array();
841 $sourceFSFilesToDelete = array(); // cleanup for disk source files
842 // Validate each triplet and get the store operation...
843 foreach ( $triplets as $triplet ) {
844 list( $srcPath, $dstZone, $dstRel ) = $triplet;
845 wfDebug( __METHOD__
846 . "( \$src='$srcPath', \$dstZone='$dstZone', \$dstRel='$dstRel' )\n"
849 // Resolve destination path
850 $root = $this->getZonePath( $dstZone );
851 if ( !$root ) {
852 throw new MWException( "Invalid zone: $dstZone" );
854 if ( !$this->validateFilename( $dstRel ) ) {
855 throw new MWException( 'Validation error in $dstRel' );
857 $dstPath = "$root/$dstRel";
858 $dstDir = dirname( $dstPath );
859 // Create destination directories for this triplet
860 if ( !$this->initDirectory( $dstDir )->isOK() ) {
861 return $this->newFatal( 'directorycreateerror', $dstDir );
864 // Resolve source to a storage path if virtual
865 $srcPath = $this->resolveToStoragePath( $srcPath );
867 // Get the appropriate file operation
868 if ( FileBackend::isStoragePath( $srcPath ) ) {
869 $opName = ( $flags & self::DELETE_SOURCE ) ? 'move' : 'copy';
870 } else {
871 $opName = 'store';
872 if ( $flags & self::DELETE_SOURCE ) {
873 $sourceFSFilesToDelete[] = $srcPath;
876 $operations[] = array(
877 'op' => $opName,
878 'src' => $srcPath,
879 'dst' => $dstPath,
880 'overwrite' => $flags & self::OVERWRITE,
881 'overwriteSame' => $flags & self::OVERWRITE_SAME,
885 // Execute the store operation for each triplet
886 $opts = array( 'force' => true );
887 if ( $flags & self::SKIP_LOCKING ) {
888 $opts['nonLocking'] = true;
890 $status->merge( $backend->doOperations( $operations, $opts ) );
891 // Cleanup for disk source files...
892 foreach ( $sourceFSFilesToDelete as $file ) {
893 wfSuppressWarnings();
894 unlink( $file ); // FS cleanup
895 wfRestoreWarnings();
898 return $status;
902 * Deletes a batch of files.
903 * Each file can be a (zone, rel) pair, virtual url, storage path.
904 * It will try to delete each file, but ignores any errors that may occur.
906 * @param array $files List of files to delete
907 * @param int $flags Bitwise combination of the following flags:
908 * self::SKIP_LOCKING Skip any file locking when doing the deletions
909 * @return FileRepoStatus
911 public function cleanupBatch( array $files, $flags = 0 ) {
912 $this->assertWritableRepo(); // fail out if read-only
914 $status = $this->newGood();
916 $operations = array();
917 foreach ( $files as $path ) {
918 if ( is_array( $path ) ) {
919 // This is a pair, extract it
920 list( $zone, $rel ) = $path;
921 $path = $this->getZonePath( $zone ) . "/$rel";
922 } else {
923 // Resolve source to a storage path if virtual
924 $path = $this->resolveToStoragePath( $path );
926 $operations[] = array( 'op' => 'delete', 'src' => $path );
928 // Actually delete files from storage...
929 $opts = array( 'force' => true );
930 if ( $flags & self::SKIP_LOCKING ) {
931 $opts['nonLocking'] = true;
933 $status->merge( $this->backend->doOperations( $operations, $opts ) );
935 return $status;
939 * Import a file from the local file system into the repo.
940 * This does no locking nor journaling and overrides existing files.
941 * This function can be used to write to otherwise read-only foreign repos.
942 * This is intended for copying generated thumbnails into the repo.
944 * @param string $src Source file system path, storage path, or virtual URL
945 * @param string $dst Virtual URL or storage path
946 * @param array|string|null $options An array consisting of a key named headers
947 * listing extra headers. If a string, taken as content-disposition header.
948 * (Support for array of options new in 1.23)
949 * @return FileRepoStatus
951 final public function quickImport( $src, $dst, $options = null ) {
952 return $this->quickImportBatch( array( array( $src, $dst, $options ) ) );
956 * Purge a file from the repo. This does no locking nor journaling.
957 * This function can be used to write to otherwise read-only foreign repos.
958 * This is intended for purging thumbnails.
960 * @param string $path Virtual URL or storage path
961 * @return FileRepoStatus
963 final public function quickPurge( $path ) {
964 return $this->quickPurgeBatch( array( $path ) );
968 * Deletes a directory if empty.
969 * This function can be used to write to otherwise read-only foreign repos.
971 * @param string $dir Virtual URL (or storage path) of directory to clean
972 * @return Status
974 public function quickCleanDir( $dir ) {
975 $status = $this->newGood();
976 $status->merge( $this->backend->clean(
977 array( 'dir' => $this->resolveToStoragePath( $dir ) ) ) );
979 return $status;
983 * Import a batch of files from the local file system into the repo.
984 * This does no locking nor journaling and overrides existing files.
985 * This function can be used to write to otherwise read-only foreign repos.
986 * This is intended for copying generated thumbnails into the repo.
988 * All path parameters may be a file system path, storage path, or virtual URL.
989 * When "headers" are given they are used as HTTP headers if supported.
991 * @param array $triples List of (source path, destination path, disposition)
992 * @return FileRepoStatus
994 public function quickImportBatch( array $triples ) {
995 $status = $this->newGood();
996 $operations = array();
997 foreach ( $triples as $triple ) {
998 list( $src, $dst ) = $triple;
999 $src = $this->resolveToStoragePath( $src );
1000 $dst = $this->resolveToStoragePath( $dst );
1002 if ( !isset( $triple[2] ) ) {
1003 $headers = array();
1004 } elseif ( is_string( $triple[2] ) ) {
1005 // back-compat
1006 $headers = array( 'Content-Disposition' => $triple[2] );
1007 } elseif ( is_array( $triple[2] ) && isset( $triple[2]['headers'] ) ) {
1008 $headers = $triple[2]['headers'];
1010 $operations[] = array(
1011 'op' => FileBackend::isStoragePath( $src ) ? 'copy' : 'store',
1012 'src' => $src,
1013 'dst' => $dst,
1014 'headers' => $headers
1016 $status->merge( $this->initDirectory( dirname( $dst ) ) );
1018 $status->merge( $this->backend->doQuickOperations( $operations ) );
1020 return $status;
1024 * Purge a batch of files from the repo.
1025 * This function can be used to write to otherwise read-only foreign repos.
1026 * This does no locking nor journaling and is intended for purging thumbnails.
1028 * @param array $paths List of virtual URLs or storage paths
1029 * @return FileRepoStatus
1031 public function quickPurgeBatch( array $paths ) {
1032 $status = $this->newGood();
1033 $operations = array();
1034 foreach ( $paths as $path ) {
1035 $operations[] = array(
1036 'op' => 'delete',
1037 'src' => $this->resolveToStoragePath( $path ),
1038 'ignoreMissingSource' => true
1041 $status->merge( $this->backend->doQuickOperations( $operations ) );
1043 return $status;
1047 * Pick a random name in the temp zone and store a file to it.
1048 * Returns a FileRepoStatus object with the file Virtual URL in the value,
1049 * file can later be disposed using FileRepo::freeTemp().
1051 * @param string $originalName the base name of the file as specified
1052 * by the user. The file extension will be maintained.
1053 * @param string $srcPath The current location of the file.
1054 * @return FileRepoStatus Object with the URL in the value.
1056 public function storeTemp( $originalName, $srcPath ) {
1057 $this->assertWritableRepo(); // fail out if read-only
1059 $date = MWTimestamp::getInstance()->format( 'YmdHis' );
1060 $hashPath = $this->getHashPath( $originalName );
1061 $dstUrlRel = $hashPath . $date . '!' . rawurlencode( $originalName );
1062 $virtualUrl = $this->getVirtualUrl( 'temp' ) . '/' . $dstUrlRel;
1064 $result = $this->quickImport( $srcPath, $virtualUrl );
1065 $result->value = $virtualUrl;
1067 return $result;
1071 * Remove a temporary file or mark it for garbage collection
1073 * @param string $virtualUrl The virtual URL returned by FileRepo::storeTemp()
1074 * @return bool True on success, false on failure
1076 public function freeTemp( $virtualUrl ) {
1077 $this->assertWritableRepo(); // fail out if read-only
1079 $temp = $this->getVirtualUrl( 'temp' );
1080 if ( substr( $virtualUrl, 0, strlen( $temp ) ) != $temp ) {
1081 wfDebug( __METHOD__ . ": Invalid temp virtual URL\n" );
1083 return false;
1086 return $this->quickPurge( $virtualUrl )->isOK();
1090 * Concatenate a list of temporary files into a target file location.
1092 * @param array $srcPaths Ordered list of source virtual URLs/storage paths
1093 * @param string $dstPath Target file system path
1094 * @param int $flags Bitwise combination of the following flags:
1095 * self::DELETE_SOURCE Delete the source files
1096 * @return FileRepoStatus
1098 public function concatenate( array $srcPaths, $dstPath, $flags = 0 ) {
1099 $this->assertWritableRepo(); // fail out if read-only
1101 $status = $this->newGood();
1103 $sources = array();
1104 foreach ( $srcPaths as $srcPath ) {
1105 // Resolve source to a storage path if virtual
1106 $source = $this->resolveToStoragePath( $srcPath );
1107 $sources[] = $source; // chunk to merge
1110 // Concatenate the chunks into one FS file
1111 $params = array( 'srcs' => $sources, 'dst' => $dstPath );
1112 $status->merge( $this->backend->concatenate( $params ) );
1113 if ( !$status->isOK() ) {
1114 return $status;
1117 // Delete the sources if required
1118 if ( $flags & self::DELETE_SOURCE ) {
1119 $status->merge( $this->quickPurgeBatch( $srcPaths ) );
1122 // Make sure status is OK, despite any quickPurgeBatch() fatals
1123 $status->setResult( true );
1125 return $status;
1129 * Copy or move a file either from a storage path, virtual URL,
1130 * or file system path, into this repository at the specified destination location.
1132 * Returns a FileRepoStatus object. On success, the value contains "new" or
1133 * "archived", to indicate whether the file was new with that name.
1135 * Options to $options include:
1136 * - headers : name/value map of HTTP headers to use in response to GET/HEAD requests
1138 * @param string $srcPath The source file system path, storage path, or URL
1139 * @param string $dstRel The destination relative path
1140 * @param string $archiveRel The relative path where the existing file is to
1141 * be archived, if there is one. Relative to the public zone root.
1142 * @param int $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
1143 * that the source file should be deleted if possible
1144 * @param array $options Optional additional parameters
1145 * @return FileRepoStatus
1147 public function publish(
1148 $srcPath, $dstRel, $archiveRel, $flags = 0, array $options = array()
1150 $this->assertWritableRepo(); // fail out if read-only
1152 $status = $this->publishBatch(
1153 array( array( $srcPath, $dstRel, $archiveRel, $options ) ), $flags );
1154 if ( $status->successCount == 0 ) {
1155 $status->ok = false;
1157 if ( isset( $status->value[0] ) ) {
1158 $status->value = $status->value[0];
1159 } else {
1160 $status->value = false;
1163 return $status;
1167 * Publish a batch of files
1169 * @param array $ntuples (source, dest, archive) triplets or
1170 * (source, dest, archive, options) 4-tuples as per publish().
1171 * @param int $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
1172 * that the source files should be deleted if possible
1173 * @throws MWException
1174 * @return FileRepoStatus
1176 public function publishBatch( array $ntuples, $flags = 0 ) {
1177 $this->assertWritableRepo(); // fail out if read-only
1179 $backend = $this->backend; // convenience
1180 // Try creating directories
1181 $status = $this->initZones( 'public' );
1182 if ( !$status->isOK() ) {
1183 return $status;
1186 $status = $this->newGood( array() );
1188 $operations = array();
1189 $sourceFSFilesToDelete = array(); // cleanup for disk source files
1190 // Validate each triplet and get the store operation...
1191 foreach ( $ntuples as $ntuple ) {
1192 list( $srcPath, $dstRel, $archiveRel ) = $ntuple;
1193 $options = isset( $ntuple[3] ) ? $ntuple[3] : array();
1194 // Resolve source to a storage path if virtual
1195 $srcPath = $this->resolveToStoragePath( $srcPath );
1196 if ( !$this->validateFilename( $dstRel ) ) {
1197 throw new MWException( 'Validation error in $dstRel' );
1199 if ( !$this->validateFilename( $archiveRel ) ) {
1200 throw new MWException( 'Validation error in $archiveRel' );
1203 $publicRoot = $this->getZonePath( 'public' );
1204 $dstPath = "$publicRoot/$dstRel";
1205 $archivePath = "$publicRoot/$archiveRel";
1207 $dstDir = dirname( $dstPath );
1208 $archiveDir = dirname( $archivePath );
1209 // Abort immediately on directory creation errors since they're likely to be repetitive
1210 if ( !$this->initDirectory( $dstDir )->isOK() ) {
1211 return $this->newFatal( 'directorycreateerror', $dstDir );
1213 if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1214 return $this->newFatal( 'directorycreateerror', $archiveDir );
1217 // Set any desired headers to be use in GET/HEAD responses
1218 $headers = isset( $options['headers'] ) ? $options['headers'] : array();
1220 // Archive destination file if it exists.
1221 // This will check if the archive file also exists and fail if does.
1222 // This is a sanity check to avoid data loss. On Windows and Linux,
1223 // copy() will overwrite, so the existence check is vulnerable to
1224 // race conditions unless a functioning LockManager is used.
1225 // LocalFile also uses SELECT FOR UPDATE for synchronization.
1226 $operations[] = array(
1227 'op' => 'copy',
1228 'src' => $dstPath,
1229 'dst' => $archivePath,
1230 'ignoreMissingSource' => true
1233 // Copy (or move) the source file to the destination
1234 if ( FileBackend::isStoragePath( $srcPath ) ) {
1235 if ( $flags & self::DELETE_SOURCE ) {
1236 $operations[] = array(
1237 'op' => 'move',
1238 'src' => $srcPath,
1239 'dst' => $dstPath,
1240 'overwrite' => true, // replace current
1241 'headers' => $headers
1243 } else {
1244 $operations[] = array(
1245 'op' => 'copy',
1246 'src' => $srcPath,
1247 'dst' => $dstPath,
1248 'overwrite' => true, // replace current
1249 'headers' => $headers
1252 } else { // FS source path
1253 $operations[] = array(
1254 'op' => 'store',
1255 'src' => $srcPath,
1256 'dst' => $dstPath,
1257 'overwrite' => true, // replace current
1258 'headers' => $headers
1260 if ( $flags & self::DELETE_SOURCE ) {
1261 $sourceFSFilesToDelete[] = $srcPath;
1266 // Execute the operations for each triplet
1267 $status->merge( $backend->doOperations( $operations ) );
1268 // Find out which files were archived...
1269 foreach ( $ntuples as $i => $ntuple ) {
1270 list( , , $archiveRel ) = $ntuple;
1271 $archivePath = $this->getZonePath( 'public' ) . "/$archiveRel";
1272 if ( $this->fileExists( $archivePath ) ) {
1273 $status->value[$i] = 'archived';
1274 } else {
1275 $status->value[$i] = 'new';
1278 // Cleanup for disk source files...
1279 foreach ( $sourceFSFilesToDelete as $file ) {
1280 wfSuppressWarnings();
1281 unlink( $file ); // FS cleanup
1282 wfRestoreWarnings();
1285 return $status;
1289 * Creates a directory with the appropriate zone permissions.
1290 * Callers are responsible for doing read-only and "writable repo" checks.
1292 * @param string $dir Virtual URL (or storage path) of directory to clean
1293 * @return Status
1295 protected function initDirectory( $dir ) {
1296 $path = $this->resolveToStoragePath( $dir );
1297 list( , $container, ) = FileBackend::splitStoragePath( $path );
1299 $params = array( 'dir' => $path );
1300 if ( $this->isPrivate || $container === $this->zones['deleted']['container'] ) {
1301 # Take all available measures to prevent web accessibility of new deleted
1302 # directories, in case the user has not configured offline storage
1303 $params = array( 'noAccess' => true, 'noListing' => true ) + $params;
1306 return $this->backend->prepare( $params );
1310 * Deletes a directory if empty.
1312 * @param string $dir Virtual URL (or storage path) of directory to clean
1313 * @return Status
1315 public function cleanDir( $dir ) {
1316 $this->assertWritableRepo(); // fail out if read-only
1318 $status = $this->newGood();
1319 $status->merge( $this->backend->clean(
1320 array( 'dir' => $this->resolveToStoragePath( $dir ) ) ) );
1322 return $status;
1326 * Checks existence of a a file
1328 * @param string $file Virtual URL (or storage path) of file to check
1329 * @return bool
1331 public function fileExists( $file ) {
1332 $result = $this->fileExistsBatch( array( $file ) );
1334 return $result[0];
1338 * Checks existence of an array of files.
1340 * @param array $files Virtual URLs (or storage paths) of files to check
1341 * @return array|bool Either array of files and existence flags, or false
1343 public function fileExistsBatch( array $files ) {
1344 $result = array();
1345 foreach ( $files as $key => $file ) {
1346 $file = $this->resolveToStoragePath( $file );
1347 $result[$key] = $this->backend->fileExists( array( 'src' => $file ) );
1350 return $result;
1354 * Move a file to the deletion archive.
1355 * If no valid deletion archive exists, this may either delete the file
1356 * or throw an exception, depending on the preference of the repository
1358 * @param mixed $srcRel Relative path for the file to be deleted
1359 * @param mixed $archiveRel Relative path for the archive location.
1360 * Relative to a private archive directory.
1361 * @return FileRepoStatus
1363 public function delete( $srcRel, $archiveRel ) {
1364 $this->assertWritableRepo(); // fail out if read-only
1366 return $this->deleteBatch( array( array( $srcRel, $archiveRel ) ) );
1370 * Move a group of files to the deletion archive.
1372 * If no valid deletion archive is configured, this may either delete the
1373 * file or throw an exception, depending on the preference of the repository.
1375 * The overwrite policy is determined by the repository -- currently LocalRepo
1376 * assumes a naming scheme in the deleted zone based on content hash, as
1377 * opposed to the public zone which is assumed to be unique.
1379 * @param array $sourceDestPairs Array of source/destination pairs. Each element
1380 * is a two-element array containing the source file path relative to the
1381 * public root in the first element, and the archive file path relative
1382 * to the deleted zone root in the second element.
1383 * @throws MWException
1384 * @return FileRepoStatus
1386 public function deleteBatch( array $sourceDestPairs ) {
1387 $this->assertWritableRepo(); // fail out if read-only
1389 // Try creating directories
1390 $status = $this->initZones( array( 'public', 'deleted' ) );
1391 if ( !$status->isOK() ) {
1392 return $status;
1395 $status = $this->newGood();
1397 $backend = $this->backend; // convenience
1398 $operations = array();
1399 // Validate filenames and create archive directories
1400 foreach ( $sourceDestPairs as $pair ) {
1401 list( $srcRel, $archiveRel ) = $pair;
1402 if ( !$this->validateFilename( $srcRel ) ) {
1403 throw new MWException( __METHOD__ . ':Validation error in $srcRel' );
1404 } elseif ( !$this->validateFilename( $archiveRel ) ) {
1405 throw new MWException( __METHOD__ . ':Validation error in $archiveRel' );
1408 $publicRoot = $this->getZonePath( 'public' );
1409 $srcPath = "{$publicRoot}/$srcRel";
1411 $deletedRoot = $this->getZonePath( 'deleted' );
1412 $archivePath = "{$deletedRoot}/{$archiveRel}";
1413 $archiveDir = dirname( $archivePath ); // does not touch FS
1415 // Create destination directories
1416 if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1417 return $this->newFatal( 'directorycreateerror', $archiveDir );
1420 $operations[] = array(
1421 'op' => 'move',
1422 'src' => $srcPath,
1423 'dst' => $archivePath,
1424 // We may have 2+ identical files being deleted,
1425 // all of which will map to the same destination file
1426 'overwriteSame' => true // also see bug 31792
1430 // Move the files by execute the operations for each pair.
1431 // We're now committed to returning an OK result, which will
1432 // lead to the files being moved in the DB also.
1433 $opts = array( 'force' => true );
1434 $status->merge( $backend->doOperations( $operations, $opts ) );
1436 return $status;
1440 * Delete files in the deleted directory if they are not referenced in the filearchive table
1442 * STUB
1444 public function cleanupDeletedBatch( array $storageKeys ) {
1445 $this->assertWritableRepo();
1449 * Get a relative path for a deletion archive key,
1450 * e.g. s/z/a/ for sza251lrxrc1jad41h5mgilp8nysje52.jpg
1452 * @param string $key
1453 * @throws MWException
1454 * @return string
1456 public function getDeletedHashPath( $key ) {
1457 if ( strlen( $key ) < 31 ) {
1458 throw new MWException( "Invalid storage key '$key'." );
1460 $path = '';
1461 for ( $i = 0; $i < $this->deletedHashLevels; $i++ ) {
1462 $path .= $key[$i] . '/';
1465 return $path;
1469 * If a path is a virtual URL, resolve it to a storage path.
1470 * Otherwise, just return the path as it is.
1472 * @param string $path
1473 * @return string
1474 * @throws MWException
1476 protected function resolveToStoragePath( $path ) {
1477 if ( $this->isVirtualUrl( $path ) ) {
1478 return $this->resolveVirtualUrl( $path );
1481 return $path;
1485 * Get a local FS copy of a file with a given virtual URL/storage path.
1486 * Temporary files may be purged when the file object falls out of scope.
1488 * @param string $virtualUrl
1489 * @return TempFSFile|null Returns null on failure
1491 public function getLocalCopy( $virtualUrl ) {
1492 $path = $this->resolveToStoragePath( $virtualUrl );
1494 return $this->backend->getLocalCopy( array( 'src' => $path ) );
1498 * Get a local FS file with a given virtual URL/storage path.
1499 * The file is either an original or a copy. It should not be changed.
1500 * Temporary files may be purged when the file object falls out of scope.
1502 * @param string $virtualUrl
1503 * @return FSFile|null Returns null on failure.
1505 public function getLocalReference( $virtualUrl ) {
1506 $path = $this->resolveToStoragePath( $virtualUrl );
1508 return $this->backend->getLocalReference( array( 'src' => $path ) );
1512 * Get properties of a file with a given virtual URL/storage path.
1513 * Properties should ultimately be obtained via FSFile::getProps().
1515 * @param string $virtualUrl
1516 * @return array
1518 public function getFileProps( $virtualUrl ) {
1519 $path = $this->resolveToStoragePath( $virtualUrl );
1521 return $this->backend->getFileProps( array( 'src' => $path ) );
1525 * Get the timestamp of a file with a given virtual URL/storage path
1527 * @param string $virtualUrl
1528 * @return string|bool False on failure
1530 public function getFileTimestamp( $virtualUrl ) {
1531 $path = $this->resolveToStoragePath( $virtualUrl );
1533 return $this->backend->getFileTimestamp( array( 'src' => $path ) );
1537 * Get the size of a file with a given virtual URL/storage path
1539 * @param string $virtualUrl
1540 * @return int|bool False on failure
1542 public function getFileSize( $virtualUrl ) {
1543 $path = $this->resolveToStoragePath( $virtualUrl );
1545 return $this->backend->getFileSize( array( 'src' => $path ) );
1549 * Get the sha1 (base 36) of a file with a given virtual URL/storage path
1551 * @param string $virtualUrl
1552 * @return string|bool
1554 public function getFileSha1( $virtualUrl ) {
1555 $path = $this->resolveToStoragePath( $virtualUrl );
1557 return $this->backend->getFileSha1Base36( array( 'src' => $path ) );
1561 * Attempt to stream a file with the given virtual URL/storage path
1563 * @param string $virtualUrl
1564 * @param array $headers Additional HTTP headers to send on success
1565 * @return bool Success
1567 public function streamFile( $virtualUrl, $headers = array() ) {
1568 $path = $this->resolveToStoragePath( $virtualUrl );
1569 $params = array( 'src' => $path, 'headers' => $headers );
1571 return $this->backend->streamFile( $params )->isOK();
1575 * Call a callback function for every public regular file in the repository.
1576 * This only acts on the current version of files, not any old versions.
1577 * May use either the database or the filesystem.
1579 * @param array|string $callback
1580 * @return void
1582 public function enumFiles( $callback ) {
1583 $this->enumFilesInStorage( $callback );
1587 * Call a callback function for every public file in the repository.
1588 * May use either the database or the filesystem.
1590 * @param array|string $callback
1591 * @return void
1593 protected function enumFilesInStorage( $callback ) {
1594 $publicRoot = $this->getZonePath( 'public' );
1595 $numDirs = 1 << ( $this->hashLevels * 4 );
1596 // Use a priori assumptions about directory structure
1597 // to reduce the tree height of the scanning process.
1598 for ( $flatIndex = 0; $flatIndex < $numDirs; $flatIndex++ ) {
1599 $hexString = sprintf( "%0{$this->hashLevels}x", $flatIndex );
1600 $path = $publicRoot;
1601 for ( $hexPos = 0; $hexPos < $this->hashLevels; $hexPos++ ) {
1602 $path .= '/' . substr( $hexString, 0, $hexPos + 1 );
1604 $iterator = $this->backend->getFileList( array( 'dir' => $path ) );
1605 foreach ( $iterator as $name ) {
1606 // Each item returned is a public file
1607 call_user_func( $callback, "{$path}/{$name}" );
1613 * Determine if a relative path is valid, i.e. not blank or involving directory traveral
1615 * @param string $filename
1616 * @return bool
1618 public function validateFilename( $filename ) {
1619 if ( strval( $filename ) == '' ) {
1620 return false;
1623 return FileBackend::isPathTraversalFree( $filename );
1627 * Get a callback function to use for cleaning error message parameters
1629 * @return array
1631 function getErrorCleanupFunction() {
1632 switch ( $this->pathDisclosureProtection ) {
1633 case 'none':
1634 case 'simple': // b/c
1635 $callback = array( $this, 'passThrough' );
1636 break;
1637 default: // 'paranoid'
1638 $callback = array( $this, 'paranoidClean' );
1640 return $callback;
1644 * Path disclosure protection function
1646 * @param string $param
1647 * @return string
1649 function paranoidClean( $param ) {
1650 return '[hidden]';
1654 * Path disclosure protection function
1656 * @param string $param
1657 * @return string
1659 function passThrough( $param ) {
1660 return $param;
1664 * Create a new fatal error
1666 * @param string $message
1667 * @return FileRepoStatus
1669 public function newFatal( $message /*, parameters...*/ ) {
1670 $params = func_get_args();
1671 array_unshift( $params, $this );
1673 return call_user_func_array( array( 'FileRepoStatus', 'newFatal' ), $params );
1677 * Create a new good result
1679 * @param null|string $value
1680 * @return FileRepoStatus
1682 public function newGood( $value = null ) {
1683 return FileRepoStatus::newGood( $this, $value );
1687 * Checks if there is a redirect named as $title. If there is, return the
1688 * title object. If not, return false.
1689 * STUB
1691 * @param Title $title Title of image
1692 * @return bool
1694 public function checkRedirect( Title $title ) {
1695 return false;
1699 * Invalidates image redirect cache related to that image
1700 * Doesn't do anything for repositories that don't support image redirects.
1702 * STUB
1703 * @param Title $title Title of image
1705 public function invalidateImageRedirect( Title $title ) {
1709 * Get the human-readable name of the repo
1711 * @return string
1713 public function getDisplayName() {
1714 global $wgSitename;
1716 if ( $this->isLocal() ) {
1717 return $wgSitename;
1720 // 'shared-repo-name-wikimediacommons' is used when $wgUseInstantCommons = true
1721 return wfMessageFallback( 'shared-repo-name-' . $this->name, 'shared-repo' )->text();
1725 * Get the portion of the file that contains the origin file name.
1726 * If that name is too long, then the name "thumbnail.<ext>" will be given.
1728 * @param string $name
1729 * @return string
1731 public function nameForThumb( $name ) {
1732 if ( strlen( $name ) > $this->abbrvThreshold ) {
1733 $ext = FileBackend::extensionFromPath( $name );
1734 $name = ( $ext == '' ) ? 'thumbnail' : "thumbnail.$ext";
1737 return $name;
1741 * Returns true if this the local file repository.
1743 * @return bool
1745 public function isLocal() {
1746 return $this->getName() == 'local';
1750 * Get a key on the primary cache for this repository.
1751 * Returns false if the repository's cache is not accessible at this site.
1752 * The parameters are the parts of the key, as for wfMemcKey().
1754 * STUB
1755 * @return bool
1757 public function getSharedCacheKey( /*...*/ ) {
1758 return false;
1762 * Get a key for this repo in the local cache domain. These cache keys are
1763 * not shared with remote instances of the repo.
1764 * The parameters are the parts of the key, as for wfMemcKey().
1766 * @return string
1768 public function getLocalCacheKey( /*...*/ ) {
1769 $args = func_get_args();
1770 array_unshift( $args, 'filerepo', $this->getName() );
1772 return call_user_func_array( 'wfMemcKey', $args );
1776 * Get an temporary FileRepo associated with this repo.
1777 * Files will be created in the temp zone of this repo and
1778 * thumbnails in a /temp subdirectory in thumb zone of this repo.
1779 * It will have the same backend as this repo.
1781 * @return TempFileRepo
1783 public function getTempRepo() {
1784 return new TempFileRepo( array(
1785 'name' => "{$this->name}-temp",
1786 'backend' => $this->backend,
1787 'zones' => array(
1788 'public' => array(
1789 'container' => $this->zones['temp']['container'],
1790 'directory' => $this->zones['temp']['directory']
1792 'thumb' => array(
1793 'container' => $this->zones['thumb']['container'],
1794 'directory' => $this->zones['thumb']['directory'] == ''
1795 ? 'temp'
1796 : $this->zones['thumb']['directory'] . '/temp'
1798 'transcoded' => array(
1799 'container' => $this->zones['transcoded']['container'],
1800 'directory' => $this->zones['transcoded']['directory'] == ''
1801 ? 'temp'
1802 : $this->zones['transcoded']['directory'] . '/temp'
1805 'url' => $this->getZoneUrl( 'temp' ),
1806 'thumbUrl' => $this->getZoneUrl( 'thumb' ) . '/temp',
1807 'transcodedUrl' => $this->getZoneUrl( 'transcoded' ) . '/temp',
1808 'hashLevels' => $this->hashLevels // performance
1809 ) );
1813 * Get an UploadStash associated with this repo.
1815 * @param User $user
1816 * @return UploadStash
1818 public function getUploadStash( User $user = null ) {
1819 return new UploadStash( $this, $user );
1823 * Throw an exception if this repo is read-only by design.
1824 * This does not and should not check getReadOnlyReason().
1826 * @return void
1827 * @throws MWException
1829 protected function assertWritableRepo() {
1833 * Return information about the repository.
1835 * @return array
1836 * @since 1.22
1838 public function getInfo() {
1839 $ret = array(
1840 'name' => $this->getName(),
1841 'displayname' => $this->getDisplayName(),
1842 'rootUrl' => $this->getZoneUrl( 'public' ),
1843 'local' => $this->isLocal(),
1846 $optionalSettings = array(
1847 'url', 'thumbUrl', 'initialCapital', 'descBaseUrl', 'scriptDirUrl', 'articleUrl',
1848 'fetchDescription', 'descriptionCacheExpiry', 'scriptExtension', 'favicon'
1850 foreach ( $optionalSettings as $k ) {
1851 if ( isset( $this->$k ) ) {
1852 $ret[$k] = $this->$k;
1856 return $ret;
1861 * FileRepo for temporary files created via FileRepo::getTempRepo()
1863 class TempFileRepo extends FileRepo {
1864 public function getTempRepo() {
1865 throw new MWException( "Cannot get a temp repo from a temp repo." );