137 $this->
name = $config[
'name'];
138 $this->wikiId = $config[
'wikiId'];
139 if ( !preg_match(
'!^[a-zA-Z0-9-_]{1,255}$!', $this->
name ) ) {
141 } elseif ( !is_string( $this->wikiId ) ) {
144 $this->lockManager = isset( $config[
'lockManager'] )
145 ? $config[
'lockManager']
147 $this->fileJournal = isset( $config[
'fileJournal'] )
148 ? $config[
'fileJournal']
150 $this->readOnly = isset( $config[
'readOnly'] )
151 ? (
string)$config[
'readOnly']
153 $this->parallelize = isset( $config[
'parallelize'] )
154 ? (
string)$config[
'parallelize']
156 $this->concurrency = isset( $config[
'concurrency'] )
157 ? (int)$config[
'concurrency']
189 return ( $this->readOnly !=
'' );
198 return ( $this->readOnly !=
'' ) ? $this->readOnly :
false;
208 return self::ATTR_UNICODE_PATHS;
219 return ( $this->
getFeatures() & $bitfield ) === $bitfield;
371 if ( empty( $opts[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
374 if ( !count( $ops ) ) {
379 if ( empty( $opts[
'force'] ) ) {
380 unset( $opts[
'nonLocking'] );
422 return $this->
doOperation( [
'op' =>
'create' ] + $params, $opts );
436 return $this->
doOperation( [
'op' =>
'store' ] + $params, $opts );
450 return $this->
doOperation( [
'op' =>
'copy' ] + $params, $opts );
464 return $this->
doOperation( [
'op' =>
'move' ] + $params, $opts );
493 return $this->
doOperation( [
'op' =>
'describe' ] + $params, $opts );
609 if ( empty( $opts[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
612 if ( !count( $ops ) ) {
617 foreach ( $ops
as &$op ) {
618 $op[
'overwrite'] =
true;
765 if ( empty( $params[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
796 if ( empty( $params[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
829 if ( empty( $params[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
855 if ( empty( $params[
'bypassReadOnly'] ) && $this->
isReadOnly() ) {
860 return $this->
doClean( $params );
877 if ( PHP_SAPI !=
'cli' ) {
878 $old = ignore_user_abort(
true );
880 ignore_user_abort( $old );
919 [
'srcs' => [ $params[
'src'] ] ] + $params );
921 return $contents[$params[
'src']];
1047 [
'srcs' => [ $params[
'src'] ] ] + $params );
1049 return $fsFiles[$params[
'src']];
1080 [
'srcs' => [ $params[
'src'] ] ] + $params );
1082 return $tmpFiles[$params[
'src']];
1205 return $this->
getFileList( [
'topOnly' =>
true ] + $params );
1256 $paths = array_map(
'FileBackend::normalizeStoragePath', $paths );
1258 return $this->lockManager->lock( $paths,
$type, $timeout );
1269 $paths = array_map(
'FileBackend::normalizeStoragePath', $paths );
1271 return $this->lockManager->unlock( $paths,
$type );
1291 if (
$type ===
'mixed' ) {
1292 foreach ( $paths
as &$typePaths ) {
1293 $typePaths = array_map(
'FileBackend::normalizeStoragePath', $typePaths );
1296 $paths = array_map(
'FileBackend::normalizeStoragePath', $paths );
1328 return "mwstore://{$this->name}";
1361 foreach ( $ops
as &$op ) {
1362 $src = isset( $op[
'src'] ) ? $op[
'src'] : null;
1363 if ( $src instanceof
FSFile ) {
1364 $op[
'srcRef'] = $src;
1365 $op[
'src'] = $src->getPath();
1381 return ( strpos(
$path,
'mwstore://' ) === 0 );
1393 if ( self::isStoragePath( $storagePath ) ) {
1395 $parts = explode(
'/', substr( $storagePath, 10 ), 3 );
1396 if ( count( $parts ) >= 2 && $parts[0] !=
'' && $parts[1] !=
'' ) {
1397 if ( count( $parts ) == 3 ) {
1400 return [ $parts[0], $parts[1],
'' ];
1405 return [ null, null, null ];
1416 list( $backend, $container, $relPath ) = self::splitStoragePath( $storagePath );
1417 if ( $relPath !== null ) {
1418 $relPath = self::normalizeContainerPath( $relPath );
1419 if ( $relPath !== null ) {
1420 return ( $relPath !=
'' )
1421 ?
"mwstore://{$backend}/{$container}/{$relPath}"
1422 :
"mwstore://{$backend}/{$container}";
1438 $storagePath = dirname( $storagePath );
1439 list( , , $rel ) = self::splitStoragePath( $storagePath );
1441 return ( $rel === null ) ? null : $storagePath;
1452 $i = strrpos(
$path,
'.' );
1453 $ext = $i ? substr(
$path, $i + 1 ) :
'';
1455 if ( $case ===
'lowercase' ) {
1457 } elseif ( $case ===
'uppercase' ) {
1472 return ( self::normalizeContainerPath(
$path ) !== null );
1488 if ( !in_array(
$type, [
'inline',
'attachment' ] ) ) {
1493 if ( strlen( $filename ) ) {
1494 $parts[] =
"filename*=UTF-8''" . rawurlencode( basename( $filename ) );
1497 return implode(
';', $parts );
1514 $path = preg_replace(
'![/]{2,}!',
'/',
$path );
1518 if ( strpos(
$path,
'.' ) !==
false ) {
1522 strpos(
$path,
'./' ) === 0 ||
1523 strpos(
$path,
'../' ) === 0 ||
1524 strpos(
$path,
'/./' ) !==
false ||
1525 strpos(
$path,
'/../' ) !==
false
doQuickOperationsInternal(array $ops)
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
describe(array $params, array $opts=[])
Performs a single describe operation.
the array() calling protocol came about after MediaWiki 1.4rc1.
unlockFiles(array $paths, $type)
Unlock the files at the given storage paths in the backend.
doOperations(array $ops, array $opts=[])
This is the main entry point into the backend for write operations.
getFileStat(array $params)
Get quick information about a file at a storage path in the backend.
getWikiId()
Get the wiki identifier used for this backend (possibly empty).
publish(array $params)
Remove measures to block web access to a storage directory and the container it belongs to...
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
secure(array $params)
Take measures to block web access to a storage directory and the container it belongs to...
Simple version of LockManager that does nothing.
const ATTR_HEADERS
Bitfield flags for supported features.
Generic operation result class Has warning/error list, boolean status and arbitrary value...
quickMove(array $params)
Performs a single quick move operation.
getFileHttpUrl(array $params)
Return an HTTP URL to a given file that requires no authentication to use.
quickDelete(array $params)
Performs a single quick delete operation.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
getFileXAttributes(array $params)
Get metadata about a file at a storage path in the backend.
getScopedPHPBehaviorForOps()
Enter file operation scope.
getName()
Get the unique backend name.
getFileContentsMulti(array $params)
Like getFileContents() except it takes an array of storage paths and returns a map of storage paths t...
getDirectoryList(array $params)
Get an iterator to list all directories under a storage directory.
doOperation(array $op, array $opts=[])
Same as doOperations() except it takes a single operation.
getFileTimestamp(array $params)
Get the last-modified timestamp of the file at a storage path.
int $concurrency
How many operations can be done in parallel.
static newFatal($message)
Factory function for fatal errors.
getLocalReferenceMulti(array $params)
Like getLocalReference() except it takes an array of storage paths and returns a map of storage paths...
static extensionFromPath($path, $case= 'lowercase')
Get the final extension from a storage or FS path.
directoryExists(array $params)
Check if a directory exists at a given storage path.
hasFeatures($bitfield)
Check if the backend medium supports a field of extra features.
resolveFSFileObjects(array $ops)
Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile) ...
Generic file backend exception for checked and unexpected (e.g.
string $readOnly
Read-only explanation message.
Class for asserting that a callback happens when an dummy object leaves scope.
create(array $params, array $opts=[])
Performs a single create operation.
move(array $params, array $opts=[])
Performs a single move operation.
quickStore(array $params)
Performs a single quick store operation.
getContainerStoragePath($container)
Get the storage path for the given container for this backend.
getReadOnlyReason()
Get an explanatory message if this backend is read-only.
static normalizeContainerPath($path)
Validate and normalize a relative storage path.
quickCreate(array $params)
Performs a single quick create operation.
getTopFileList(array $params)
Same as FileBackend::getFileList() except only lists files that are immediately under the given direc...
File backend exception for checked exceptions (e.g.
lockFiles(array $paths, $type, $timeout=0)
Lock the files at the given storage paths in the backend.
__construct(array $config)
Create a new backend instance from configuration.
static isStoragePath($path)
Check if a given path is a "mwstore://" path.
quickCopy(array $params)
Performs a single quick copy operation.
fileExists(array $params)
Check if a file exists at a storage path in the backend.
getFileSha1Base36(array $params)
Get a SHA-1 hash of the file at a storage path in the backend.
store(array $params, array $opts=[])
Performs a single store operation.
getFileSize(array $params)
Get the size (bytes) of a file at a storage path in the backend.
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
doQuickOperations(array $ops, array $opts=[])
Perform a set of independent file operations on some files.
prepare(array $params)
Prepare a storage directory for usage.
string $name
Unique backend name.
getLocalCopy(array $params)
Get a local copy on disk of the file at a storage path in the backend.
static normalizeStoragePath($storagePath)
Normalize a storage path by cleaning up directory separators.
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
getJournal()
Get the file journal object for this backend.
concatenate(array $params)
Concatenate a list of storage files into a single file system file.
static factory(LockManager $manager, array $paths, $type, Status $status, $timeout=0)
Get a ScopedLock object representing a lock on resource paths.
getRootStoragePath()
Get the root storage path of this backend.
Class representing a non-directory file on the file system.
preloadCache(array $paths)
Preload persistent file stat cache and property cache into in-process cache.
copy(array $params, array $opts=[])
Performs a single copy operation.
doOperationsInternal(array $ops, array $opts)
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
Base class for all file backend classes (including multi-write backends).
getFileList(array $params)
Get an iterator to list all stored files under a storage directory.
static isPathTraversalFree($path)
Check if a relative path has no directory traversals.
getTopDirectoryList(array $params)
Same as FileBackend::getDirectoryList() except only lists directories that are immediately under the ...
getLocalCopyMulti(array $params)
Like getLocalCopy() except it takes an array of storage paths and returns a map of storage paths to T...
static makeContentDisposition($type, $filename= '')
Build a Content-Disposition header value per RFC 6266.
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
quickDescribe(array $params)
Performs a single quick describe operation.
string $parallelize
When to do operations in parallel.
streamFile(array $params)
Stream the file at a storage path in the backend.
getScopedLocksForOps(array $ops, Status $status)
Get an array of scoped locks needed for a batch of file operations.
clean(array $params)
Delete a storage directory if it is empty.
getFileProps(array $params)
Get the properties of the file at a storage path in the backend.
static splitStoragePath($storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
clearCache(array $paths=null)
Invalidate any in-process file stat and property cache.
doQuickOperation(array $op)
Same as doQuickOperations() except it takes a single operation.
string $wikiId
Unique wiki name.
isReadOnly()
Check if this backend is read-only.
preloadFileStat(array $params)
Preload file stat information (concurrently if possible) into in-process cache.
getLocalReference(array $params)
Returns a file system file, identical to the file at a storage path.
getFeatures()
Get the a bitfield of extra features supported by the backend medium.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
static factory(array $config, $backend)
Create an appropriate FileJournal object from config.
static newGood($value=null)
Factory function for good results.
getFileContents(array $params)
Get the contents of a file at a storage path in the backend.
getScopedFileLocks(array $paths, $type, Status $status, $timeout=0)
Lock the files at the given storage paths in the backend.
static parentStoragePath($storagePath)
Get the parent storage directory of a storage path.