Merge "Use camel case for variable names in Article.php"
[lhc/web/wiklou.git] / includes / filerepo / FileRepo.php
1 <?php
2 /**
3 * @defgroup FileRepo File Repository
4 *
5 * @brief This module handles how MediaWiki interacts with filesystems.
6 *
7 * @details
8 */
9
10 /**
11 * Base code for file repositories.
12 *
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.
17 *
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.
22 *
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
27 *
28 * @file
29 * @ingroup FileRepo
30 */
31
32 /**
33 * Base class for file repositories
34 *
35 * @ingroup FileRepo
36 */
37 class FileRepo {
38 const DELETE_SOURCE = 1;
39 const OVERWRITE = 2;
40 const OVERWRITE_SAME = 4;
41 const SKIP_LOCKING = 8;
42
43 const NAME_AND_TIME_ONLY = 1;
44
45 /** @var bool Whether to fetch commons image description pages and display
46 * them on the local wiki */
47 public $fetchDescription;
48
49 /** @var int */
50 public $descriptionCacheExpiry;
51
52 /** @var FileBackend */
53 protected $backend;
54
55 /** @var array Map of zones to config */
56 protected $zones = array();
57
58 /** @var string URL of thumb.php */
59 protected $thumbScriptUrl;
60
61 /** @var bool Whether to skip media file transformation on parse and rely
62 * on a 404 handler instead. */
63 protected $transformVia404;
64
65 /** @var string URL of image description pages, e.g.
66 * http://en.wikipedia.org/wiki/File:
67 */
68 protected $descBaseUrl;
69
70 /** @var string URL of the MediaWiki installation, equivalent to
71 * $wgScriptPath, e.g. https://en.wikipedia.org/w
72 */
73 protected $scriptDirUrl;
74
75 /** @var string Script extension of the MediaWiki installation, equivalent
76 * to $wgScriptExtension, e.g. .php5 defaults to .php */
77 protected $scriptExtension;
78
79 /** @var string Equivalent to $wgArticlePath, e.g. http://en.wikipedia.org/wiki/$1 */
80 protected $articleUrl;
81
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.
86 */
87 protected $initialCapital;
88
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'.
93 */
94 protected $pathDisclosureProtection = 'simple';
95
96 /** @var bool Public zone URL. */
97 protected $url;
98
99 /** @var string The base thumbnail URL. Defaults to "<url>/thumb". */
100 protected $thumbUrl;
101
102 /** @var int The number of directory levels for hash-based division of files */
103 protected $hashLevels;
104
105 /** @var int The number of directory levels for hash-based division of deleted files */
106 protected $deletedHashLevels;
107
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.
111 */
112 protected $abbrvThreshold;
113
114 /** @var string The URL of the repo's favicon, if any */
115 protected $favicon;
116
117 /**
118 * Factory functions for creating new files
119 * Override these in the base class
120 */
121 protected $fileFactory = array( 'UnregisteredLocalFile', 'newFromTitle' );
122 protected $oldFileFactory = false;
123 protected $fileFactoryKey = false;
124 protected $oldFileFactoryKey = false;
125
126 /**
127 * @param array|null $info
128 * @throws MWException
129 */
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 )
136 ) {
137 throw new MWException( __CLASS__ .
138 " requires an array of options having both 'name' and 'backend' keys.\n" );
139 }
140
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'] );
147 }
148
149 // Optional settings that can have no value
150 $optionalSettings = array(
151 'descBaseUrl', 'scriptDirUrl', 'articleUrl', 'fetchDescription',
152 'thumbScriptUrl', 'pathDisclosureProtection', 'descriptionCacheExpiry',
153 'scriptExtension', 'favicon'
154 );
155 foreach ( $optionalSettings as $var ) {
156 if ( isset( $info[$var] ) ) {
157 $this->$var = $info[$var];
158 }
159 }
160
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;
172 }
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}";
189 }
190 if ( !isset( $this->zones[$zone]['directory'] ) ) {
191 $this->zones[$zone]['directory'] = '';
192 }
193 if ( !isset( $this->zones[$zone]['urlsByExt'] ) ) {
194 $this->zones[$zone]['urlsByExt'] = array();
195 }
196 }
197 }
198
199 /**
200 * Get the file backend instance. Use this function wisely.
201 *
202 * @return FileBackend
203 */
204 public function getBackend() {
205 return $this->backend;
206 }
207
208 /**
209 * Get an explanatory message if this repo is read-only.
210 * This checks if an administrator disabled writes to the backend.
211 *
212 * @return string|bool Returns false if the repo is not read-only
213 */
214 public function getReadOnlyReason() {
215 return $this->backend->getReadOnlyReason();
216 }
217
218 /**
219 * Check if a single zone or list of zones is defined for usage
220 *
221 * @param array $doZones Only do a particular zones
222 * @throws MWException
223 * @return Status
224 */
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." );
231 }
232 }
233
234 return $status;
235 }
236
237 /**
238 * Determine if a string is an mwrepo:// URL
239 *
240 * @param string $url
241 * @return bool
242 */
243 public static function isVirtualUrl( $url ) {
244 return substr( $url, 0, 9 ) == 'mwrepo://';
245 }
246
247 /**
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.
251 *
252 * @param string|bool $suffix
253 * @return string
254 */
255 public function getVirtualUrl( $suffix = false ) {
256 $path = 'mwrepo://' . $this->name;
257 if ( $suffix !== false ) {
258 $path .= '/' . rawurlencode( $suffix );
259 }
260
261 return $path;
262 }
263
264 /**
265 * Get the URL corresponding to one of the four basic zones
266 *
267 * @param string $zone One of: public, deleted, temp, thumb
268 * @param string|null $ext Optional file extension
269 * @return string|bool
270 */
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'];
280 }
281 }
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;
295 }
296 }
297
298 /**
299 * @return bool Whether non-ASCII path characters are allowed
300 */
301 public function backendSupportsUnicodePaths() {
302 return ( $this->getBackend()->getFeatures() & FileBackend::ATTR_UNICODE_PATHS );
303 }
304
305 /**
306 * Get the backend storage path corresponding to a virtual URL.
307 * Use this function wisely.
308 *
309 * @param string $url
310 * @throws MWException
311 * @return string
312 */
313 public function resolveVirtualUrl( $url ) {
314 if ( substr( $url, 0, 9 ) != 'mwrepo://' ) {
315 throw new MWException( __METHOD__ . ': unknown protocol' );
316 }
317 $bits = explode( '/', substr( $url, 9 ), 3 );
318 if ( count( $bits ) != 3 ) {
319 throw new MWException( __METHOD__ . ": invalid mwrepo URL: $url" );
320 }
321 list( $repo, $zone, $rel ) = $bits;
322 if ( $repo !== $this->name ) {
323 throw new MWException( __METHOD__ . ": fetching from a foreign repo is not supported" );
324 }
325 $base = $this->getZonePath( $zone );
326 if ( !$base ) {
327 throw new MWException( __METHOD__ . ": invalid zone: $zone" );
328 }
329
330 return $base . '/' . rawurldecode( $rel );
331 }
332
333 /**
334 * The the storage container and base path of a zone
335 *
336 * @param string $zone
337 * @return array (container, base path) or (null, null)
338 */
339 protected function getZoneLocation( $zone ) {
340 if ( !isset( $this->zones[$zone] ) ) {
341 return array( null, null ); // bogus
342 }
343
344 return array( $this->zones[$zone]['container'], $this->zones[$zone]['directory'] );
345 }
346
347 /**
348 * Get the storage path corresponding to one of the zones
349 *
350 * @param string $zone
351 * @return string|null Returns null if the zone is not defined
352 */
353 public function getZonePath( $zone ) {
354 list( $container, $base ) = $this->getZoneLocation( $zone );
355 if ( $container === null || $base === null ) {
356 return null;
357 }
358 $backendName = $this->backend->getName();
359 if ( $base != '' ) { // may not be set
360 $base = "/{$base}";
361 }
362
363 return "mwstore://$backendName/{$container}{$base}";
364 }
365
366 /**
367 * Create a new File object from the local repository
368 *
369 * @param Title|string $title Title object or string
370 * @param bool|string $time Time at which the image was uploaded. If this
371 * is specified, the returned object will be an instance of the
372 * repository's old file class instead of a current file. Repositories
373 * not supporting version control should return false if this parameter
374 * is set.
375 * @return File|null A File, or null if passed an invalid Title
376 */
377 public function newFile( $title, $time = false ) {
378 $title = File::normalizeTitle( $title );
379 if ( !$title ) {
380 return null;
381 }
382 if ( $time ) {
383 if ( $this->oldFileFactory ) {
384 return call_user_func( $this->oldFileFactory, $title, $this, $time );
385 } else {
386 return false;
387 }
388 } else {
389 return call_user_func( $this->fileFactory, $title, $this );
390 }
391 }
392
393 /**
394 * Find an instance of the named file created at the specified time
395 * Returns false if the file does not exist. Repositories not supporting
396 * version control should return false if the time is specified.
397 *
398 * @param Title|string $title Title object or string
399 * @param array $options Associative array of options:
400 * time: requested time for a specific file version, or false for the
401 * current version. An image object will be returned which was
402 * created at the specified time (which may be archived or current).
403 * ignoreRedirect: If true, do not follow file redirects
404 * private: If true, return restricted (deleted) files if the current
405 * user is allowed to view them. Otherwise, such files will not
406 * be found. If a User object, use that user instead of the current.
407 * @return File|bool False on failure
408 */
409 public function findFile( $title, $options = array() ) {
410 $title = File::normalizeTitle( $title );
411 if ( !$title ) {
412 return false;
413 }
414 $time = isset( $options['time'] ) ? $options['time'] : false;
415 # First try the current version of the file to see if it precedes the timestamp
416 $img = $this->newFile( $title );
417 if ( !$img ) {
418 return false;
419 }
420 if ( $img->exists() && ( !$time || $img->getTimestamp() == $time ) ) {
421 return $img;
422 }
423 # Now try an old version of the file
424 if ( $time !== false ) {
425 $img = $this->newFile( $title, $time );
426 if ( $img && $img->exists() ) {
427 if ( !$img->isDeleted( File::DELETED_FILE ) ) {
428 return $img; // always OK
429 } elseif ( !empty( $options['private'] ) &&
430 $img->userCan( File::DELETED_FILE,
431 $options['private'] instanceof User ? $options['private'] : null
432 )
433 ) {
434 return $img;
435 }
436 }
437 }
438
439 # Now try redirects
440 if ( !empty( $options['ignoreRedirect'] ) ) {
441 return false;
442 }
443 $redir = $this->checkRedirect( $title );
444 if ( $redir && $title->getNamespace() == NS_FILE ) {
445 $img = $this->newFile( $redir );
446 if ( !$img ) {
447 return false;
448 }
449 if ( $img->exists() ) {
450 $img->redirectedFrom( $title->getDBkey() );
451
452 return $img;
453 }
454 }
455
456 return false;
457 }
458
459 /**
460 * Find many files at once.
461 *
462 * @param array $items An array of titles, or an array of findFile() options with
463 * the "title" option giving the title. Example:
464 *
465 * $findItem = array( 'title' => $title, 'private' => true );
466 * $findBatch = array( $findItem );
467 * $repo->findFiles( $findBatch );
468 *
469 * No title should appear in $items twice, as the result use titles as keys
470 * @param int $flags Supports:
471 * - FileRepo::NAME_AND_TIME_ONLY : return a (search title => (title,timestamp)) map.
472 * The search title uses the input titles; the other is the final post-redirect title.
473 * All titles are returned as string DB keys and the inner array is associative.
474 * @return array Map of (file name => File objects) for matches
475 */
476 public function findFiles( array $items, $flags = 0 ) {
477 $result = array();
478 foreach ( $items as $item ) {
479 if ( is_array( $item ) ) {
480 $title = $item['title'];
481 $options = $item;
482 unset( $options['title'] );
483 } else {
484 $title = $item;
485 $options = array();
486 }
487 $file = $this->findFile( $title, $options );
488 if ( $file ) {
489 $searchName = File::normalizeTitle( $title )->getDBkey(); // must be valid
490 if ( $flags & self::NAME_AND_TIME_ONLY ) {
491 $result[$searchName] = array(
492 'title' => $file->getTitle()->getDBkey(),
493 'timestamp' => $file->getTimestamp()
494 );
495 } else {
496 $result[$searchName] = $file;
497 }
498 }
499 }
500
501 return $result;
502 }
503
504 /**
505 * Find an instance of the file with this key, created at the specified time
506 * Returns false if the file does not exist. Repositories not supporting
507 * version control should return false if the time is specified.
508 *
509 * @param string $sha1 Base 36 SHA-1 hash
510 * @param array $options Option array, same as findFile().
511 * @return File|bool False on failure
512 */
513 public function findFileFromKey( $sha1, $options = array() ) {
514 $time = isset( $options['time'] ) ? $options['time'] : false;
515 # First try to find a matching current version of a file...
516 if ( $this->fileFactoryKey ) {
517 $img = call_user_func( $this->fileFactoryKey, $sha1, $this, $time );
518 } else {
519 return false; // find-by-sha1 not supported
520 }
521 if ( $img && $img->exists() ) {
522 return $img;
523 }
524 # Now try to find a matching old version of a file...
525 if ( $time !== false && $this->oldFileFactoryKey ) { // find-by-sha1 supported?
526 $img = call_user_func( $this->oldFileFactoryKey, $sha1, $this, $time );
527 if ( $img && $img->exists() ) {
528 if ( !$img->isDeleted( File::DELETED_FILE ) ) {
529 return $img; // always OK
530 } elseif ( !empty( $options['private'] ) &&
531 $img->userCan( File::DELETED_FILE,
532 $options['private'] instanceof User ? $options['private'] : null
533 )
534 ) {
535 return $img;
536 }
537 }
538 }
539
540 return false;
541 }
542
543 /**
544 * Get an array or iterator of file objects for files that have a given
545 * SHA-1 content hash.
546 *
547 * STUB
548 * @param string $hash SHA-1 hash
549 * @return File[]
550 */
551 public function findBySha1( $hash ) {
552 return array();
553 }
554
555 /**
556 * Get an array of arrays or iterators of file objects for files that
557 * have the given SHA-1 content hashes.
558 *
559 * @param array $hashes An array of hashes
560 * @return array An Array of arrays or iterators of file objects and the hash as key
561 */
562 public function findBySha1s( array $hashes ) {
563 $result = array();
564 foreach ( $hashes as $hash ) {
565 $files = $this->findBySha1( $hash );
566 if ( count( $files ) ) {
567 $result[$hash] = $files;
568 }
569 }
570
571 return $result;
572 }
573
574 /**
575 * Return an array of files where the name starts with $prefix.
576 *
577 * STUB
578 * @param string $prefix The prefix to search for
579 * @param int $limit The maximum amount of files to return
580 * @return array
581 */
582 public function findFilesByPrefix( $prefix, $limit ) {
583 return array();
584 }
585
586 /**
587 * Get the public root URL of the repository
588 *
589 * @deprecated since 1.20
590 * @return string
591 */
592 public function getRootUrl() {
593 return $this->getZoneUrl( 'public' );
594 }
595
596 /**
597 * Get the URL of thumb.php
598 *
599 * @return string
600 */
601 public function getThumbScriptUrl() {
602 return $this->thumbScriptUrl;
603 }
604
605 /**
606 * Returns true if the repository can transform files via a 404 handler
607 *
608 * @return bool
609 */
610 public function canTransformVia404() {
611 return $this->transformVia404;
612 }
613
614 /**
615 * Get the name of a file from its title object
616 *
617 * @param Title $title
618 * @return string
619 */
620 public function getNameFromTitle( Title $title ) {
621 global $wgContLang;
622 if ( $this->initialCapital != MWNamespace::isCapitalized( NS_FILE ) ) {
623 $name = $title->getUserCaseDBKey();
624 if ( $this->initialCapital ) {
625 $name = $wgContLang->ucfirst( $name );
626 }
627 } else {
628 $name = $title->getDBkey();
629 }
630
631 return $name;
632 }
633
634 /**
635 * Get the public zone root storage directory of the repository
636 *
637 * @return string
638 */
639 public function getRootDirectory() {
640 return $this->getZonePath( 'public' );
641 }
642
643 /**
644 * Get a relative path including trailing slash, e.g. f/fa/
645 * If the repo is not hashed, returns an empty string
646 *
647 * @param string $name Name of file
648 * @return string
649 */
650 public function getHashPath( $name ) {
651 return self::getHashPathForLevel( $name, $this->hashLevels );
652 }
653
654 /**
655 * Get a relative path including trailing slash, e.g. f/fa/
656 * If the repo is not hashed, returns an empty string
657 *
658 * @param string $suffix Basename of file from FileRepo::storeTemp()
659 * @return string
660 */
661 public function getTempHashPath( $suffix ) {
662 $parts = explode( '!', $suffix, 2 ); // format is <timestamp>!<name> or just <name>
663 $name = isset( $parts[1] ) ? $parts[1] : $suffix; // hash path is not based on timestamp
664 return self::getHashPathForLevel( $name, $this->hashLevels );
665 }
666
667 /**
668 * @param string $name
669 * @param int $levels
670 * @return string
671 */
672 protected static function getHashPathForLevel( $name, $levels ) {
673 if ( $levels == 0 ) {
674 return '';
675 } else {
676 $hash = md5( $name );
677 $path = '';
678 for ( $i = 1; $i <= $levels; $i++ ) {
679 $path .= substr( $hash, 0, $i ) . '/';
680 }
681
682 return $path;
683 }
684 }
685
686 /**
687 * Get the number of hash directory levels
688 *
689 * @return int
690 */
691 public function getHashLevels() {
692 return $this->hashLevels;
693 }
694
695 /**
696 * Get the name of this repository, as specified by $info['name]' to the constructor
697 *
698 * @return string
699 */
700 public function getName() {
701 return $this->name;
702 }
703
704 /**
705 * Make an url to this repo
706 *
707 * @param string $query Query string to append
708 * @param string $entry Entry point; defaults to index
709 * @return string|bool False on failure
710 */
711 public function makeUrl( $query = '', $entry = 'index' ) {
712 if ( isset( $this->scriptDirUrl ) ) {
713 $ext = isset( $this->scriptExtension ) ? $this->scriptExtension : '.php';
714
715 return wfAppendQuery( "{$this->scriptDirUrl}/{$entry}{$ext}", $query );
716 }
717
718 return false;
719 }
720
721 /**
722 * Get the URL of an image description page. May return false if it is
723 * unknown or not applicable. In general this should only be called by the
724 * File class, since it may return invalid results for certain kinds of
725 * repositories. Use File::getDescriptionUrl() in user code.
726 *
727 * In particular, it uses the article paths as specified to the repository
728 * constructor, whereas local repositories use the local Title functions.
729 *
730 * @param string $name
731 * @return string
732 */
733 public function getDescriptionUrl( $name ) {
734 $encName = wfUrlencode( $name );
735 if ( !is_null( $this->descBaseUrl ) ) {
736 # "http://example.com/wiki/File:"
737 return $this->descBaseUrl . $encName;
738 }
739 if ( !is_null( $this->articleUrl ) ) {
740 # "http://example.com/wiki/$1"
741 #
742 # We use "Image:" as the canonical namespace for
743 # compatibility across all MediaWiki versions.
744 return str_replace( '$1',
745 "Image:$encName", $this->articleUrl );
746 }
747 if ( !is_null( $this->scriptDirUrl ) ) {
748 # "http://example.com/w"
749 #
750 # We use "Image:" as the canonical namespace for
751 # compatibility across all MediaWiki versions,
752 # and just sort of hope index.php is right. ;)
753 return $this->makeUrl( "title=Image:$encName" );
754 }
755
756 return false;
757 }
758
759 /**
760 * Get the URL of the content-only fragment of the description page. For
761 * MediaWiki this means action=render. This should only be called by the
762 * repository's file class, since it may return invalid results. User code
763 * should use File::getDescriptionText().
764 *
765 * @param string $name Name of image to fetch
766 * @param string $lang Language to fetch it in, if any.
767 * @return string
768 */
769 public function getDescriptionRenderUrl( $name, $lang = null ) {
770 $query = 'action=render';
771 if ( !is_null( $lang ) ) {
772 $query .= '&uselang=' . $lang;
773 }
774 if ( isset( $this->scriptDirUrl ) ) {
775 return $this->makeUrl(
776 'title=' .
777 wfUrlencode( 'Image:' . $name ) .
778 "&$query" );
779 } else {
780 $descUrl = $this->getDescriptionUrl( $name );
781 if ( $descUrl ) {
782 return wfAppendQuery( $descUrl, $query );
783 } else {
784 return false;
785 }
786 }
787 }
788
789 /**
790 * Get the URL of the stylesheet to apply to description pages
791 *
792 * @return string|bool False on failure
793 */
794 public function getDescriptionStylesheetUrl() {
795 if ( isset( $this->scriptDirUrl ) ) {
796 return $this->makeUrl( 'title=MediaWiki:Filepage.css&' .
797 wfArrayToCgi( Skin::getDynamicStylesheetQuery() ) );
798 }
799
800 return false;
801 }
802
803 /**
804 * Store a file to a given destination.
805 *
806 * @param string $srcPath Source file system path, storage path, or virtual URL
807 * @param string $dstZone Destination zone
808 * @param string $dstRel Destination relative path
809 * @param int $flags Bitwise combination of the following flags:
810 * self::DELETE_SOURCE Delete the source file after upload
811 * self::OVERWRITE Overwrite an existing destination file instead of failing
812 * self::OVERWRITE_SAME Overwrite the file if the destination exists and has the
813 * same contents as the source
814 * self::SKIP_LOCKING Skip any file locking when doing the store
815 * @return FileRepoStatus
816 */
817 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
818 $this->assertWritableRepo(); // fail out if read-only
819
820 $status = $this->storeBatch( array( array( $srcPath, $dstZone, $dstRel ) ), $flags );
821 if ( $status->successCount == 0 ) {
822 $status->ok = false;
823 }
824
825 return $status;
826 }
827
828 /**
829 * Store a batch of files
830 *
831 * @param array $triplets (src, dest zone, dest rel) triplets as per store()
832 * @param int $flags Bitwise combination of the following flags:
833 * self::DELETE_SOURCE Delete the source file after upload
834 * self::OVERWRITE Overwrite an existing destination file instead of failing
835 * self::OVERWRITE_SAME Overwrite the file if the destination exists and has the
836 * same contents as the source
837 * self::SKIP_LOCKING Skip any file locking when doing the store
838 * @throws MWException
839 * @return FileRepoStatus
840 */
841 public function storeBatch( array $triplets, $flags = 0 ) {
842 $this->assertWritableRepo(); // fail out if read-only
843
844 $status = $this->newGood();
845 $backend = $this->backend; // convenience
846
847 $operations = array();
848 $sourceFSFilesToDelete = array(); // cleanup for disk source files
849 // Validate each triplet and get the store operation...
850 foreach ( $triplets as $triplet ) {
851 list( $srcPath, $dstZone, $dstRel ) = $triplet;
852 wfDebug( __METHOD__
853 . "( \$src='$srcPath', \$dstZone='$dstZone', \$dstRel='$dstRel' )\n"
854 );
855
856 // Resolve destination path
857 $root = $this->getZonePath( $dstZone );
858 if ( !$root ) {
859 throw new MWException( "Invalid zone: $dstZone" );
860 }
861 if ( !$this->validateFilename( $dstRel ) ) {
862 throw new MWException( 'Validation error in $dstRel' );
863 }
864 $dstPath = "$root/$dstRel";
865 $dstDir = dirname( $dstPath );
866 // Create destination directories for this triplet
867 if ( !$this->initDirectory( $dstDir )->isOK() ) {
868 return $this->newFatal( 'directorycreateerror', $dstDir );
869 }
870
871 // Resolve source to a storage path if virtual
872 $srcPath = $this->resolveToStoragePath( $srcPath );
873
874 // Get the appropriate file operation
875 if ( FileBackend::isStoragePath( $srcPath ) ) {
876 $opName = ( $flags & self::DELETE_SOURCE ) ? 'move' : 'copy';
877 } else {
878 $opName = 'store';
879 if ( $flags & self::DELETE_SOURCE ) {
880 $sourceFSFilesToDelete[] = $srcPath;
881 }
882 }
883 $operations[] = array(
884 'op' => $opName,
885 'src' => $srcPath,
886 'dst' => $dstPath,
887 'overwrite' => $flags & self::OVERWRITE,
888 'overwriteSame' => $flags & self::OVERWRITE_SAME,
889 );
890 }
891
892 // Execute the store operation for each triplet
893 $opts = array( 'force' => true );
894 if ( $flags & self::SKIP_LOCKING ) {
895 $opts['nonLocking'] = true;
896 }
897 $status->merge( $backend->doOperations( $operations, $opts ) );
898 // Cleanup for disk source files...
899 foreach ( $sourceFSFilesToDelete as $file ) {
900 wfSuppressWarnings();
901 unlink( $file ); // FS cleanup
902 wfRestoreWarnings();
903 }
904
905 return $status;
906 }
907
908 /**
909 * Deletes a batch of files.
910 * Each file can be a (zone, rel) pair, virtual url, storage path.
911 * It will try to delete each file, but ignores any errors that may occur.
912 *
913 * @param array $files List of files to delete
914 * @param int $flags Bitwise combination of the following flags:
915 * self::SKIP_LOCKING Skip any file locking when doing the deletions
916 * @return FileRepoStatus
917 */
918 public function cleanupBatch( array $files, $flags = 0 ) {
919 $this->assertWritableRepo(); // fail out if read-only
920
921 $status = $this->newGood();
922
923 $operations = array();
924 foreach ( $files as $path ) {
925 if ( is_array( $path ) ) {
926 // This is a pair, extract it
927 list( $zone, $rel ) = $path;
928 $path = $this->getZonePath( $zone ) . "/$rel";
929 } else {
930 // Resolve source to a storage path if virtual
931 $path = $this->resolveToStoragePath( $path );
932 }
933 $operations[] = array( 'op' => 'delete', 'src' => $path );
934 }
935 // Actually delete files from storage...
936 $opts = array( 'force' => true );
937 if ( $flags & self::SKIP_LOCKING ) {
938 $opts['nonLocking'] = true;
939 }
940 $status->merge( $this->backend->doOperations( $operations, $opts ) );
941
942 return $status;
943 }
944
945 /**
946 * Import a file from the local file system into the repo.
947 * This does no locking nor journaling and overrides existing files.
948 * This function can be used to write to otherwise read-only foreign repos.
949 * This is intended for copying generated thumbnails into the repo.
950 *
951 * @param string $src Source file system path, storage path, or virtual URL
952 * @param string $dst Virtual URL or storage path
953 * @param array|string|null $options An array consisting of a key named headers
954 * listing extra headers. If a string, taken as content-disposition header.
955 * (Support for array of options new in 1.23)
956 * @return FileRepoStatus
957 */
958 final public function quickImport( $src, $dst, $options = null ) {
959 return $this->quickImportBatch( array( array( $src, $dst, $options ) ) );
960 }
961
962 /**
963 * Purge a file from the repo. This does no locking nor journaling.
964 * This function can be used to write to otherwise read-only foreign repos.
965 * This is intended for purging thumbnails.
966 *
967 * @param string $path Virtual URL or storage path
968 * @return FileRepoStatus
969 */
970 final public function quickPurge( $path ) {
971 return $this->quickPurgeBatch( array( $path ) );
972 }
973
974 /**
975 * Deletes a directory if empty.
976 * This function can be used to write to otherwise read-only foreign repos.
977 *
978 * @param string $dir Virtual URL (or storage path) of directory to clean
979 * @return Status
980 */
981 public function quickCleanDir( $dir ) {
982 $status = $this->newGood();
983 $status->merge( $this->backend->clean(
984 array( 'dir' => $this->resolveToStoragePath( $dir ) ) ) );
985
986 return $status;
987 }
988
989 /**
990 * Import a batch of files from the local file system into the repo.
991 * This does no locking nor journaling and overrides existing files.
992 * This function can be used to write to otherwise read-only foreign repos.
993 * This is intended for copying generated thumbnails into the repo.
994 *
995 * All path parameters may be a file system path, storage path, or virtual URL.
996 * When "headers" are given they are used as HTTP headers if supported.
997 *
998 * @param array $triples List of (source path, destination path, disposition)
999 * @return FileRepoStatus
1000 */
1001 public function quickImportBatch( array $triples ) {
1002 $status = $this->newGood();
1003 $operations = array();
1004 foreach ( $triples as $triple ) {
1005 list( $src, $dst ) = $triple;
1006 $src = $this->resolveToStoragePath( $src );
1007 $dst = $this->resolveToStoragePath( $dst );
1008
1009 if ( !isset( $triple[2] ) ) {
1010 $headers = array();
1011 } elseif ( is_string( $triple[2] ) ) {
1012 // back-compat
1013 $headers = array( 'Content-Disposition' => $triple[2] );
1014 } elseif ( is_array( $triple[2] ) && isset( $triple[2]['headers'] ) ) {
1015 $headers = $triple[2]['headers'];
1016 }
1017 // @fixme: $headers might not be defined
1018 $operations[] = array(
1019 'op' => FileBackend::isStoragePath( $src ) ? 'copy' : 'store',
1020 'src' => $src,
1021 'dst' => $dst,
1022 'headers' => $headers
1023 );
1024 $status->merge( $this->initDirectory( dirname( $dst ) ) );
1025 }
1026 $status->merge( $this->backend->doQuickOperations( $operations ) );
1027
1028 return $status;
1029 }
1030
1031 /**
1032 * Purge a batch of files from the repo.
1033 * This function can be used to write to otherwise read-only foreign repos.
1034 * This does no locking nor journaling and is intended for purging thumbnails.
1035 *
1036 * @param array $paths List of virtual URLs or storage paths
1037 * @return FileRepoStatus
1038 */
1039 public function quickPurgeBatch( array $paths ) {
1040 $status = $this->newGood();
1041 $operations = array();
1042 foreach ( $paths as $path ) {
1043 $operations[] = array(
1044 'op' => 'delete',
1045 'src' => $this->resolveToStoragePath( $path ),
1046 'ignoreMissingSource' => true
1047 );
1048 }
1049 $status->merge( $this->backend->doQuickOperations( $operations ) );
1050
1051 return $status;
1052 }
1053
1054 /**
1055 * Pick a random name in the temp zone and store a file to it.
1056 * Returns a FileRepoStatus object with the file Virtual URL in the value,
1057 * file can later be disposed using FileRepo::freeTemp().
1058 *
1059 * @param string $originalName The base name of the file as specified
1060 * by the user. The file extension will be maintained.
1061 * @param string $srcPath The current location of the file.
1062 * @return FileRepoStatus Object with the URL in the value.
1063 */
1064 public function storeTemp( $originalName, $srcPath ) {
1065 $this->assertWritableRepo(); // fail out if read-only
1066
1067 $date = MWTimestamp::getInstance()->format( 'YmdHis' );
1068 $hashPath = $this->getHashPath( $originalName );
1069 $dstUrlRel = $hashPath . $date . '!' . rawurlencode( $originalName );
1070 $virtualUrl = $this->getVirtualUrl( 'temp' ) . '/' . $dstUrlRel;
1071
1072 $result = $this->quickImport( $srcPath, $virtualUrl );
1073 $result->value = $virtualUrl;
1074
1075 return $result;
1076 }
1077
1078 /**
1079 * Remove a temporary file or mark it for garbage collection
1080 *
1081 * @param string $virtualUrl The virtual URL returned by FileRepo::storeTemp()
1082 * @return bool True on success, false on failure
1083 */
1084 public function freeTemp( $virtualUrl ) {
1085 $this->assertWritableRepo(); // fail out if read-only
1086
1087 $temp = $this->getVirtualUrl( 'temp' );
1088 if ( substr( $virtualUrl, 0, strlen( $temp ) ) != $temp ) {
1089 wfDebug( __METHOD__ . ": Invalid temp virtual URL\n" );
1090
1091 return false;
1092 }
1093
1094 return $this->quickPurge( $virtualUrl )->isOK();
1095 }
1096
1097 /**
1098 * Concatenate a list of temporary files into a target file location.
1099 *
1100 * @param array $srcPaths Ordered list of source virtual URLs/storage paths
1101 * @param string $dstPath Target file system path
1102 * @param int $flags Bitwise combination of the following flags:
1103 * self::DELETE_SOURCE Delete the source files
1104 * @return FileRepoStatus
1105 */
1106 public function concatenate( array $srcPaths, $dstPath, $flags = 0 ) {
1107 $this->assertWritableRepo(); // fail out if read-only
1108
1109 $status = $this->newGood();
1110
1111 $sources = array();
1112 foreach ( $srcPaths as $srcPath ) {
1113 // Resolve source to a storage path if virtual
1114 $source = $this->resolveToStoragePath( $srcPath );
1115 $sources[] = $source; // chunk to merge
1116 }
1117
1118 // Concatenate the chunks into one FS file
1119 $params = array( 'srcs' => $sources, 'dst' => $dstPath );
1120 $status->merge( $this->backend->concatenate( $params ) );
1121 if ( !$status->isOK() ) {
1122 return $status;
1123 }
1124
1125 // Delete the sources if required
1126 if ( $flags & self::DELETE_SOURCE ) {
1127 $status->merge( $this->quickPurgeBatch( $srcPaths ) );
1128 }
1129
1130 // Make sure status is OK, despite any quickPurgeBatch() fatals
1131 $status->setResult( true );
1132
1133 return $status;
1134 }
1135
1136 /**
1137 * Copy or move a file either from a storage path, virtual URL,
1138 * or file system path, into this repository at the specified destination location.
1139 *
1140 * Returns a FileRepoStatus object. On success, the value contains "new" or
1141 * "archived", to indicate whether the file was new with that name.
1142 *
1143 * Options to $options include:
1144 * - headers : name/value map of HTTP headers to use in response to GET/HEAD requests
1145 *
1146 * @param string $srcPath The source file system path, storage path, or URL
1147 * @param string $dstRel The destination relative path
1148 * @param string $archiveRel The relative path where the existing file is to
1149 * be archived, if there is one. Relative to the public zone root.
1150 * @param int $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
1151 * that the source file should be deleted if possible
1152 * @param array $options Optional additional parameters
1153 * @return FileRepoStatus
1154 */
1155 public function publish(
1156 $srcPath, $dstRel, $archiveRel, $flags = 0, array $options = array()
1157 ) {
1158 $this->assertWritableRepo(); // fail out if read-only
1159
1160 $status = $this->publishBatch(
1161 array( array( $srcPath, $dstRel, $archiveRel, $options ) ), $flags );
1162 if ( $status->successCount == 0 ) {
1163 $status->ok = false;
1164 }
1165 if ( isset( $status->value[0] ) ) {
1166 $status->value = $status->value[0];
1167 } else {
1168 $status->value = false;
1169 }
1170
1171 return $status;
1172 }
1173
1174 /**
1175 * Publish a batch of files
1176 *
1177 * @param array $ntuples (source, dest, archive) triplets or
1178 * (source, dest, archive, options) 4-tuples as per publish().
1179 * @param int $flags Bitfield, may be FileRepo::DELETE_SOURCE to indicate
1180 * that the source files should be deleted if possible
1181 * @throws MWException
1182 * @return FileRepoStatus
1183 */
1184 public function publishBatch( array $ntuples, $flags = 0 ) {
1185 $this->assertWritableRepo(); // fail out if read-only
1186
1187 $backend = $this->backend; // convenience
1188 // Try creating directories
1189 $status = $this->initZones( 'public' );
1190 if ( !$status->isOK() ) {
1191 return $status;
1192 }
1193
1194 $status = $this->newGood( array() );
1195
1196 $operations = array();
1197 $sourceFSFilesToDelete = array(); // cleanup for disk source files
1198 // Validate each triplet and get the store operation...
1199 foreach ( $ntuples as $ntuple ) {
1200 list( $srcPath, $dstRel, $archiveRel ) = $ntuple;
1201 $options = isset( $ntuple[3] ) ? $ntuple[3] : array();
1202 // Resolve source to a storage path if virtual
1203 $srcPath = $this->resolveToStoragePath( $srcPath );
1204 if ( !$this->validateFilename( $dstRel ) ) {
1205 throw new MWException( 'Validation error in $dstRel' );
1206 }
1207 if ( !$this->validateFilename( $archiveRel ) ) {
1208 throw new MWException( 'Validation error in $archiveRel' );
1209 }
1210
1211 $publicRoot = $this->getZonePath( 'public' );
1212 $dstPath = "$publicRoot/$dstRel";
1213 $archivePath = "$publicRoot/$archiveRel";
1214
1215 $dstDir = dirname( $dstPath );
1216 $archiveDir = dirname( $archivePath );
1217 // Abort immediately on directory creation errors since they're likely to be repetitive
1218 if ( !$this->initDirectory( $dstDir )->isOK() ) {
1219 return $this->newFatal( 'directorycreateerror', $dstDir );
1220 }
1221 if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1222 return $this->newFatal( 'directorycreateerror', $archiveDir );
1223 }
1224
1225 // Set any desired headers to be use in GET/HEAD responses
1226 $headers = isset( $options['headers'] ) ? $options['headers'] : array();
1227
1228 // Archive destination file if it exists.
1229 // This will check if the archive file also exists and fail if does.
1230 // This is a sanity check to avoid data loss. On Windows and Linux,
1231 // copy() will overwrite, so the existence check is vulnerable to
1232 // race conditions unless a functioning LockManager is used.
1233 // LocalFile also uses SELECT FOR UPDATE for synchronization.
1234 $operations[] = array(
1235 'op' => 'copy',
1236 'src' => $dstPath,
1237 'dst' => $archivePath,
1238 'ignoreMissingSource' => true
1239 );
1240
1241 // Copy (or move) the source file to the destination
1242 if ( FileBackend::isStoragePath( $srcPath ) ) {
1243 if ( $flags & self::DELETE_SOURCE ) {
1244 $operations[] = array(
1245 'op' => 'move',
1246 'src' => $srcPath,
1247 'dst' => $dstPath,
1248 'overwrite' => true, // replace current
1249 'headers' => $headers
1250 );
1251 } else {
1252 $operations[] = array(
1253 'op' => 'copy',
1254 'src' => $srcPath,
1255 'dst' => $dstPath,
1256 'overwrite' => true, // replace current
1257 'headers' => $headers
1258 );
1259 }
1260 } else { // FS source path
1261 $operations[] = array(
1262 'op' => 'store',
1263 'src' => $srcPath,
1264 'dst' => $dstPath,
1265 'overwrite' => true, // replace current
1266 'headers' => $headers
1267 );
1268 if ( $flags & self::DELETE_SOURCE ) {
1269 $sourceFSFilesToDelete[] = $srcPath;
1270 }
1271 }
1272 }
1273
1274 // Execute the operations for each triplet
1275 $status->merge( $backend->doOperations( $operations ) );
1276 // Find out which files were archived...
1277 foreach ( $ntuples as $i => $ntuple ) {
1278 list( , , $archiveRel ) = $ntuple;
1279 $archivePath = $this->getZonePath( 'public' ) . "/$archiveRel";
1280 if ( $this->fileExists( $archivePath ) ) {
1281 $status->value[$i] = 'archived';
1282 } else {
1283 $status->value[$i] = 'new';
1284 }
1285 }
1286 // Cleanup for disk source files...
1287 foreach ( $sourceFSFilesToDelete as $file ) {
1288 wfSuppressWarnings();
1289 unlink( $file ); // FS cleanup
1290 wfRestoreWarnings();
1291 }
1292
1293 return $status;
1294 }
1295
1296 /**
1297 * Creates a directory with the appropriate zone permissions.
1298 * Callers are responsible for doing read-only and "writable repo" checks.
1299 *
1300 * @param string $dir Virtual URL (or storage path) of directory to clean
1301 * @return Status
1302 */
1303 protected function initDirectory( $dir ) {
1304 $path = $this->resolveToStoragePath( $dir );
1305 list( , $container, ) = FileBackend::splitStoragePath( $path );
1306
1307 $params = array( 'dir' => $path );
1308 if ( $this->isPrivate || $container === $this->zones['deleted']['container'] ) {
1309 # Take all available measures to prevent web accessibility of new deleted
1310 # directories, in case the user has not configured offline storage
1311 $params = array( 'noAccess' => true, 'noListing' => true ) + $params;
1312 }
1313
1314 return $this->backend->prepare( $params );
1315 }
1316
1317 /**
1318 * Deletes a directory if empty.
1319 *
1320 * @param string $dir Virtual URL (or storage path) of directory to clean
1321 * @return Status
1322 */
1323 public function cleanDir( $dir ) {
1324 $this->assertWritableRepo(); // fail out if read-only
1325
1326 $status = $this->newGood();
1327 $status->merge( $this->backend->clean(
1328 array( 'dir' => $this->resolveToStoragePath( $dir ) ) ) );
1329
1330 return $status;
1331 }
1332
1333 /**
1334 * Checks existence of a a file
1335 *
1336 * @param string $file Virtual URL (or storage path) of file to check
1337 * @return bool
1338 */
1339 public function fileExists( $file ) {
1340 $result = $this->fileExistsBatch( array( $file ) );
1341
1342 return $result[0];
1343 }
1344
1345 /**
1346 * Checks existence of an array of files.
1347 *
1348 * @param array $files Virtual URLs (or storage paths) of files to check
1349 * @return array|bool Either array of files and existence flags, or false
1350 */
1351 public function fileExistsBatch( array $files ) {
1352 $result = array();
1353 foreach ( $files as $key => $file ) {
1354 $file = $this->resolveToStoragePath( $file );
1355 $result[$key] = $this->backend->fileExists( array( 'src' => $file ) );
1356 }
1357
1358 return $result;
1359 }
1360
1361 /**
1362 * Move a file to the deletion archive.
1363 * If no valid deletion archive exists, this may either delete the file
1364 * or throw an exception, depending on the preference of the repository
1365 *
1366 * @param mixed $srcRel Relative path for the file to be deleted
1367 * @param mixed $archiveRel Relative path for the archive location.
1368 * Relative to a private archive directory.
1369 * @return FileRepoStatus
1370 */
1371 public function delete( $srcRel, $archiveRel ) {
1372 $this->assertWritableRepo(); // fail out if read-only
1373
1374 return $this->deleteBatch( array( array( $srcRel, $archiveRel ) ) );
1375 }
1376
1377 /**
1378 * Move a group of files to the deletion archive.
1379 *
1380 * If no valid deletion archive is configured, this may either delete the
1381 * file or throw an exception, depending on the preference of the repository.
1382 *
1383 * The overwrite policy is determined by the repository -- currently LocalRepo
1384 * assumes a naming scheme in the deleted zone based on content hash, as
1385 * opposed to the public zone which is assumed to be unique.
1386 *
1387 * @param array $sourceDestPairs Array of source/destination pairs. Each element
1388 * is a two-element array containing the source file path relative to the
1389 * public root in the first element, and the archive file path relative
1390 * to the deleted zone root in the second element.
1391 * @throws MWException
1392 * @return FileRepoStatus
1393 */
1394 public function deleteBatch( array $sourceDestPairs ) {
1395 $this->assertWritableRepo(); // fail out if read-only
1396
1397 // Try creating directories
1398 $status = $this->initZones( array( 'public', 'deleted' ) );
1399 if ( !$status->isOK() ) {
1400 return $status;
1401 }
1402
1403 $status = $this->newGood();
1404
1405 $backend = $this->backend; // convenience
1406 $operations = array();
1407 // Validate filenames and create archive directories
1408 foreach ( $sourceDestPairs as $pair ) {
1409 list( $srcRel, $archiveRel ) = $pair;
1410 if ( !$this->validateFilename( $srcRel ) ) {
1411 throw new MWException( __METHOD__ . ':Validation error in $srcRel' );
1412 } elseif ( !$this->validateFilename( $archiveRel ) ) {
1413 throw new MWException( __METHOD__ . ':Validation error in $archiveRel' );
1414 }
1415
1416 $publicRoot = $this->getZonePath( 'public' );
1417 $srcPath = "{$publicRoot}/$srcRel";
1418
1419 $deletedRoot = $this->getZonePath( 'deleted' );
1420 $archivePath = "{$deletedRoot}/{$archiveRel}";
1421 $archiveDir = dirname( $archivePath ); // does not touch FS
1422
1423 // Create destination directories
1424 if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1425 return $this->newFatal( 'directorycreateerror', $archiveDir );
1426 }
1427
1428 $operations[] = array(
1429 'op' => 'move',
1430 'src' => $srcPath,
1431 'dst' => $archivePath,
1432 // We may have 2+ identical files being deleted,
1433 // all of which will map to the same destination file
1434 'overwriteSame' => true // also see bug 31792
1435 );
1436 }
1437
1438 // Move the files by execute the operations for each pair.
1439 // We're now committed to returning an OK result, which will
1440 // lead to the files being moved in the DB also.
1441 $opts = array( 'force' => true );
1442 $status->merge( $backend->doOperations( $operations, $opts ) );
1443
1444 return $status;
1445 }
1446
1447 /**
1448 * Delete files in the deleted directory if they are not referenced in the filearchive table
1449 *
1450 * STUB
1451 */
1452 public function cleanupDeletedBatch( array $storageKeys ) {
1453 $this->assertWritableRepo();
1454 }
1455
1456 /**
1457 * Get a relative path for a deletion archive key,
1458 * e.g. s/z/a/ for sza251lrxrc1jad41h5mgilp8nysje52.jpg
1459 *
1460 * @param string $key
1461 * @throws MWException
1462 * @return string
1463 */
1464 public function getDeletedHashPath( $key ) {
1465 if ( strlen( $key ) < 31 ) {
1466 throw new MWException( "Invalid storage key '$key'." );
1467 }
1468 $path = '';
1469 for ( $i = 0; $i < $this->deletedHashLevels; $i++ ) {
1470 $path .= $key[$i] . '/';
1471 }
1472
1473 return $path;
1474 }
1475
1476 /**
1477 * If a path is a virtual URL, resolve it to a storage path.
1478 * Otherwise, just return the path as it is.
1479 *
1480 * @param string $path
1481 * @return string
1482 * @throws MWException
1483 */
1484 protected function resolveToStoragePath( $path ) {
1485 if ( $this->isVirtualUrl( $path ) ) {
1486 return $this->resolveVirtualUrl( $path );
1487 }
1488
1489 return $path;
1490 }
1491
1492 /**
1493 * Get a local FS copy of a file with a given virtual URL/storage path.
1494 * Temporary files may be purged when the file object falls out of scope.
1495 *
1496 * @param string $virtualUrl
1497 * @return TempFSFile|null Returns null on failure
1498 */
1499 public function getLocalCopy( $virtualUrl ) {
1500 $path = $this->resolveToStoragePath( $virtualUrl );
1501
1502 return $this->backend->getLocalCopy( array( 'src' => $path ) );
1503 }
1504
1505 /**
1506 * Get a local FS file with a given virtual URL/storage path.
1507 * The file is either an original or a copy. It should not be changed.
1508 * Temporary files may be purged when the file object falls out of scope.
1509 *
1510 * @param string $virtualUrl
1511 * @return FSFile|null Returns null on failure.
1512 */
1513 public function getLocalReference( $virtualUrl ) {
1514 $path = $this->resolveToStoragePath( $virtualUrl );
1515
1516 return $this->backend->getLocalReference( array( 'src' => $path ) );
1517 }
1518
1519 /**
1520 * Get properties of a file with a given virtual URL/storage path.
1521 * Properties should ultimately be obtained via FSFile::getProps().
1522 *
1523 * @param string $virtualUrl
1524 * @return array
1525 */
1526 public function getFileProps( $virtualUrl ) {
1527 $path = $this->resolveToStoragePath( $virtualUrl );
1528
1529 return $this->backend->getFileProps( array( 'src' => $path ) );
1530 }
1531
1532 /**
1533 * Get the timestamp of a file with a given virtual URL/storage path
1534 *
1535 * @param string $virtualUrl
1536 * @return string|bool False on failure
1537 */
1538 public function getFileTimestamp( $virtualUrl ) {
1539 $path = $this->resolveToStoragePath( $virtualUrl );
1540
1541 return $this->backend->getFileTimestamp( array( 'src' => $path ) );
1542 }
1543
1544 /**
1545 * Get the size of a file with a given virtual URL/storage path
1546 *
1547 * @param string $virtualUrl
1548 * @return int|bool False on failure
1549 */
1550 public function getFileSize( $virtualUrl ) {
1551 $path = $this->resolveToStoragePath( $virtualUrl );
1552
1553 return $this->backend->getFileSize( array( 'src' => $path ) );
1554 }
1555
1556 /**
1557 * Get the sha1 (base 36) of a file with a given virtual URL/storage path
1558 *
1559 * @param string $virtualUrl
1560 * @return string|bool
1561 */
1562 public function getFileSha1( $virtualUrl ) {
1563 $path = $this->resolveToStoragePath( $virtualUrl );
1564
1565 return $this->backend->getFileSha1Base36( array( 'src' => $path ) );
1566 }
1567
1568 /**
1569 * Attempt to stream a file with the given virtual URL/storage path
1570 *
1571 * @param string $virtualUrl
1572 * @param array $headers Additional HTTP headers to send on success
1573 * @return bool Success
1574 */
1575 public function streamFile( $virtualUrl, $headers = array() ) {
1576 $path = $this->resolveToStoragePath( $virtualUrl );
1577 $params = array( 'src' => $path, 'headers' => $headers );
1578
1579 return $this->backend->streamFile( $params )->isOK();
1580 }
1581
1582 /**
1583 * Call a callback function for every public regular file in the repository.
1584 * This only acts on the current version of files, not any old versions.
1585 * May use either the database or the filesystem.
1586 *
1587 * @param callable $callback
1588 * @return void
1589 */
1590 public function enumFiles( $callback ) {
1591 $this->enumFilesInStorage( $callback );
1592 }
1593
1594 /**
1595 * Call a callback function for every public file in the repository.
1596 * May use either the database or the filesystem.
1597 *
1598 * @param callable $callback
1599 * @return void
1600 */
1601 protected function enumFilesInStorage( $callback ) {
1602 $publicRoot = $this->getZonePath( 'public' );
1603 $numDirs = 1 << ( $this->hashLevels * 4 );
1604 // Use a priori assumptions about directory structure
1605 // to reduce the tree height of the scanning process.
1606 for ( $flatIndex = 0; $flatIndex < $numDirs; $flatIndex++ ) {
1607 $hexString = sprintf( "%0{$this->hashLevels}x", $flatIndex );
1608 $path = $publicRoot;
1609 for ( $hexPos = 0; $hexPos < $this->hashLevels; $hexPos++ ) {
1610 $path .= '/' . substr( $hexString, 0, $hexPos + 1 );
1611 }
1612 $iterator = $this->backend->getFileList( array( 'dir' => $path ) );
1613 foreach ( $iterator as $name ) {
1614 // Each item returned is a public file
1615 call_user_func( $callback, "{$path}/{$name}" );
1616 }
1617 }
1618 }
1619
1620 /**
1621 * Determine if a relative path is valid, i.e. not blank or involving directory traveral
1622 *
1623 * @param string $filename
1624 * @return bool
1625 */
1626 public function validateFilename( $filename ) {
1627 if ( strval( $filename ) == '' ) {
1628 return false;
1629 }
1630
1631 return FileBackend::isPathTraversalFree( $filename );
1632 }
1633
1634 /**
1635 * Get a callback function to use for cleaning error message parameters
1636 *
1637 * @return array
1638 */
1639 function getErrorCleanupFunction() {
1640 switch ( $this->pathDisclosureProtection ) {
1641 case 'none':
1642 case 'simple': // b/c
1643 $callback = array( $this, 'passThrough' );
1644 break;
1645 default: // 'paranoid'
1646 $callback = array( $this, 'paranoidClean' );
1647 }
1648 return $callback;
1649 }
1650
1651 /**
1652 * Path disclosure protection function
1653 *
1654 * @param string $param
1655 * @return string
1656 */
1657 function paranoidClean( $param ) {
1658 return '[hidden]';
1659 }
1660
1661 /**
1662 * Path disclosure protection function
1663 *
1664 * @param string $param
1665 * @return string
1666 */
1667 function passThrough( $param ) {
1668 return $param;
1669 }
1670
1671 /**
1672 * Create a new fatal error
1673 *
1674 * @param string $message
1675 * @return FileRepoStatus
1676 */
1677 public function newFatal( $message /*, parameters...*/ ) {
1678 $params = func_get_args();
1679 array_unshift( $params, $this );
1680
1681 return call_user_func_array( array( 'FileRepoStatus', 'newFatal' ), $params );
1682 }
1683
1684 /**
1685 * Create a new good result
1686 *
1687 * @param null|string $value
1688 * @return FileRepoStatus
1689 */
1690 public function newGood( $value = null ) {
1691 return FileRepoStatus::newGood( $this, $value );
1692 }
1693
1694 /**
1695 * Checks if there is a redirect named as $title. If there is, return the
1696 * title object. If not, return false.
1697 * STUB
1698 *
1699 * @param Title $title Title of image
1700 * @return bool
1701 */
1702 public function checkRedirect( Title $title ) {
1703 return false;
1704 }
1705
1706 /**
1707 * Invalidates image redirect cache related to that image
1708 * Doesn't do anything for repositories that don't support image redirects.
1709 *
1710 * STUB
1711 * @param Title $title Title of image
1712 */
1713 public function invalidateImageRedirect( Title $title ) {
1714 }
1715
1716 /**
1717 * Get the human-readable name of the repo
1718 *
1719 * @return string
1720 */
1721 public function getDisplayName() {
1722 global $wgSitename;
1723
1724 if ( $this->isLocal() ) {
1725 return $wgSitename;
1726 }
1727
1728 // 'shared-repo-name-wikimediacommons' is used when $wgUseInstantCommons = true
1729 return wfMessageFallback( 'shared-repo-name-' . $this->name, 'shared-repo' )->text();
1730 }
1731
1732 /**
1733 * Get the portion of the file that contains the origin file name.
1734 * If that name is too long, then the name "thumbnail.<ext>" will be given.
1735 *
1736 * @param string $name
1737 * @return string
1738 */
1739 public function nameForThumb( $name ) {
1740 if ( strlen( $name ) > $this->abbrvThreshold ) {
1741 $ext = FileBackend::extensionFromPath( $name );
1742 $name = ( $ext == '' ) ? 'thumbnail' : "thumbnail.$ext";
1743 }
1744
1745 return $name;
1746 }
1747
1748 /**
1749 * Returns true if this the local file repository.
1750 *
1751 * @return bool
1752 */
1753 public function isLocal() {
1754 return $this->getName() == 'local';
1755 }
1756
1757 /**
1758 * Get a key on the primary cache for this repository.
1759 * Returns false if the repository's cache is not accessible at this site.
1760 * The parameters are the parts of the key, as for wfMemcKey().
1761 *
1762 * STUB
1763 * @return bool
1764 */
1765 public function getSharedCacheKey( /*...*/ ) {
1766 return false;
1767 }
1768
1769 /**
1770 * Get a key for this repo in the local cache domain. These cache keys are
1771 * not shared with remote instances of the repo.
1772 * The parameters are the parts of the key, as for wfMemcKey().
1773 *
1774 * @return string
1775 */
1776 public function getLocalCacheKey( /*...*/ ) {
1777 $args = func_get_args();
1778 array_unshift( $args, 'filerepo', $this->getName() );
1779
1780 return call_user_func_array( 'wfMemcKey', $args );
1781 }
1782
1783 /**
1784 * Get an temporary FileRepo associated with this repo.
1785 * Files will be created in the temp zone of this repo and
1786 * thumbnails in a /temp subdirectory in thumb zone of this repo.
1787 * It will have the same backend as this repo.
1788 *
1789 * @return TempFileRepo
1790 */
1791 public function getTempRepo() {
1792 return new TempFileRepo( array(
1793 'name' => "{$this->name}-temp",
1794 'backend' => $this->backend,
1795 'zones' => array(
1796 'public' => array(
1797 'container' => $this->zones['temp']['container'],
1798 'directory' => $this->zones['temp']['directory']
1799 ),
1800 'thumb' => array(
1801 'container' => $this->zones['thumb']['container'],
1802 'directory' => $this->zones['thumb']['directory'] == ''
1803 ? 'temp'
1804 : $this->zones['thumb']['directory'] . '/temp'
1805 ),
1806 'transcoded' => array(
1807 'container' => $this->zones['transcoded']['container'],
1808 'directory' => $this->zones['transcoded']['directory'] == ''
1809 ? 'temp'
1810 : $this->zones['transcoded']['directory'] . '/temp'
1811 )
1812 ),
1813 'url' => $this->getZoneUrl( 'temp' ),
1814 'thumbUrl' => $this->getZoneUrl( 'thumb' ) . '/temp',
1815 'transcodedUrl' => $this->getZoneUrl( 'transcoded' ) . '/temp',
1816 'hashLevels' => $this->hashLevels // performance
1817 ) );
1818 }
1819
1820 /**
1821 * Get an UploadStash associated with this repo.
1822 *
1823 * @param User $user
1824 * @return UploadStash
1825 */
1826 public function getUploadStash( User $user = null ) {
1827 return new UploadStash( $this, $user );
1828 }
1829
1830 /**
1831 * Throw an exception if this repo is read-only by design.
1832 * This does not and should not check getReadOnlyReason().
1833 *
1834 * @return void
1835 * @throws MWException
1836 */
1837 protected function assertWritableRepo() {
1838 }
1839
1840 /**
1841 * Return information about the repository.
1842 *
1843 * @return array
1844 * @since 1.22
1845 */
1846 public function getInfo() {
1847 $ret = array(
1848 'name' => $this->getName(),
1849 'displayname' => $this->getDisplayName(),
1850 'rootUrl' => $this->getZoneUrl( 'public' ),
1851 'local' => $this->isLocal(),
1852 );
1853
1854 $optionalSettings = array(
1855 'url', 'thumbUrl', 'initialCapital', 'descBaseUrl', 'scriptDirUrl', 'articleUrl',
1856 'fetchDescription', 'descriptionCacheExpiry', 'scriptExtension', 'favicon'
1857 );
1858 foreach ( $optionalSettings as $k ) {
1859 if ( isset( $this->$k ) ) {
1860 $ret[$k] = $this->$k;
1861 }
1862 }
1863
1864 return $ret;
1865 }
1866 }
1867
1868 /**
1869 * FileRepo for temporary files created via FileRepo::getTempRepo()
1870 */
1871 class TempFileRepo extends FileRepo {
1872 public function getTempRepo() {
1873 throw new MWException( "Cannot get a temp repo from a temp repo." );
1874 }
1875 }