MediaWiki  1.33.0
FileBackendGroup.php
Go to the documentation of this file.
1 <?php
26 
35  protected static $instance = null;
36 
38  protected $backends = [];
39 
40  protected function __construct() {
41  }
42 
46  public static function singleton() {
47  if ( self::$instance == null ) {
48  self::$instance = new self();
49  self::$instance->initFromGlobals();
50  }
51 
52  return self::$instance;
53  }
54 
58  public static function destroySingleton() {
59  self::$instance = null;
60  }
61 
65  protected function initFromGlobals() {
67 
68  // Register explicitly defined backends
69  $this->register( $wgFileBackends, wfConfiguredReadOnlyReason() );
70 
71  $autoBackends = [];
72  // Automatically create b/c backends for file repos...
73  $repos = array_merge( $wgForeignFileRepos, [ $wgLocalFileRepo ] );
74  foreach ( $repos as $info ) {
75  $backendName = $info['backend'];
76  if ( is_object( $backendName ) || isset( $this->backends[$backendName] ) ) {
77  continue; // already defined (or set to the object for some reason)
78  }
79  $repoName = $info['name'];
80  // Local vars that used to be FSRepo members...
81  $directory = $info['directory'];
82  $deletedDir = $info['deletedDir'] ?? false; // deletion disabled
83  $thumbDir = $info['thumbDir'] ?? "{$directory}/thumb";
84  $transcodedDir = $info['transcodedDir'] ?? "{$directory}/transcoded";
85  // Get the FS backend configuration
86  $autoBackends[] = [
87  'name' => $backendName,
88  'class' => FSFileBackend::class,
89  'lockManager' => 'fsLockManager',
90  'containerPaths' => [
91  "{$repoName}-public" => "{$directory}",
92  "{$repoName}-thumb" => $thumbDir,
93  "{$repoName}-transcoded" => $transcodedDir,
94  "{$repoName}-deleted" => $deletedDir,
95  "{$repoName}-temp" => "{$directory}/temp"
96  ],
97  'fileMode' => $info['fileMode'] ?? 0644,
98  'directoryMode' => $wgDirectoryMode,
99  ];
100  }
101 
102  // Register implicitly defined backends
103  $this->register( $autoBackends, wfConfiguredReadOnlyReason() );
104  }
105 
113  protected function register( array $configs, $readOnlyReason = null ) {
114  foreach ( $configs as $config ) {
115  if ( !isset( $config['name'] ) ) {
116  throw new InvalidArgumentException( "Cannot register a backend with no name." );
117  }
118  $name = $config['name'];
119  if ( isset( $this->backends[$name] ) ) {
120  throw new LogicException( "Backend with name `{$name}` already registered." );
121  } elseif ( !isset( $config['class'] ) ) {
122  throw new InvalidArgumentException( "Backend with name `{$name}` has no class." );
123  }
124  $class = $config['class'];
125 
126  $config['readOnly'] = $config['readOnly'] ?? $readOnlyReason;
127 
128  unset( $config['class'] ); // backend won't need this
129  $this->backends[$name] = [
130  'class' => $class,
131  'config' => $config,
132  'instance' => null
133  ];
134  }
135  }
136 
144  public function get( $name ) {
145  // Lazy-load the actual backend instance
146  if ( !isset( $this->backends[$name]['instance'] ) ) {
147  $config = $this->config( $name );
148 
149  $class = $config['class'];
150  if ( $class === FileBackendMultiWrite::class ) {
151  foreach ( $config['backends'] as $index => $beConfig ) {
152  if ( isset( $beConfig['template'] ) ) {
153  // Config is just a modified version of a registered backend's.
154  // This should only be used when that config is used only by this backend.
155  $config['backends'][$index] += $this->config( $beConfig['template'] );
156  }
157  }
158  }
159 
160  $this->backends[$name]['instance'] = new $class( $config );
161  }
162 
163  return $this->backends[$name]['instance'];
164  }
165 
173  public function config( $name ) {
174  if ( !isset( $this->backends[$name] ) ) {
175  throw new InvalidArgumentException( "No backend defined with the name `$name`." );
176  }
177  $class = $this->backends[$name]['class'];
178 
179  $config = $this->backends[$name]['config'];
180  $config['class'] = $class;
181  if ( isset( $config['domainId'] ) ) {
182  $domain = $config['domainId'];
183  } else {
184  // @FIXME: this does not include the domain for b/c but it ideally should
185  $domain = $config['wikiId'] ?? wfWikiID();
186  }
187  // Set default parameter values
188  $config += [
189  'domainId' => $domain, // e.g. "my_wiki-en_"
190  'mimeCallback' => [ $this, 'guessMimeInternal' ],
191  'obResetFunc' => 'wfResetOutputBuffers',
192  'streamMimeFunc' => [ StreamFile::class, 'contentTypeFromPath' ],
193  'tmpDirectory' => wfTempDir(),
194  'statusWrapper' => [ Status::class, 'wrap' ],
195  'wanCache' => MediaWikiServices::getInstance()->getMainWANObjectCache(),
196  'srvCache' => ObjectCache::getLocalServerInstance( 'hash' ),
197  'logger' => LoggerFactory::getInstance( 'FileOperation' ),
198  'profiler' => function ( $section ) {
199  return Profiler::instance()->scopedProfileIn( $section );
200  }
201  ];
202  $config['lockManager'] =
203  LockManagerGroup::singleton( $domain )->get( $config['lockManager'] );
204  $config['fileJournal'] = isset( $config['fileJournal'] )
205  ? FileJournal::factory( $config['fileJournal'], $name )
207 
208  return $config;
209  }
210 
217  public function backendFromPath( $storagePath ) {
218  list( $backend, , ) = FileBackend::splitStoragePath( $storagePath );
219  if ( $backend !== null && isset( $this->backends[$backend] ) ) {
220  return $this->get( $backend );
221  }
222 
223  return null;
224  }
225 
233  public function guessMimeInternal( $storagePath, $content, $fsPath ) {
234  $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
235  // Trust the extension of the storage path (caller must validate)
236  $ext = FileBackend::extensionFromPath( $storagePath );
237  $type = $magic->guessTypesForExtension( $ext );
238  // For files without a valid extension (or one at all), inspect the contents
239  if ( !$type && $fsPath ) {
240  $type = $magic->guessMimeType( $fsPath, false );
241  } elseif ( !$type && strlen( $content ) ) {
242  $tmpFile = TempFSFile::factory( 'mime_', '', wfTempDir() );
243  file_put_contents( $tmpFile->getPath(), $content );
244  $type = $magic->guessMimeType( $tmpFile->getPath(), false );
245  }
246  return $type ?: 'unknown/unknown';
247  }
248 }
FileBackend\splitStoragePath
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
Definition: FileBackend.php:1431
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
FileBackendGroup
Class to handle file backend registration.
Definition: FileBackendGroup.php:33
Profiler\instance
static instance()
Singleton.
Definition: Profiler.php:62
$wgLocalFileRepo
$wgLocalFileRepo
File repository structures.
Definition: DefaultSettings.php:526
wfConfiguredReadOnlyReason
wfConfiguredReadOnlyReason()
Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
Definition: GlobalFunctions.php:1221
LockManagerGroup\singleton
static singleton( $domain=false)
Definition: LockManagerGroup.php:52
FileBackend\extensionFromPath
static extensionFromPath( $path, $case='lowercase')
Get the final extension from a storage or FS path.
Definition: FileBackend.php:1490
FileBackendGroup\config
config( $name)
Get the config array for a backend object with a given name.
Definition: FileBackendGroup.php:173
php
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
FileBackendGroup\guessMimeInternal
guessMimeInternal( $storagePath, $content, $fsPath)
Definition: FileBackendGroup.php:233
FileBackendGroup\singleton
static singleton()
Definition: FileBackendGroup.php:46
FileBackendGroup\destroySingleton
static destroySingleton()
Destroy the singleton instance.
Definition: FileBackendGroup.php:58
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$wgFileBackends
$wgFileBackends
File backend structure configuration.
Definition: DefaultSettings.php:765
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
list
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
TempFSFile\factory
static factory( $prefix, $extension='', $tmpDirectory=null)
Make a new temporary file on the file system.
Definition: TempFSFile.php:55
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
MediaWiki\MediaWikiServices\getInstance
static getInstance()
Returns the global default instance of the top level service locator.
Definition: MediaWikiServices.php:124
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:2602
$wgDirectoryMode
$wgDirectoryMode
Default value for chmoding of new directories.
Definition: DefaultSettings.php:1570
FileBackendGroup\initFromGlobals
initFromGlobals()
Register file backends from the global variables.
Definition: FileBackendGroup.php:65
FileBackendGroup\$backends
array $backends
(name => ('class' => string, 'config' => array, 'instance' => object))
Definition: FileBackendGroup.php:38
wfTempDir
wfTempDir()
Tries to get the system directory for temporary files.
Definition: GlobalFunctions.php:1989
$section
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition: hooks.txt:3053
as
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
FileBackendGroup\backendFromPath
backendFromPath( $storagePath)
Get an appropriate backend object from a storage path.
Definition: FileBackendGroup.php:217
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
$content
$content
Definition: pageupdater.txt:72
$ext
if(!is_readable( $file)) $ext
Definition: router.php:48
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
FileBackendGroup\$instance
static FileBackendGroup $instance
Definition: FileBackendGroup.php:35
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
FileBackendGroup\__construct
__construct()
Definition: FileBackendGroup.php:40
FileJournal\factory
static factory(array $config, $backend)
Create an appropriate FileJournal object from config.
Definition: FileJournal.php:62
$wgForeignFileRepos
$wgForeignFileRepos
Enable the use of files from one or more other wikis.
Definition: DefaultSettings.php:541
ObjectCache\getLocalServerInstance
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
Definition: ObjectCache.php:279
$type
$type
Definition: testCompression.php:48