MediaWiki  1.27.2
FileRepo.php
Go to the documentation of this file.
1 <?php
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 
48 
51 
53  protected $hasSha1Storage = false;
54 
56  protected $supportsSha1URLs = false;
57 
59  protected $backend;
60 
62  protected $zones = [];
63 
65  protected $thumbScriptUrl;
66 
69  protected $transformVia404;
70 
74  protected $descBaseUrl;
75 
79  protected $scriptDirUrl;
80 
83  protected $scriptExtension;
84 
86  protected $articleUrl;
87 
93  protected $initialCapital;
94 
100  protected $pathDisclosureProtection = 'simple';
101 
103  protected $url;
104 
106  protected $thumbUrl;
107 
109  protected $hashLevels;
110 
113 
118  protected $abbrvThreshold;
119 
121  protected $favicon;
122 
124  protected $isPrivate;
125 
127  protected $fileFactory = [ 'UnregisteredLocalFile', 'newFromTitle' ];
129  protected $oldFileFactory = false;
131  protected $fileFactoryKey = false;
133  protected $oldFileFactoryKey = false;
134 
139  public function __construct( array $info = null ) {
140  // Verify required settings presence
141  if (
142  $info === null
143  || !array_key_exists( 'name', $info )
144  || !array_key_exists( 'backend', $info )
145  ) {
146  throw new MWException( __CLASS__ .
147  " requires an array of options having both 'name' and 'backend' keys.\n" );
148  }
149 
150  // Required settings
151  $this->name = $info['name'];
152  if ( $info['backend'] instanceof FileBackend ) {
153  $this->backend = $info['backend']; // useful for testing
154  } else {
155  $this->backend = FileBackendGroup::singleton()->get( $info['backend'] );
156  }
157 
158  // Optional settings that can have no value
159  $optionalSettings = [
160  'descBaseUrl', 'scriptDirUrl', 'articleUrl', 'fetchDescription',
161  'thumbScriptUrl', 'pathDisclosureProtection', 'descriptionCacheExpiry',
162  'scriptExtension', 'favicon'
163  ];
164  foreach ( $optionalSettings as $var ) {
165  if ( isset( $info[$var] ) ) {
166  $this->$var = $info[$var];
167  }
168  }
169 
170  // Optional settings that have a default
171  $this->initialCapital = isset( $info['initialCapital'] )
172  ? $info['initialCapital']
174  $this->url = isset( $info['url'] )
175  ? $info['url']
176  : false; // a subclass may set the URL (e.g. ForeignAPIRepo)
177  if ( isset( $info['thumbUrl'] ) ) {
178  $this->thumbUrl = $info['thumbUrl'];
179  } else {
180  $this->thumbUrl = $this->url ? "{$this->url}/thumb" : false;
181  }
182  $this->hashLevels = isset( $info['hashLevels'] )
183  ? $info['hashLevels']
184  : 2;
185  $this->deletedHashLevels = isset( $info['deletedHashLevels'] )
186  ? $info['deletedHashLevels']
188  $this->transformVia404 = !empty( $info['transformVia404'] );
189  $this->abbrvThreshold = isset( $info['abbrvThreshold'] )
190  ? $info['abbrvThreshold']
191  : 255;
192  $this->isPrivate = !empty( $info['isPrivate'] );
193  // Give defaults for the basic zones...
194  $this->zones = isset( $info['zones'] ) ? $info['zones'] : [];
195  foreach ( [ 'public', 'thumb', 'transcoded', 'temp', 'deleted' ] as $zone ) {
196  if ( !isset( $this->zones[$zone]['container'] ) ) {
197  $this->zones[$zone]['container'] = "{$this->name}-{$zone}";
198  }
199  if ( !isset( $this->zones[$zone]['directory'] ) ) {
200  $this->zones[$zone]['directory'] = '';
201  }
202  if ( !isset( $this->zones[$zone]['urlsByExt'] ) ) {
203  $this->zones[$zone]['urlsByExt'] = [];
204  }
205  }
206 
207  $this->supportsSha1URLs = !empty( $info['supportsSha1URLs'] );
208  }
209 
215  public function getBackend() {
216  return $this->backend;
217  }
218 
225  public function getReadOnlyReason() {
226  return $this->backend->getReadOnlyReason();
227  }
228 
236  protected function initZones( $doZones = [] ) {
237  $status = $this->newGood();
238  foreach ( (array)$doZones as $zone ) {
239  $root = $this->getZonePath( $zone );
240  if ( $root === null ) {
241  throw new MWException( "No '$zone' zone defined in the {$this->name} repo." );
242  }
243  }
244 
245  return $status;
246  }
247 
254  public static function isVirtualUrl( $url ) {
255  return substr( $url, 0, 9 ) == 'mwrepo://';
256  }
257 
266  public function getVirtualUrl( $suffix = false ) {
267  $path = 'mwrepo://' . $this->name;
268  if ( $suffix !== false ) {
269  $path .= '/' . rawurlencode( $suffix );
270  }
271 
272  return $path;
273  }
274 
282  public function getZoneUrl( $zone, $ext = null ) {
283  if ( in_array( $zone, [ 'public', 'thumb', 'transcoded' ] ) ) {
284  // standard public zones
285  if ( $ext !== null && isset( $this->zones[$zone]['urlsByExt'][$ext] ) ) {
286  // custom URL for extension/zone
287  return $this->zones[$zone]['urlsByExt'][$ext];
288  } elseif ( isset( $this->zones[$zone]['url'] ) ) {
289  // custom URL for zone
290  return $this->zones[$zone]['url'];
291  }
292  }
293  switch ( $zone ) {
294  case 'public':
295  return $this->url;
296  case 'temp':
297  case 'deleted':
298  return false; // no public URL
299  case 'thumb':
300  return $this->thumbUrl;
301  case 'transcoded':
302  return "{$this->url}/transcoded";
303  default:
304  return false;
305  }
306  }
307 
311  public function backendSupportsUnicodePaths() {
312  return ( $this->getBackend()->getFeatures() & FileBackend::ATTR_UNICODE_PATHS );
313  }
314 
323  public function resolveVirtualUrl( $url ) {
324  if ( substr( $url, 0, 9 ) != 'mwrepo://' ) {
325  throw new MWException( __METHOD__ . ': unknown protocol' );
326  }
327  $bits = explode( '/', substr( $url, 9 ), 3 );
328  if ( count( $bits ) != 3 ) {
329  throw new MWException( __METHOD__ . ": invalid mwrepo URL: $url" );
330  }
331  list( $repo, $zone, $rel ) = $bits;
332  if ( $repo !== $this->name ) {
333  throw new MWException( __METHOD__ . ": fetching from a foreign repo is not supported" );
334  }
335  $base = $this->getZonePath( $zone );
336  if ( !$base ) {
337  throw new MWException( __METHOD__ . ": invalid zone: $zone" );
338  }
339 
340  return $base . '/' . rawurldecode( $rel );
341  }
342 
349  protected function getZoneLocation( $zone ) {
350  if ( !isset( $this->zones[$zone] ) ) {
351  return [ null, null ]; // bogus
352  }
353 
354  return [ $this->zones[$zone]['container'], $this->zones[$zone]['directory'] ];
355  }
356 
363  public function getZonePath( $zone ) {
364  list( $container, $base ) = $this->getZoneLocation( $zone );
365  if ( $container === null || $base === null ) {
366  return null;
367  }
368  $backendName = $this->backend->getName();
369  if ( $base != '' ) { // may not be set
370  $base = "/{$base}";
371  }
372 
373  return "mwstore://$backendName/{$container}{$base}";
374  }
375 
387  public function newFile( $title, $time = false ) {
389  if ( !$title ) {
390  return null;
391  }
392  if ( $time ) {
393  if ( $this->oldFileFactory ) {
394  return call_user_func( $this->oldFileFactory, $title, $this, $time );
395  } else {
396  return false;
397  }
398  } else {
399  return call_user_func( $this->fileFactory, $title, $this );
400  }
401  }
402 
420  public function findFile( $title, $options = [] ) {
422  if ( !$title ) {
423  return false;
424  }
425  if ( isset( $options['bypassCache'] ) ) {
426  $options['latest'] = $options['bypassCache']; // b/c
427  }
428  $time = isset( $options['time'] ) ? $options['time'] : false;
429  $flags = !empty( $options['latest'] ) ? File::READ_LATEST : 0;
430  # First try the current version of the file to see if it precedes the timestamp
431  $img = $this->newFile( $title );
432  if ( !$img ) {
433  return false;
434  }
435  $img->load( $flags );
436  if ( $img->exists() && ( !$time || $img->getTimestamp() == $time ) ) {
437  return $img;
438  }
439  # Now try an old version of the file
440  if ( $time !== false ) {
441  $img = $this->newFile( $title, $time );
442  if ( $img ) {
443  $img->load( $flags );
444  if ( $img->exists() ) {
445  if ( !$img->isDeleted( File::DELETED_FILE ) ) {
446  return $img; // always OK
447  } elseif ( !empty( $options['private'] ) &&
448  $img->userCan( File::DELETED_FILE,
449  $options['private'] instanceof User ? $options['private'] : null
450  )
451  ) {
452  return $img;
453  }
454  }
455  }
456  }
457 
458  # Now try redirects
459  if ( !empty( $options['ignoreRedirect'] ) ) {
460  return false;
461  }
462  $redir = $this->checkRedirect( $title );
463  if ( $redir && $title->getNamespace() == NS_FILE ) {
464  $img = $this->newFile( $redir );
465  if ( !$img ) {
466  return false;
467  }
468  $img->load( $flags );
469  if ( $img->exists() ) {
470  $img->redirectedFrom( $title->getDBkey() );
471 
472  return $img;
473  }
474  }
475 
476  return false;
477  }
478 
496  public function findFiles( array $items, $flags = 0 ) {
497  $result = [];
498  foreach ( $items as $item ) {
499  if ( is_array( $item ) ) {
500  $title = $item['title'];
501  $options = $item;
502  unset( $options['title'] );
503  } else {
504  $title = $item;
505  $options = [];
506  }
507  $file = $this->findFile( $title, $options );
508  if ( $file ) {
509  $searchName = File::normalizeTitle( $title )->getDBkey(); // must be valid
510  if ( $flags & self::NAME_AND_TIME_ONLY ) {
511  $result[$searchName] = [
512  'title' => $file->getTitle()->getDBkey(),
513  'timestamp' => $file->getTimestamp()
514  ];
515  } else {
516  $result[$searchName] = $file;
517  }
518  }
519  }
520 
521  return $result;
522  }
523 
533  public function findFileFromKey( $sha1, $options = [] ) {
534  $time = isset( $options['time'] ) ? $options['time'] : false;
535  # First try to find a matching current version of a file...
536  if ( $this->fileFactoryKey ) {
537  $img = call_user_func( $this->fileFactoryKey, $sha1, $this, $time );
538  } else {
539  return false; // find-by-sha1 not supported
540  }
541  if ( $img && $img->exists() ) {
542  return $img;
543  }
544  # Now try to find a matching old version of a file...
545  if ( $time !== false && $this->oldFileFactoryKey ) { // find-by-sha1 supported?
546  $img = call_user_func( $this->oldFileFactoryKey, $sha1, $this, $time );
547  if ( $img && $img->exists() ) {
548  if ( !$img->isDeleted( File::DELETED_FILE ) ) {
549  return $img; // always OK
550  } elseif ( !empty( $options['private'] ) &&
551  $img->userCan( File::DELETED_FILE,
552  $options['private'] instanceof User ? $options['private'] : null
553  )
554  ) {
555  return $img;
556  }
557  }
558  }
559 
560  return false;
561  }
562 
571  public function findBySha1( $hash ) {
572  return [];
573  }
574 
582  public function findBySha1s( array $hashes ) {
583  $result = [];
584  foreach ( $hashes as $hash ) {
585  $files = $this->findBySha1( $hash );
586  if ( count( $files ) ) {
587  $result[$hash] = $files;
588  }
589  }
590 
591  return $result;
592  }
593 
602  public function findFilesByPrefix( $prefix, $limit ) {
603  return [];
604  }
605 
611  public function getThumbScriptUrl() {
612  return $this->thumbScriptUrl;
613  }
614 
620  public function canTransformVia404() {
621  return $this->transformVia404;
622  }
623 
630  public function getNameFromTitle( Title $title ) {
632  if ( $this->initialCapital != MWNamespace::isCapitalized( NS_FILE ) ) {
633  $name = $title->getUserCaseDBKey();
634  if ( $this->initialCapital ) {
635  $name = $wgContLang->ucfirst( $name );
636  }
637  } else {
638  $name = $title->getDBkey();
639  }
640 
641  return $name;
642  }
643 
649  public function getRootDirectory() {
650  return $this->getZonePath( 'public' );
651  }
652 
660  public function getHashPath( $name ) {
661  return self::getHashPathForLevel( $name, $this->hashLevels );
662  }
663 
671  public function getTempHashPath( $suffix ) {
672  $parts = explode( '!', $suffix, 2 ); // format is <timestamp>!<name> or just <name>
673  $name = isset( $parts[1] ) ? $parts[1] : $suffix; // hash path is not based on timestamp
674  return self::getHashPathForLevel( $name, $this->hashLevels );
675  }
676 
682  protected static function getHashPathForLevel( $name, $levels ) {
683  if ( $levels == 0 ) {
684  return '';
685  } else {
686  $hash = md5( $name );
687  $path = '';
688  for ( $i = 1; $i <= $levels; $i++ ) {
689  $path .= substr( $hash, 0, $i ) . '/';
690  }
691 
692  return $path;
693  }
694  }
695 
701  public function getHashLevels() {
702  return $this->hashLevels;
703  }
704 
710  public function getName() {
711  return $this->name;
712  }
713 
721  public function makeUrl( $query = '', $entry = 'index' ) {
722  if ( isset( $this->scriptDirUrl ) ) {
723  $ext = isset( $this->scriptExtension ) ? $this->scriptExtension : '.php';
724 
725  return wfAppendQuery( "{$this->scriptDirUrl}/{$entry}{$ext}", $query );
726  }
727 
728  return false;
729  }
730 
743  public function getDescriptionUrl( $name ) {
744  $encName = wfUrlencode( $name );
745  if ( !is_null( $this->descBaseUrl ) ) {
746  # "http://example.com/wiki/File:"
747  return $this->descBaseUrl . $encName;
748  }
749  if ( !is_null( $this->articleUrl ) ) {
750  # "http://example.com/wiki/$1"
751  # We use "Image:" as the canonical namespace for
752  # compatibility across all MediaWiki versions.
753  return str_replace( '$1',
754  "Image:$encName", $this->articleUrl );
755  }
756  if ( !is_null( $this->scriptDirUrl ) ) {
757  # "http://example.com/w"
758  # We use "Image:" as the canonical namespace for
759  # compatibility across all MediaWiki versions,
760  # and just sort of hope index.php is right. ;)
761  return $this->makeUrl( "title=Image:$encName" );
762  }
763 
764  return false;
765  }
766 
777  public function getDescriptionRenderUrl( $name, $lang = null ) {
778  $query = 'action=render';
779  if ( !is_null( $lang ) ) {
780  $query .= '&uselang=' . $lang;
781  }
782  if ( isset( $this->scriptDirUrl ) ) {
783  return $this->makeUrl(
784  'title=' .
785  wfUrlencode( 'Image:' . $name ) .
786  "&$query" );
787  } else {
788  $descUrl = $this->getDescriptionUrl( $name );
789  if ( $descUrl ) {
790  return wfAppendQuery( $descUrl, $query );
791  } else {
792  return false;
793  }
794  }
795  }
796 
802  public function getDescriptionStylesheetUrl() {
803  if ( isset( $this->scriptDirUrl ) ) {
804  return $this->makeUrl( 'title=MediaWiki:Filepage.css&' .
806  }
807 
808  return false;
809  }
810 
825  public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
826  $this->assertWritableRepo(); // fail out if read-only
827 
828  $status = $this->storeBatch( [ [ $srcPath, $dstZone, $dstRel ] ], $flags );
829  if ( $status->successCount == 0 ) {
830  $status->ok = false;
831  }
832 
833  return $status;
834  }
835 
849  public function storeBatch( array $triplets, $flags = 0 ) {
850  $this->assertWritableRepo(); // fail out if read-only
851 
852  $status = $this->newGood();
853  $backend = $this->backend; // convenience
854 
855  $operations = [];
856  $sourceFSFilesToDelete = []; // cleanup for disk source files
857  // Validate each triplet and get the store operation...
858  foreach ( $triplets as $triplet ) {
859  list( $srcPath, $dstZone, $dstRel ) = $triplet;
860  wfDebug( __METHOD__
861  . "( \$src='$srcPath', \$dstZone='$dstZone', \$dstRel='$dstRel' )\n"
862  );
863 
864  // Resolve destination path
865  $root = $this->getZonePath( $dstZone );
866  if ( !$root ) {
867  throw new MWException( "Invalid zone: $dstZone" );
868  }
869  if ( !$this->validateFilename( $dstRel ) ) {
870  throw new MWException( 'Validation error in $dstRel' );
871  }
872  $dstPath = "$root/$dstRel";
873  $dstDir = dirname( $dstPath );
874  // Create destination directories for this triplet
875  if ( !$this->initDirectory( $dstDir )->isOK() ) {
876  return $this->newFatal( 'directorycreateerror', $dstDir );
877  }
878 
879  // Resolve source to a storage path if virtual
880  $srcPath = $this->resolveToStoragePath( $srcPath );
881 
882  // Get the appropriate file operation
883  if ( FileBackend::isStoragePath( $srcPath ) ) {
884  $opName = ( $flags & self::DELETE_SOURCE ) ? 'move' : 'copy';
885  } else {
886  $opName = 'store';
887  if ( $flags & self::DELETE_SOURCE ) {
888  $sourceFSFilesToDelete[] = $srcPath;
889  }
890  }
891  $operations[] = [
892  'op' => $opName,
893  'src' => $srcPath,
894  'dst' => $dstPath,
895  'overwrite' => $flags & self::OVERWRITE,
896  'overwriteSame' => $flags & self::OVERWRITE_SAME,
897  ];
898  }
899 
900  // Execute the store operation for each triplet
901  $opts = [ 'force' => true ];
902  if ( $flags & self::SKIP_LOCKING ) {
903  $opts['nonLocking'] = true;
904  }
905  $status->merge( $backend->doOperations( $operations, $opts ) );
906  // Cleanup for disk source files...
907  foreach ( $sourceFSFilesToDelete as $file ) {
908  MediaWiki\suppressWarnings();
909  unlink( $file ); // FS cleanup
910  MediaWiki\restoreWarnings();
911  }
912 
913  return $status;
914  }
915 
926  public function cleanupBatch( array $files, $flags = 0 ) {
927  $this->assertWritableRepo(); // fail out if read-only
928 
929  $status = $this->newGood();
930 
931  $operations = [];
932  foreach ( $files as $path ) {
933  if ( is_array( $path ) ) {
934  // This is a pair, extract it
935  list( $zone, $rel ) = $path;
936  $path = $this->getZonePath( $zone ) . "/$rel";
937  } else {
938  // Resolve source to a storage path if virtual
939  $path = $this->resolveToStoragePath( $path );
940  }
941  $operations[] = [ 'op' => 'delete', 'src' => $path ];
942  }
943  // Actually delete files from storage...
944  $opts = [ 'force' => true ];
945  if ( $flags & self::SKIP_LOCKING ) {
946  $opts['nonLocking'] = true;
947  }
948  $status->merge( $this->backend->doOperations( $operations, $opts ) );
949 
950  return $status;
951  }
952 
966  final public function quickImport( $src, $dst, $options = null ) {
967  return $this->quickImportBatch( [ [ $src, $dst, $options ] ] );
968  }
969 
978  final public function quickPurge( $path ) {
979  return $this->quickPurgeBatch( [ $path ] );
980  }
981 
989  public function quickCleanDir( $dir ) {
990  $status = $this->newGood();
991  $status->merge( $this->backend->clean(
992  [ 'dir' => $this->resolveToStoragePath( $dir ) ] ) );
993 
994  return $status;
995  }
996 
1009  public function quickImportBatch( array $triples ) {
1010  $status = $this->newGood();
1011  $operations = [];
1012  foreach ( $triples as $triple ) {
1013  list( $src, $dst ) = $triple;
1014  if ( $src instanceof FSFile ) {
1015  $op = 'store';
1016  } else {
1017  $src = $this->resolveToStoragePath( $src );
1018  $op = FileBackend::isStoragePath( $src ) ? 'copy' : 'store';
1019  }
1020  $dst = $this->resolveToStoragePath( $dst );
1021 
1022  if ( !isset( $triple[2] ) ) {
1023  $headers = [];
1024  } elseif ( is_string( $triple[2] ) ) {
1025  // back-compat
1026  $headers = [ 'Content-Disposition' => $triple[2] ];
1027  } elseif ( is_array( $triple[2] ) && isset( $triple[2]['headers'] ) ) {
1028  $headers = $triple[2]['headers'];
1029  } else {
1030  $headers = [];
1031  }
1032 
1033  $operations[] = [
1034  'op' => $op,
1035  'src' => $src,
1036  'dst' => $dst,
1037  'headers' => $headers
1038  ];
1039  $status->merge( $this->initDirectory( dirname( $dst ) ) );
1040  }
1041  $status->merge( $this->backend->doQuickOperations( $operations ) );
1042 
1043  return $status;
1044  }
1045 
1054  public function quickPurgeBatch( array $paths ) {
1055  $status = $this->newGood();
1056  $operations = [];
1057  foreach ( $paths as $path ) {
1058  $operations[] = [
1059  'op' => 'delete',
1060  'src' => $this->resolveToStoragePath( $path ),
1061  'ignoreMissingSource' => true
1062  ];
1063  }
1064  $status->merge( $this->backend->doQuickOperations( $operations ) );
1065 
1066  return $status;
1067  }
1068 
1079  public function storeTemp( $originalName, $srcPath ) {
1080  $this->assertWritableRepo(); // fail out if read-only
1081 
1082  $date = MWTimestamp::getInstance()->format( 'YmdHis' );
1083  $hashPath = $this->getHashPath( $originalName );
1084  $dstUrlRel = $hashPath . $date . '!' . rawurlencode( $originalName );
1085  $virtualUrl = $this->getVirtualUrl( 'temp' ) . '/' . $dstUrlRel;
1086 
1087  $result = $this->quickImport( $srcPath, $virtualUrl );
1088  $result->value = $virtualUrl;
1089 
1090  return $result;
1091  }
1092 
1099  public function freeTemp( $virtualUrl ) {
1100  $this->assertWritableRepo(); // fail out if read-only
1101 
1102  $temp = $this->getVirtualUrl( 'temp' );
1103  if ( substr( $virtualUrl, 0, strlen( $temp ) ) != $temp ) {
1104  wfDebug( __METHOD__ . ": Invalid temp virtual URL\n" );
1105 
1106  return false;
1107  }
1108 
1109  return $this->quickPurge( $virtualUrl )->isOK();
1110  }
1111 
1121  public function concatenate( array $srcPaths, $dstPath, $flags = 0 ) {
1122  $this->assertWritableRepo(); // fail out if read-only
1123 
1124  $status = $this->newGood();
1125 
1126  $sources = [];
1127  foreach ( $srcPaths as $srcPath ) {
1128  // Resolve source to a storage path if virtual
1129  $source = $this->resolveToStoragePath( $srcPath );
1130  $sources[] = $source; // chunk to merge
1131  }
1132 
1133  // Concatenate the chunks into one FS file
1134  $params = [ 'srcs' => $sources, 'dst' => $dstPath ];
1135  $status->merge( $this->backend->concatenate( $params ) );
1136  if ( !$status->isOK() ) {
1137  return $status;
1138  }
1139 
1140  // Delete the sources if required
1141  if ( $flags & self::DELETE_SOURCE ) {
1142  $status->merge( $this->quickPurgeBatch( $srcPaths ) );
1143  }
1144 
1145  // Make sure status is OK, despite any quickPurgeBatch() fatals
1146  $status->setResult( true );
1147 
1148  return $status;
1149  }
1150 
1170  public function publish(
1171  $src, $dstRel, $archiveRel, $flags = 0, array $options = []
1172  ) {
1173  $this->assertWritableRepo(); // fail out if read-only
1174 
1175  $status = $this->publishBatch(
1176  [ [ $src, $dstRel, $archiveRel, $options ] ], $flags );
1177  if ( $status->successCount == 0 ) {
1178  $status->ok = false;
1179  }
1180  if ( isset( $status->value[0] ) ) {
1181  $status->value = $status->value[0];
1182  } else {
1183  $status->value = false;
1184  }
1185 
1186  return $status;
1187  }
1188 
1199  public function publishBatch( array $ntuples, $flags = 0 ) {
1200  $this->assertWritableRepo(); // fail out if read-only
1201 
1202  $backend = $this->backend; // convenience
1203  // Try creating directories
1204  $status = $this->initZones( 'public' );
1205  if ( !$status->isOK() ) {
1206  return $status;
1207  }
1208 
1209  $status = $this->newGood( [] );
1210 
1211  $operations = [];
1212  $sourceFSFilesToDelete = []; // cleanup for disk source files
1213  // Validate each triplet and get the store operation...
1214  foreach ( $ntuples as $ntuple ) {
1215  list( $src, $dstRel, $archiveRel ) = $ntuple;
1216  $srcPath = ( $src instanceof FSFile ) ? $src->getPath() : $src;
1217 
1218  $options = isset( $ntuple[3] ) ? $ntuple[3] : [];
1219  // Resolve source to a storage path if virtual
1220  $srcPath = $this->resolveToStoragePath( $srcPath );
1221  if ( !$this->validateFilename( $dstRel ) ) {
1222  throw new MWException( 'Validation error in $dstRel' );
1223  }
1224  if ( !$this->validateFilename( $archiveRel ) ) {
1225  throw new MWException( 'Validation error in $archiveRel' );
1226  }
1227 
1228  $publicRoot = $this->getZonePath( 'public' );
1229  $dstPath = "$publicRoot/$dstRel";
1230  $archivePath = "$publicRoot/$archiveRel";
1231 
1232  $dstDir = dirname( $dstPath );
1233  $archiveDir = dirname( $archivePath );
1234  // Abort immediately on directory creation errors since they're likely to be repetitive
1235  if ( !$this->initDirectory( $dstDir )->isOK() ) {
1236  return $this->newFatal( 'directorycreateerror', $dstDir );
1237  }
1238  if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1239  return $this->newFatal( 'directorycreateerror', $archiveDir );
1240  }
1241 
1242  // Set any desired headers to be use in GET/HEAD responses
1243  $headers = isset( $options['headers'] ) ? $options['headers'] : [];
1244 
1245  // Archive destination file if it exists.
1246  // This will check if the archive file also exists and fail if does.
1247  // This is a sanity check to avoid data loss. On Windows and Linux,
1248  // copy() will overwrite, so the existence check is vulnerable to
1249  // race conditions unless a functioning LockManager is used.
1250  // LocalFile also uses SELECT FOR UPDATE for synchronization.
1251  $operations[] = [
1252  'op' => 'copy',
1253  'src' => $dstPath,
1254  'dst' => $archivePath,
1255  'ignoreMissingSource' => true
1256  ];
1257 
1258  // Copy (or move) the source file to the destination
1259  if ( FileBackend::isStoragePath( $srcPath ) ) {
1260  if ( $flags & self::DELETE_SOURCE ) {
1261  $operations[] = [
1262  'op' => 'move',
1263  'src' => $srcPath,
1264  'dst' => $dstPath,
1265  'overwrite' => true, // replace current
1266  'headers' => $headers
1267  ];
1268  } else {
1269  $operations[] = [
1270  'op' => 'copy',
1271  'src' => $srcPath,
1272  'dst' => $dstPath,
1273  'overwrite' => true, // replace current
1274  'headers' => $headers
1275  ];
1276  }
1277  } else { // FS source path
1278  $operations[] = [
1279  'op' => 'store',
1280  'src' => $src, // prefer FSFile objects
1281  'dst' => $dstPath,
1282  'overwrite' => true, // replace current
1283  'headers' => $headers
1284  ];
1285  if ( $flags & self::DELETE_SOURCE ) {
1286  $sourceFSFilesToDelete[] = $srcPath;
1287  }
1288  }
1289  }
1290 
1291  // Execute the operations for each triplet
1292  $status->merge( $backend->doOperations( $operations ) );
1293  // Find out which files were archived...
1294  foreach ( $ntuples as $i => $ntuple ) {
1295  list( , , $archiveRel ) = $ntuple;
1296  $archivePath = $this->getZonePath( 'public' ) . "/$archiveRel";
1297  if ( $this->fileExists( $archivePath ) ) {
1298  $status->value[$i] = 'archived';
1299  } else {
1300  $status->value[$i] = 'new';
1301  }
1302  }
1303  // Cleanup for disk source files...
1304  foreach ( $sourceFSFilesToDelete as $file ) {
1305  MediaWiki\suppressWarnings();
1306  unlink( $file ); // FS cleanup
1307  MediaWiki\restoreWarnings();
1308  }
1309 
1310  return $status;
1311  }
1312 
1320  protected function initDirectory( $dir ) {
1321  $path = $this->resolveToStoragePath( $dir );
1322  list( , $container, ) = FileBackend::splitStoragePath( $path );
1323 
1324  $params = [ 'dir' => $path ];
1325  if ( $this->isPrivate
1326  || $container === $this->zones['deleted']['container']
1327  || $container === $this->zones['temp']['container']
1328  ) {
1329  # Take all available measures to prevent web accessibility of new deleted
1330  # directories, in case the user has not configured offline storage
1331  $params = [ 'noAccess' => true, 'noListing' => true ] + $params;
1332  }
1333 
1334  return $this->backend->prepare( $params );
1335  }
1336 
1343  public function cleanDir( $dir ) {
1344  $this->assertWritableRepo(); // fail out if read-only
1345 
1346  $status = $this->newGood();
1347  $status->merge( $this->backend->clean(
1348  [ 'dir' => $this->resolveToStoragePath( $dir ) ] ) );
1349 
1350  return $status;
1351  }
1352 
1359  public function fileExists( $file ) {
1360  $result = $this->fileExistsBatch( [ $file ] );
1361 
1362  return $result[0];
1363  }
1364 
1371  public function fileExistsBatch( array $files ) {
1372  $paths = array_map( [ $this, 'resolveToStoragePath' ], $files );
1373  $this->backend->preloadFileStat( [ 'srcs' => $paths ] );
1374 
1375  $result = [];
1376  foreach ( $files as $key => $file ) {
1377  $path = $this->resolveToStoragePath( $file );
1378  $result[$key] = $this->backend->fileExists( [ 'src' => $path ] );
1379  }
1380 
1381  return $result;
1382  }
1383 
1394  public function delete( $srcRel, $archiveRel ) {
1395  $this->assertWritableRepo(); // fail out if read-only
1396 
1397  return $this->deleteBatch( [ [ $srcRel, $archiveRel ] ] );
1398  }
1399 
1417  public function deleteBatch( array $sourceDestPairs ) {
1418  $this->assertWritableRepo(); // fail out if read-only
1419 
1420  // Try creating directories
1421  $status = $this->initZones( [ 'public', 'deleted' ] );
1422  if ( !$status->isOK() ) {
1423  return $status;
1424  }
1425 
1426  $status = $this->newGood();
1427 
1428  $backend = $this->backend; // convenience
1429  $operations = [];
1430  // Validate filenames and create archive directories
1431  foreach ( $sourceDestPairs as $pair ) {
1432  list( $srcRel, $archiveRel ) = $pair;
1433  if ( !$this->validateFilename( $srcRel ) ) {
1434  throw new MWException( __METHOD__ . ':Validation error in $srcRel' );
1435  } elseif ( !$this->validateFilename( $archiveRel ) ) {
1436  throw new MWException( __METHOD__ . ':Validation error in $archiveRel' );
1437  }
1438 
1439  $publicRoot = $this->getZonePath( 'public' );
1440  $srcPath = "{$publicRoot}/$srcRel";
1441 
1442  $deletedRoot = $this->getZonePath( 'deleted' );
1443  $archivePath = "{$deletedRoot}/{$archiveRel}";
1444  $archiveDir = dirname( $archivePath ); // does not touch FS
1445 
1446  // Create destination directories
1447  if ( !$this->initDirectory( $archiveDir )->isOK() ) {
1448  return $this->newFatal( 'directorycreateerror', $archiveDir );
1449  }
1450 
1451  $operations[] = [
1452  'op' => 'move',
1453  'src' => $srcPath,
1454  'dst' => $archivePath,
1455  // We may have 2+ identical files being deleted,
1456  // all of which will map to the same destination file
1457  'overwriteSame' => true // also see bug 31792
1458  ];
1459  }
1460 
1461  // Move the files by execute the operations for each pair.
1462  // We're now committed to returning an OK result, which will
1463  // lead to the files being moved in the DB also.
1464  $opts = [ 'force' => true ];
1465  $status->merge( $backend->doOperations( $operations, $opts ) );
1466 
1467  return $status;
1468  }
1469 
1476  public function cleanupDeletedBatch( array $storageKeys ) {
1477  $this->assertWritableRepo();
1478  }
1479 
1488  public function getDeletedHashPath( $key ) {
1489  if ( strlen( $key ) < 31 ) {
1490  throw new MWException( "Invalid storage key '$key'." );
1491  }
1492  $path = '';
1493  for ( $i = 0; $i < $this->deletedHashLevels; $i++ ) {
1494  $path .= $key[$i] . '/';
1495  }
1496 
1497  return $path;
1498  }
1499 
1508  protected function resolveToStoragePath( $path ) {
1509  if ( $this->isVirtualUrl( $path ) ) {
1510  return $this->resolveVirtualUrl( $path );
1511  }
1512 
1513  return $path;
1514  }
1515 
1523  public function getLocalCopy( $virtualUrl ) {
1524  $path = $this->resolveToStoragePath( $virtualUrl );
1525 
1526  return $this->backend->getLocalCopy( [ 'src' => $path ] );
1527  }
1528 
1537  public function getLocalReference( $virtualUrl ) {
1538  $path = $this->resolveToStoragePath( $virtualUrl );
1539 
1540  return $this->backend->getLocalReference( [ 'src' => $path ] );
1541  }
1542 
1550  public function getFileProps( $virtualUrl ) {
1551  $path = $this->resolveToStoragePath( $virtualUrl );
1552 
1553  return $this->backend->getFileProps( [ 'src' => $path ] );
1554  }
1555 
1562  public function getFileTimestamp( $virtualUrl ) {
1563  $path = $this->resolveToStoragePath( $virtualUrl );
1564 
1565  return $this->backend->getFileTimestamp( [ 'src' => $path ] );
1566  }
1567 
1574  public function getFileSize( $virtualUrl ) {
1575  $path = $this->resolveToStoragePath( $virtualUrl );
1576 
1577  return $this->backend->getFileSize( [ 'src' => $path ] );
1578  }
1579 
1586  public function getFileSha1( $virtualUrl ) {
1587  $path = $this->resolveToStoragePath( $virtualUrl );
1588 
1589  return $this->backend->getFileSha1Base36( [ 'src' => $path ] );
1590  }
1591 
1600  public function streamFileWithStatus( $virtualUrl, $headers = [] ) {
1601  $path = $this->resolveToStoragePath( $virtualUrl );
1602  $params = [ 'src' => $path, 'headers' => $headers ];
1603 
1604  return $this->backend->streamFile( $params );
1605  }
1606 
1615  public function streamFile( $virtualUrl, $headers = [] ) {
1616  return $this->streamFileWithStatus( $virtualUrl, $headers )->isOK();
1617  }
1618 
1627  public function enumFiles( $callback ) {
1628  $this->enumFilesInStorage( $callback );
1629  }
1630 
1638  protected function enumFilesInStorage( $callback ) {
1639  $publicRoot = $this->getZonePath( 'public' );
1640  $numDirs = 1 << ( $this->hashLevels * 4 );
1641  // Use a priori assumptions about directory structure
1642  // to reduce the tree height of the scanning process.
1643  for ( $flatIndex = 0; $flatIndex < $numDirs; $flatIndex++ ) {
1644  $hexString = sprintf( "%0{$this->hashLevels}x", $flatIndex );
1645  $path = $publicRoot;
1646  for ( $hexPos = 0; $hexPos < $this->hashLevels; $hexPos++ ) {
1647  $path .= '/' . substr( $hexString, 0, $hexPos + 1 );
1648  }
1649  $iterator = $this->backend->getFileList( [ 'dir' => $path ] );
1650  foreach ( $iterator as $name ) {
1651  // Each item returned is a public file
1652  call_user_func( $callback, "{$path}/{$name}" );
1653  }
1654  }
1655  }
1656 
1663  public function validateFilename( $filename ) {
1664  if ( strval( $filename ) == '' ) {
1665  return false;
1666  }
1667 
1668  return FileBackend::isPathTraversalFree( $filename );
1669  }
1670 
1677  switch ( $this->pathDisclosureProtection ) {
1678  case 'none':
1679  case 'simple': // b/c
1680  $callback = [ $this, 'passThrough' ];
1681  break;
1682  default: // 'paranoid'
1683  $callback = [ $this, 'paranoidClean' ];
1684  }
1685  return $callback;
1686  }
1687 
1694  function paranoidClean( $param ) {
1695  return '[hidden]';
1696  }
1697 
1704  function passThrough( $param ) {
1705  return $param;
1706  }
1707 
1714  public function newFatal( $message /*, parameters...*/ ) {
1715  $status = call_user_func_array( [ 'Status', 'newFatal' ], func_get_args() );
1716  $status->cleanCallback = $this->getErrorCleanupFunction();
1717 
1718  return $status;
1719  }
1720 
1727  public function newGood( $value = null ) {
1729  $status->cleanCallback = $this->getErrorCleanupFunction();
1730 
1731  return $status;
1732  }
1733 
1742  public function checkRedirect( Title $title ) {
1743  return false;
1744  }
1745 
1753  public function invalidateImageRedirect( Title $title ) {
1754  }
1755 
1761  public function getDisplayName() {
1763 
1764  if ( $this->isLocal() ) {
1765  return $wgSitename;
1766  }
1767 
1768  // 'shared-repo-name-wikimediacommons' is used when $wgUseInstantCommons = true
1769  return wfMessageFallback( 'shared-repo-name-' . $this->name, 'shared-repo' )->text();
1770  }
1771 
1779  public function nameForThumb( $name ) {
1780  if ( strlen( $name ) > $this->abbrvThreshold ) {
1782  $name = ( $ext == '' ) ? 'thumbnail' : "thumbnail.$ext";
1783  }
1784 
1785  return $name;
1786  }
1787 
1793  public function isLocal() {
1794  return $this->getName() == 'local';
1795  }
1796 
1805  public function getSharedCacheKey( /*...*/ ) {
1806  return false;
1807  }
1808 
1816  public function getLocalCacheKey( /*...*/ ) {
1817  $args = func_get_args();
1818  array_unshift( $args, 'filerepo', $this->getName() );
1819 
1820  return call_user_func_array( 'wfMemcKey', $args );
1821  }
1822 
1831  public function getTempRepo() {
1832  return new TempFileRepo( [
1833  'name' => "{$this->name}-temp",
1834  'backend' => $this->backend,
1835  'zones' => [
1836  'public' => [
1837  // Same place storeTemp() uses in the base repo, though
1838  // the path hashing is mismatched, which is annoying.
1839  'container' => $this->zones['temp']['container'],
1840  'directory' => $this->zones['temp']['directory']
1841  ],
1842  'thumb' => [
1843  'container' => $this->zones['temp']['container'],
1844  'directory' => $this->zones['temp']['directory'] == ''
1845  ? 'thumb'
1846  : $this->zones['temp']['directory'] . '/thumb'
1847  ],
1848  'transcoded' => [
1849  'container' => $this->zones['temp']['container'],
1850  'directory' => $this->zones['temp']['directory'] == ''
1851  ? 'transcoded'
1852  : $this->zones['temp']['directory'] . '/transcoded'
1853  ]
1854  ],
1855  'hashLevels' => $this->hashLevels, // performance
1856  'isPrivate' => true // all in temp zone
1857  ] );
1858  }
1859 
1866  public function getUploadStash( User $user = null ) {
1867  return new UploadStash( $this, $user );
1868  }
1869 
1877  protected function assertWritableRepo() {
1878  }
1879 
1886  public function getInfo() {
1887  $ret = [
1888  'name' => $this->getName(),
1889  'displayname' => $this->getDisplayName(),
1890  'rootUrl' => $this->getZoneUrl( 'public' ),
1891  'local' => $this->isLocal(),
1892  ];
1893 
1894  $optionalSettings = [
1895  'url', 'thumbUrl', 'initialCapital', 'descBaseUrl', 'scriptDirUrl', 'articleUrl',
1896  'fetchDescription', 'descriptionCacheExpiry', 'scriptExtension', 'favicon'
1897  ];
1898  foreach ( $optionalSettings as $k ) {
1899  if ( isset( $this->$k ) ) {
1900  $ret[$k] = $this->$k;
1901  }
1902  }
1903 
1904  return $ret;
1905  }
1906 
1911  public function hasSha1Storage() {
1912  return $this->hasSha1Storage;
1913  }
1914 
1919  public function supportsSha1URLs() {
1920  return $this->supportsSha1URLs;
1921  }
1922 }
1923 
1927 class TempFileRepo extends FileRepo {
1928  public function getTempRepo() {
1929  throw new MWException( "Cannot get a temp repo from a temp repo." );
1930  }
1931 }
initZones($doZones=[])
Check if a single zone or list of zones is defined for usage.
Definition: FileRepo.php:236
string $favicon
The URL of the repo's favicon, if any.
Definition: FileRepo.php:121
assertWritableRepo()
Throw an exception if this repo is read-only by design.
Definition: FileRepo.php:1877
getHashPath($name)
Get a relative path including trailing slash, e.g.
Definition: FileRepo.php:660
bool $fetchDescription
Whether to fetch commons image description pages and display them on the local wiki.
Definition: FileRepo.php:47
string $scriptDirUrl
URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g.
Definition: FileRepo.php:79
static normalizeTitle($title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null...
Definition: File.php:183
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
int $abbrvThreshold
File names over this size will use the short form of thumbnail names.
Definition: FileRepo.php:118
getVirtualUrl($suffix=false)
Get a URL referring to this repository, with the private mwrepo protocol.
Definition: FileRepo.php:266
enumFiles($callback)
Call a callback function for every public regular file in the repository.
Definition: FileRepo.php:1627
the array() calling protocol came about after MediaWiki 1.4rc1.
array $zones
Map of zones to config.
Definition: FileRepo.php:62
static getHashPathForLevel($name, $levels)
Definition: FileRepo.php:682
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1418
canTransformVia404()
Returns true if the repository can transform files via a 404 handler.
Definition: FileRepo.php:620
getTempRepo()
Get a temporary private FileRepo associated with this repo.
Definition: FileRepo.php:1831
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
doOperations(array $ops, array $opts=[])
This is the main entry point into the backend for write operations.
getUserCaseDBKey()
Get the DB key with the initial letter case as specified by the user.
Definition: Title.php:920
if(count($args)==0) $dir
string $pathDisclosureProtection
May be 'paranoid' to remove all parameters from error messages, 'none' to leave the paths in unchange...
Definition: FileRepo.php:100
$wgSitename
Name of the site.
getRootDirectory()
Get the public zone root storage directory of the repository.
Definition: FileRepo.php:649
getUploadStash(User $user=null)
Get an UploadStash associated with this repo.
Definition: FileRepo.php:1866
streamFile($virtualUrl, $headers=[])
Attempt to stream a file with the given virtual URL/storage path.
Definition: FileRepo.php:1615
quickPurge($path)
Purge a file from the repo.
Definition: FileRepo.php:978
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:1798
if(!isset($args[0])) $lang
const DELETE_SOURCE
Definition: FileRepo.php:38
passThrough($param)
Path disclosure protection function.
Definition: FileRepo.php:1704
resolveToStoragePath($path)
If a path is a virtual URL, resolve it to a storage path.
Definition: FileRepo.php:1508
getZoneLocation($zone)
The the storage container and base path of a zone.
Definition: FileRepo.php:349
checkRedirect(Title $title)
Checks if there is a redirect named as $title.
Definition: FileRepo.php:1742
$source
$value
getLocalCacheKey()
Get a key for this repo in the local cache domain.
Definition: FileRepo.php:1816
getLocalCopy($virtualUrl)
Get a local FS copy of a file with a given virtual URL/storage path.
Definition: FileRepo.php:1523
getDescriptionRenderUrl($name, $lang=null)
Get the URL of the content-only fragment of the description page.
Definition: FileRepo.php:777
static isVirtualUrl($url)
Determine if a string is an mwrepo:// URL.
Definition: FileRepo.php:254
wfMessageFallback()
This function accepts multiple message keys and returns a message instance for the first message whic...
$files
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2548
initDirectory($dir)
Creates a directory with the appropriate zone permissions.
Definition: FileRepo.php:1320
getHashLevels()
Get the number of hash directory levels.
Definition: FileRepo.php:701
store($srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
Definition: FileRepo.php:825
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
resolveVirtualUrl($url)
Get the backend storage path corresponding to a virtual URL.
Definition: FileRepo.php:323
Represents a title within MediaWiki.
Definition: Title.php:34
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
freeTemp($virtualUrl)
Remove a temporary file or mark it for garbage collection.
Definition: FileRepo.php:1099
static extensionFromPath($path, $case= 'lowercase')
Get the final extension from a storage or FS path.
getTempHashPath($suffix)
Get a relative path including trailing slash, e.g.
Definition: FileRepo.php:671
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1612
paranoidClean($param)
Path disclosure protection function.
Definition: FileRepo.php:1694
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
cleanupDeletedBatch(array $storageKeys)
Delete files in the deleted directory if they are not referenced in the filearchive table...
Definition: FileRepo.php:1476
const DELETED_FILE
Definition: File.php:52
getBackend()
Get the file backend instance.
Definition: FileRepo.php:215
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1796
if($line===false) $args
Definition: cdb.php:64
static isCapitalized($index)
Is the namespace first-letter capitalized?
makeUrl($query= '', $entry= 'index')
Make an url to this repo.
Definition: FileRepo.php:721
getFileTimestamp($virtualUrl)
Get the timestamp of a file with a given virtual URL/storage path.
Definition: FileRepo.php:1562
array $oldFileFactoryKey
callable|bool Override these in the base class
Definition: FileRepo.php:133
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1798
streamFileWithStatus($virtualUrl, $headers=[])
Attempt to stream a file with the given virtual URL/storage path.
Definition: FileRepo.php:1600
const OVERWRITE
Definition: FileRepo.php:39
getFileSha1($virtualUrl)
Get the sha1 (base 36) of a file with a given virtual URL/storage path.
Definition: FileRepo.php:1586
string $scriptExtension
Script extension of the MediaWiki installation, equivalent to the old $wgScriptExtension, e.g.
Definition: FileRepo.php:83
isLocal()
Returns true if this the local file repository.
Definition: FileRepo.php:1793
getReadOnlyReason()
Get an explanatory message if this repo is read-only.
Definition: FileRepo.php:225
getInfo()
Return information about the repository.
Definition: FileRepo.php:1886
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
string $thumbScriptUrl
URL of thumb.php.
Definition: FileRepo.php:65
getDescriptionStylesheetUrl()
Get the URL of the stylesheet to apply to description pages.
Definition: FileRepo.php:802
getDBkey()
Get the main part with underscores.
Definition: Title.php:911
quickPurgeBatch(array $paths)
Purge a batch of files from the repo.
Definition: FileRepo.php:1054
bool $url
Public zone URL.
Definition: FileRepo.php:103
storeTemp($originalName, $srcPath)
Pick a random name in the temp zone and store a file to it.
Definition: FileRepo.php:1079
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1004
getErrorCleanupFunction()
Get a callback function to use for cleaning error message parameters.
Definition: FileRepo.php:1676
static getInstance($ts=false)
Get a timestamp instance in GMT.
invalidateImageRedirect(Title $title)
Invalidates image redirect cache related to that image Doesn't do anything for repositories that don'...
Definition: FileRepo.php:1753
static isStoragePath($path)
Check if a given path is a "mwstore://" path.
concatenate(array $srcPaths, $dstPath, $flags=0)
Concatenate a list of temporary files into a target file location.
Definition: FileRepo.php:1121
deleteBatch(array $sourceDestPairs)
Move a group of files to the deletion archive.
Definition: FileRepo.php:1417
int $hashLevels
The number of directory levels for hash-based division of files.
Definition: FileRepo.php:109
getThumbScriptUrl()
Get the URL of thumb.php.
Definition: FileRepo.php:611
bool $initialCapital
Equivalent to $wgCapitalLinks (or $wgCapitalLinkOverrides[NS_FILE], determines whether filenames impl...
Definition: FileRepo.php:93
newFile($title, $time=false)
Create a new File object from the local repository.
Definition: FileRepo.php:387
getSharedCacheKey()
Get a key on the primary cache for this repository.
Definition: FileRepo.php:1805
nameForThumb($name)
Get the portion of the file that contains the origin file name.
Definition: FileRepo.php:1779
$params
string $articleUrl
Equivalent to $wgArticlePath, e.g.
Definition: FileRepo.php:86
string $thumbUrl
The base thumbnail URL.
Definition: FileRepo.php:106
findFile($title, $options=[])
Find an instance of the named file created at the specified time Returns false if the file does not e...
Definition: FileRepo.php:420
quickImport($src, $dst, $options=null)
Import a file from the local file system into the repo.
Definition: FileRepo.php:966
const ATTR_UNICODE_PATHS
validateFilename($filename)
Determine if a relative path is valid, i.e.
Definition: FileRepo.php:1663
const SKIP_LOCKING
Definition: FileRepo.php:41
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
findFiles(array $items, $flags=0)
Find many files at once.
Definition: FileRepo.php:496
fileExists($file)
Checks existence of a a file.
Definition: FileRepo.php:1359
const NS_FILE
Definition: Defines.php:75
findFileFromKey($sha1, $options=[])
Find an instance of the file with this key, created at the specified time Returns false if the file d...
Definition: FileRepo.php:533
bool $hasSha1Storage
Definition: FileRepo.php:53
int $descriptionCacheExpiry
Definition: FileRepo.php:50
cleanDir($dir)
Deletes a directory if empty.
Definition: FileRepo.php:1343
string $descBaseUrl
URL of image description pages, e.g.
Definition: FileRepo.php:74
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
getFileProps($virtualUrl)
Get properties of a file with a given virtual URL/storage path.
Definition: FileRepo.php:1550
getNameFromTitle(Title $title)
Get the name of a file from its title object.
Definition: FileRepo.php:630
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
const NAME_AND_TIME_ONLY
Definition: FileRepo.php:43
getDescriptionUrl($name)
Get the URL of an image description page.
Definition: FileRepo.php:743
findFilesByPrefix($prefix, $limit)
Return an array of files where the name starts with $prefix.
Definition: FileRepo.php:602
backendSupportsUnicodePaths()
Definition: FileRepo.php:311
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
UploadStash is intended to accomplish a few things:
Definition: UploadStash.php:54
cleanupBatch(array $files, $flags=0)
Deletes a batch of files.
Definition: FileRepo.php:926
bool $transformVia404
Whether to skip media file transformation on parse and rely on a 404 handler instead.
Definition: FileRepo.php:69
findBySha1s(array $hashes)
Get an array of arrays or iterators of file objects for files that have the given SHA-1 content hashe...
Definition: FileRepo.php:582
getFileSize($virtualUrl)
Get the size of a file with a given virtual URL/storage path.
Definition: FileRepo.php:1574
Class representing a non-directory file on the file system.
Definition: FSFile.php:29
const OVERWRITE_SAME
Definition: FileRepo.php:40
getZoneUrl($zone, $ext=null)
Get the URL corresponding to one of the four basic zones.
Definition: FileRepo.php:282
getDeletedHashPath($key)
Get a relative path for a deletion archive key, e.g.
Definition: FileRepo.php:1488
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
newFatal($message)
Create a new fatal error.
Definition: FileRepo.php:1714
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
Definition: design.txt:12
FileRepo for temporary files created via FileRepo::getTempRepo()
Definition: FileRepo.php:1927
Base class for all file backend classes (including multi-write backends).
Definition: FileBackend.php:85
getDisplayName()
Get the human-readable name of the repo.
Definition: FileRepo.php:1761
Base class for file repositories.
Definition: FileRepo.php:37
bool $supportsSha1URLs
Definition: FileRepo.php:56
static isPathTraversalFree($path)
Check if a relative path has no directory traversals.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1004
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition: design.txt:56
array $fileFactoryKey
callable|bool Override these in the base class
Definition: FileRepo.php:131
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
array $oldFileFactory
callable|bool Override these in the base class
Definition: FileRepo.php:129
array $fileFactory
callable Override these in the base class
Definition: FileRepo.php:127
storeBatch(array $triplets, $flags=0)
Store a batch of files.
Definition: FileRepo.php:849
enumFilesInStorage($callback)
Call a callback function for every public file in the repository.
Definition: FileRepo.php:1638
publish($src, $dstRel, $archiveRel, $flags=0, array $options=[])
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
Definition: FileRepo.php:1170
FileBackend $backend
Definition: FileRepo.php:59
fileExistsBatch(array $files)
Checks existence of an array of files.
Definition: FileRepo.php:1371
quickImportBatch(array $triples)
Import a batch of files from the local file system into the repo.
Definition: FileRepo.php:1009
getLocalReference($virtualUrl)
Get a local FS file with a given virtual URL/storage path.
Definition: FileRepo.php:1537
static splitStoragePath($storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
static getDynamicStylesheetQuery()
Get the query to generate a dynamic stylesheet.
Definition: Skin.php:344
quickCleanDir($dir)
Deletes a directory if empty.
Definition: FileRepo.php:989
supportsSha1URLs()
Returns whether or not repo supports having originals SHA-1s in the thumb URLs.
Definition: FileRepo.php:1919
int $deletedHashLevels
The number of directory levels for hash-based division of deleted files.
Definition: FileRepo.php:112
__construct(array $info=null)
Definition: FileRepo.php:139
getZonePath($zone)
Get the storage path corresponding to one of the zones.
Definition: FileRepo.php:363
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
Definition: FileRepo.php:1911
bool $isPrivate
Whether all zones should be private (e.g.
Definition: FileRepo.php:124
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101
newGood($value=null)
Create a new good result.
Definition: FileRepo.php:1727
findBySha1($hash)
Get an array or iterator of file objects for files that have a given SHA-1 content hash...
Definition: FileRepo.php:571
getName()
Get the name of this repository, as specified by $info['name]' to the constructor.
Definition: FileRepo.php:710
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:310
publishBatch(array $ntuples, $flags=0)
Publish a batch of files.
Definition: FileRepo.php:1199