|
MediaWiki master
|
Class for a file system (FS) based file backend. More...
Inherits Wikimedia\FileBackend\FileBackendStore.

Public Member Functions | ||||||||||
| __construct (array $config) | ||||||||||
| addShellboxInputFile (BoxedCommand $command, string $boxedName, array $params) | ||||||||||
Add a file to a Shellbox command as an input file.
| ||||||||||
| getDirectoryListInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| getFeatures () | ||||||||||
Get the a bitfield of extra features supported by the backend medium.
| ||||||||||
| getFileListInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| isPathUsableInternal ( $storagePath) | ||||||||||
Check if a file can be created or changed at a given storage path in the backend.FS backends should check that the parent directory exists, files can be written under it, and that any file already there is both readable and writable. Backends using key/value stores should check if the container exists.
| ||||||||||
Public Member Functions inherited from Wikimedia\FileBackend\FileBackendStore | ||||||||||
| clearCache (?array $paths=null) | ||||||||||
| Invalidate any in-process file stat and property cache. | ||||||||||
| concatenate (array $params) | ||||||||||
Concatenate a list of storage files into a single file system file.The target path should refer to a file that is already locked or otherwise safe from modification from other processes. Normally, the file will be a new temp file, which should be adequate.
| ||||||||||
| copyInternal (array $params) | ||||||||||
| Copy a file from one storage path to another in the backend. | ||||||||||
| createInternal (array $params) | ||||||||||
| Create a file in the backend with the given contents. | ||||||||||
| deleteInternal (array $params) | ||||||||||
| Delete a file at the storage path. | ||||||||||
| describeInternal (array $params) | ||||||||||
| Alter metadata for a file at the storage path. | ||||||||||
| directoryExists (array $params) | ||||||||||
Check if a directory exists at a given storage path.For backends using key/value stores, a directory is said to exist whenever there exist any files with paths using the given directory path as a prefix followed by a forward slash. For example, if there is a file called "mwstore://backend/container/dir/path.svg" then directories are said to exist at "mwstore://backend/container" and "mwstore://backend/container/dir". These can be thought of as "virtual" directories.Backends that directly use a filesystem layer might enumerate empty directories. The clean() method should always be used when files are deleted or moved if this is a concern. This is a trade-off to avoid write amplication/contention on file changes or read amplification when calling this method.Storage backends with eventual consistency might return stale data.
| ||||||||||
| executeOpHandlesInternal (array $fileOpHandles) | ||||||||||
| Execute a list of FileBackendStoreOpHandle handles in parallel. | ||||||||||
| fileExists (array $params) | ||||||||||
Check if a file exists at a storage path in the backend.This returns false if only a directory exists at the path.Callers that only care if a file is readily accessible can use non-strict comparisons on the result. If "does not exist" and "existence is unknown" must be distinguished, then strict comparisons to true/null should be used.
| ||||||||||
| getDirectoryList (array $params) | ||||||||||
Get an iterator to list all directories under a storage directory.If the directory is of the form "mwstore://backend/container", then all directories in the container will be listed. If the directory is of form "mwstore://backend/container/dir", then all directories directly under that directory will be listed. Results will be storage directories relative to the given directory.Storage backends with eventual consistency might return stale data.Failures during iteration can result in FileBackendError exceptions (since 1.22).
| ||||||||||
| getFileContentsMulti (array $params) | ||||||||||
Like getFileContents() except it takes an array of storage paths and returns an order preserved map of storage paths to their content.
| ||||||||||
| getFileHttpUrl (array $params) | ||||||||||
| getFileList (array $params) | ||||||||||
Get an iterator to list all stored files under a storage directory.If the directory is of the form "mwstore://backend/container", then all files in the container will be listed. If the directory is of form "mwstore://backend/container/dir", then all files under that directory will be listed. Results will be storage paths relative to the given directory.Storage backends with eventual consistency might return stale data.Failures during iteration can result in FileBackendError exceptions (since 1.22).
| ||||||||||
| getFileProps (array $params) | ||||||||||
Get the properties of the content of the file at a storage path in the backend.This gives the result of FSFile::getProps() on a local copy of the file.
| ||||||||||
| getFileSha1Base36 (array $params) | ||||||||||
Get a SHA-1 hash of the content of the file at a storage path in the backend.
| ||||||||||
| getFileSize (array $params) | ||||||||||
Get the size (bytes) of a file at a storage path in the backend.
| ||||||||||
| getFileStat (array $params) | ||||||||||
Get quick information about a file at a storage path in the backend.If the file does not exist, then this returns false. Otherwise, the result is an associative array that includes:
| ||||||||||
| getFileTimestamp (array $params) | ||||||||||
Get the last-modified timestamp of the file at a storage path.
| ||||||||||
| getFileXAttributes (array $params) | ||||||||||
Get metadata about a file at a storage path in the backend.If the file does not exist, then this returns false. Otherwise, the result is an associative array that includes:
| ||||||||||
| getLocalCopyMulti (array $params) | ||||||||||
Like getLocalCopy() except it takes an array of storage paths and yields an order preserved-map of storage paths to temporary local file copies.Multiple calls to this method for the same path will create new copies.
| ||||||||||
| getLocalReferenceMulti (array $params) | ||||||||||
Like getLocalReference() except it takes an array of storage paths and yields an order-preserved map of storage paths to temporary local file copies.Never modify the returned files since they might be originals, they might be shared among multiple callers of this method, or the backend might internally keep FSFile references for deferred operations.
| ||||||||||
| getOperationsInternal (array $ops) | ||||||||||
| Return a list of FileOp objects from a list of operations. | ||||||||||
| getPathsToLockForOpsInternal (array $performOps) | ||||||||||
| Get a list of storage paths to lock for a list of operations Returns an array with LockManager::LOCK_UW (shared locks) and LockManager::LOCK_EX (exclusive locks) keys, each corresponding to a list of storage paths to be locked. | ||||||||||
| getScopedLocksForOps (array $ops, StatusValue $status) | ||||||||||
Get an array of scoped locks needed for a batch of file operations.Normally, FileBackend::doOperations() handles locking, unless the 'nonLocking' param is passed in. This function is useful if you want the files to be locked for a broader scope than just when the files are changing. For example, if you need to update DB metadata, you may want to keep the files locked until finished.
| ||||||||||
| isSingleShardPathInternal ( $storagePath) | ||||||||||
| Check if a storage path maps to a single shard. | ||||||||||
| maxFileSizeInternal () | ||||||||||
| Get the maximum allowable file size given backend medium restrictions and basic performance constraints. | ||||||||||
| moveInternal (array $params) | ||||||||||
| Move a file from one storage path to another in the backend. | ||||||||||
| nullInternal (array $params) | ||||||||||
| No-op file operation that does nothing. | ||||||||||
| preloadCache (array $paths) | ||||||||||
| Preload persistent file stat cache and property cache into in-process cache. | ||||||||||
| preloadFileStat (array $params) | ||||||||||
Preload file stat information (concurrently if possible) into in-process cache.This should be used when stat calls will be made on a known list of a many files. This does not make use of the persistent file stat cache.
| ||||||||||
| storeInternal (array $params) | ||||||||||
| Store a file into the backend from a file on disk. | ||||||||||
| streamFile (array $params) | ||||||||||
Stream the content of the file at a storage path in the backend.If the file does not exists, an HTTP 404 error will be given. Appropriate HTTP headers (Status, Content-Type, Content-Length) will be sent if streaming began, while none will be sent otherwise. Implementations should flush the output buffer before sending data.
| ||||||||||
Public Member Functions inherited from Wikimedia\FileBackend\FileBackend | ||||||||||
| clean (array $params) | ||||||||||
| Delete a storage directory if it is empty. | ||||||||||
| copy (array $params, array $opts=[]) | ||||||||||
| Performs a single copy operation. | ||||||||||
| create (array $params, array $opts=[]) | ||||||||||
| Performs a single create operation. | ||||||||||
| delete (array $params, array $opts=[]) | ||||||||||
| Performs a single delete operation. | ||||||||||
| describe (array $params, array $opts=[]) | ||||||||||
| Performs a single describe operation. | ||||||||||
| doOperation (array $op, array $opts=[]) | ||||||||||
| Same as doOperations() except it takes a single operation. | ||||||||||
| doOperations (array $ops, array $opts=[]) | ||||||||||
| This is the main entry point into the backend for write operations. | ||||||||||
| doQuickOperation (array $op, array $opts=[]) | ||||||||||
| Same as doQuickOperations() except it takes a single operation. | ||||||||||
| doQuickOperations (array $ops, array $opts=[]) | ||||||||||
| Perform a set of independent file operations on some files. | ||||||||||
| getContainerStoragePath ( $container) | ||||||||||
| Get the storage path for the given container for this backend. | ||||||||||
| getDomainId () | ||||||||||
| Get the domain identifier used for this backend (possibly empty). | ||||||||||
| getFileContents (array $params) | ||||||||||
| Get the contents of a file at a storage path in the backend. | ||||||||||
| getLocalCopy (array $params) | ||||||||||
| Get a local copy on disk of the file at a storage path in the backend. | ||||||||||
| getLocalReference (array $params) | ||||||||||
| Returns a file system file, identical in content to the file at a storage path. | ||||||||||
| getName () | ||||||||||
| Get the unique backend name. | ||||||||||
| getReadOnlyReason () | ||||||||||
| Get an explanatory message if this backend is read-only. | ||||||||||
| getRootStoragePath () | ||||||||||
| Get the root storage path of this backend. | ||||||||||
| getScopedFileLocks (array $paths, $type, StatusValue $status, $timeout=0) | ||||||||||
| Lock the files at the given storage paths in the backend. | ||||||||||
| getStreamerOptions () | ||||||||||
| Return options for use with HTTPFileStreamer. | ||||||||||
| getTopDirectoryList (array $params) | ||||||||||
| Same as FileBackend::getDirectoryList() except only lists directories that are immediately under the given directory. | ||||||||||
| getTopFileList (array $params) | ||||||||||
| Same as FileBackend::getFileList() except only lists files that are immediately under the given directory. | ||||||||||
| getWikiId () | ||||||||||
| Alias to getDomainId() | ||||||||||
| hasFeatures ( $bitfield) | ||||||||||
| Check if the backend medium supports a field of extra features. | ||||||||||
| isReadOnly () | ||||||||||
| Check if this backend is read-only. | ||||||||||
| lockFiles (array $paths, $type, $timeout=0) | ||||||||||
| Lock the files at the given storage paths in the backend. | ||||||||||
| move (array $params, array $opts=[]) | ||||||||||
| Performs a single move operation. | ||||||||||
| prepare (array $params) | ||||||||||
| Prepare a storage directory for usage. | ||||||||||
| publish (array $params) | ||||||||||
| Remove measures to block web access to a storage directory and the container it belongs to. | ||||||||||
| quickCopy (array $params, array $opts=[]) | ||||||||||
| Performs a single quick copy operation. | ||||||||||
| quickCreate (array $params, array $opts=[]) | ||||||||||
| Performs a single quick create operation. | ||||||||||
| quickDelete (array $params, array $opts=[]) | ||||||||||
| Performs a single quick delete operation. | ||||||||||
| quickDescribe (array $params, array $opts=[]) | ||||||||||
| Performs a single quick describe operation. | ||||||||||
| quickMove (array $params, array $opts=[]) | ||||||||||
| Performs a single quick move operation. | ||||||||||
| quickStore (array $params, array $opts=[]) | ||||||||||
| Performs a single quick store operation. | ||||||||||
| secure (array $params) | ||||||||||
| Take measures to block web access to a storage directory and the container it belongs to. | ||||||||||
| setLogger (LoggerInterface $logger) | ||||||||||
| store (array $params, array $opts=[]) | ||||||||||
| Performs a single store operation. | ||||||||||
| unlockFiles (array $paths, $type) | ||||||||||
| Unlock the files at the given storage paths in the backend. | ||||||||||
Protected Member Functions | ||||||||||
| chmod ( $fsPath) | ||||||||||
| Chmod a file, suppressing the warnings. | ||||||||||
| cleanPathSlashes ( $fsPath) | ||||||||||
| Clean up directory separators for the given OS. | ||||||||||
| containerFSRoot ( $shortCont, $fullCont) | ||||||||||
| Given the short (unresolved) and full (resolved) name of a container, return the file system path of the container. | ||||||||||
| directoriesAreVirtual () | ||||||||||
Is this a key/value store where directories are just virtual? Virtual directories exists in so much as files exists that are prefixed with the directory path followed by a forward slash.
| ||||||||||
| doCleanInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| ||||||||||
| doClearCache (?array $paths=null) | ||||||||||
Clears any additional stat caches for storage paths.
| ||||||||||
| doCopyInternal (array $params) | ||||||||||
| ||||||||||
| doCreateInternal (array $params) | ||||||||||
| ||||||||||
| doDeleteInternal (array $params) | ||||||||||
| ||||||||||
| doDirectoryExists ( $fullCont, $dirRel, array $params) | ||||||||||
| ||||||||||
| doExecuteOpHandlesInternal (array $fileOpHandles) | ||||||||||
| doGetFileStat (array $params) | ||||||||||
| ||||||||||
| doGetLocalCopyMulti (array $params) | ||||||||||
| ||||||||||
| doGetLocalReferenceMulti (array $params) | ||||||||||
| ||||||||||
| doMoveInternal (array $params) | ||||||||||
| ||||||||||
| doPrepareInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| ||||||||||
| doPublishInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| ||||||||||
| doSecureInternal ( $fullCont, $dirRel, array $params) | ||||||||||
| ||||||||||
| doStoreInternal (array $params) | ||||||||||
| ||||||||||
| getFileNotFoundRegex () | ||||||||||
| Get a regex matching file not found errors. | ||||||||||
| htaccessPrivate () | ||||||||||
| Return the text of a .htaccess file to make a directory private. | ||||||||||
| indexHtmlPrivate () | ||||||||||
| Return the text of an index.html file to hide directory listings. | ||||||||||
| isFileNotFoundError ( $error) | ||||||||||
| Determine whether a given error message is a file not found error. | ||||||||||
| isLegalRelPath ( $fsPath) | ||||||||||
| Check a relative file system path for validity. | ||||||||||
| newTempFileWithContent (array $params) | ||||||||||
| resolveContainerPath ( $container, $relStoragePath) | ||||||||||
Resolve a relative storage path, checking if it's allowed by the backend.This is intended for internal use, such as encoding illegal chars or perhaps getting absolute paths (e.g. FS based backends). Note that the relative path may be the empty string (e.g. the path is simply to the container).
| ||||||||||
| resolveToFSPath ( $storagePath) | ||||||||||
| Get the absolute file system path for a storage path. | ||||||||||
| rmdir ( $fsDirectory) | ||||||||||
| Remove an empty directory, suppressing the warnings. | ||||||||||
| trapWarnings ( $regexIgnore=null) | ||||||||||
| Listen for E_WARNING errors and track whether any that happen. | ||||||||||
| trapWarningsIgnoringNotFound () | ||||||||||
| Track E_WARNING errors but ignore any that correspond to ENOENT "No such file or directory". | ||||||||||
| unlink ( $fsPath) | ||||||||||
| Unlink a file, suppressing the warnings. | ||||||||||
| untrapWarnings () | ||||||||||
| Stop listening for E_WARNING errors and get whether any happened. | ||||||||||
Protected Member Functions inherited from Wikimedia\FileBackend\FileBackendStore | ||||||||||
| deleteContainerCache ( $container) | ||||||||||
| Delete the cached info for a container. | ||||||||||
| deleteFileCache ( $path) | ||||||||||
| Delete the cached stat info for a file path. | ||||||||||
| doClean (array $params) | ||||||||||
| ||||||||||
| doConcatenate (array $params) | ||||||||||
| doDescribeInternal (array $params) | ||||||||||
| doGetFileContentsMulti (array $params) | ||||||||||
| doGetFileSha1Base36 (array $params) | ||||||||||
| doGetFileStatMulti (array $params) | ||||||||||
| Get file stat information (concurrently if possible) for several files. | ||||||||||
| doGetFileXAttributes (array $params) | ||||||||||
| doOperationsInternal (array $ops, array $opts) | ||||||||||
| ||||||||||
| doPrepare (array $params) | ||||||||||
| ||||||||||
| doPrimeContainerCache (array $containerInfo) | ||||||||||
| Fill the backend-specific process cache given an array of resolved container names and their corresponding cached info. | ||||||||||
| doPublish (array $params) | ||||||||||
| ||||||||||
| doQuickOperationsInternal (array $ops, array $opts) | ||||||||||
| ||||||||||
| doSecure (array $params) | ||||||||||
| ||||||||||
| doStreamFile (array $params) | ||||||||||
| fullContainerName ( $container) | ||||||||||
| Get the full container name, including the domain ID prefix. | ||||||||||
| getContainerHashLevels ( $container) | ||||||||||
| Get the sharding config for a container. | ||||||||||
| getContainerShard ( $container, $relPath) | ||||||||||
| Get the container name shard suffix for a given path. | ||||||||||
| getContainerSuffixes ( $container) | ||||||||||
| Get a list of full container shard suffixes for a container. | ||||||||||
| getContentType ( $storagePath, $content, $fsPath) | ||||||||||
| Get the content type to use in HEAD/GET requests for a file. | ||||||||||
| ingestFreshFileStats (array $stats, $latest) | ||||||||||
| Ingest file stat entries that just came from querying the backend (not cache) | ||||||||||
| primeContainerCache (array $items) | ||||||||||
| Do a batch lookup from cache for container stats for all containers used in a list of container names or storage paths objects. | ||||||||||
| primeFileCache (array $items) | ||||||||||
| Do a batch lookup from cache for file stats for all paths used in a list of storage paths or FileOp objects. | ||||||||||
| resolveContainerName ( $container) | ||||||||||
| Resolve a container name, checking if it's allowed by the backend. | ||||||||||
| resolveStoragePath ( $storagePath) | ||||||||||
| Splits a storage path into an internal container name, an internal relative file name, and a container shard suffix. | ||||||||||
| resolveStoragePathReal ( $storagePath) | ||||||||||
| Like resolveStoragePath() except null values are returned if the container is sharded and the shard could not be determined or if the path ends with '/'. | ||||||||||
| sanitizeOpHeaders (array $op) | ||||||||||
| Normalize and filter HTTP headers from a file operation. | ||||||||||
| setConcurrencyFlags (array $opts) | ||||||||||
| Set the 'concurrency' option from a list of operation options. | ||||||||||
| setContainerCache ( $container, array $val) | ||||||||||
| Set the cached info for a container. | ||||||||||
| setFileCache ( $path, array $val) | ||||||||||
| Set the cached stat info for a file path. | ||||||||||
Protected Member Functions inherited from Wikimedia\FileBackend\FileBackend | ||||||||||
| callNowOrLater (callable $update) | ||||||||||
| header ( $header) | ||||||||||
| newStatus ( $message=null,... $params) | ||||||||||
| Yields the result of the status wrapper callback on either: | ||||||||||
| resetOutputBuffer () | ||||||||||
| resolveFSFileObjects (array $ops) | ||||||||||
| Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile) | ||||||||||
| scopedProfileSection ( $section) | ||||||||||
| wrapStatus (StatusValue $sv) | ||||||||||
Protected Attributes | |
| string null | $basePath |
| Directory holding the container directories. | |
| array< string, string > | $containerPaths |
| Map of container names to root paths for custom container paths. | |
| string | $currentUser |
| OS username running this script. | |
| int | $dirMode |
| Directory permission mode. | |
| int | $fileMode |
| File permission mode. | |
| string | $fileOwner |
| Required OS username to own files. | |
| string | $os |
| Simpler version of PHP_OS_FAMILY. | |
| MapCacheLRU | $usableDirCache |
| Cache for known prepared/usable directories. | |
Protected Attributes inherited from Wikimedia\FileBackend\FileBackendStore | |
| MapCacheLRU | $cheapCache |
| In-memory map of paths to small (RAM/disk) cache items. | |
| MapCacheLRU | $expensiveCache |
| In-memory map of paths to large (RAM/disk) cache items. | |
| int | $maxFileSize = 32 * 1024 * 1024 * 1024 |
| Size in bytes, defaults to 32 GiB. | |
| $memCache | |
| callable null | $mimeCallback |
| Method to get the MIME type of files. | |
| array< string, array > | $shardViaHashLevels = [] |
| Map of container names to sharding config. | |
| BagOStuff | $srvCache |
| Persistent local server/host cache (e.g. | |
| WANObjectCache | $wanCache |
| Persistent cache accessible to all relevant datacenters. | |
| WANObjectCache | $wanStatCache |
| Cache used for persistent file/container stat entries. | |
| const | CACHE_CHEAP_SIZE = 500 |
| const | CACHE_EXPENSIVE_SIZE = 5 |
| const | CACHE_TTL = 10 |
Protected Attributes inherited from Wikimedia\FileBackend\FileBackend | |
| int | $concurrency |
| How many operations can be done in parallel. | |
| string | $domainId |
| Unique domain name. | |
| LockManager | $lockManager |
| LoggerInterface | $logger |
| string | $name |
| Unique backend name. | |
| string | $parallelize |
| When to do operations in parallel. | |
| callable null | $profiler |
| string | $readOnly |
| Read-only explanation message. | |
| callable null | $statusWrapper |
| array | $streamerOptions |
| Option map for use with HTTPFileStreamer. | |
| TempFSFileFactory | $tmpFileFactory |
Additional Inherited Members | |
Static Public Member Functions inherited from Wikimedia\FileBackend\FileBackend | |
| static | extensionFromPath ( $path, $case='lowercase') |
| Get the final extension from a storage or FS path. | |
| static | isPathTraversalFree ( $path) |
| Check if a relative path has no directory traversals. | |
| static | isStoragePath ( $path) |
| Check if a given path is a "mwstore://" path. | |
| static | makeContentDisposition ( $type, $filename='') |
| Build a Content-Disposition header value per RFC 6266. | |
| static | normalizeStoragePath ( $storagePath) |
| Normalize a storage path by cleaning up directory separators. | |
| static | parentStoragePath ( $storagePath) |
| Get the parent storage directory of a storage path. | |
| static | resetOutputBufferTheDefaultWay () |
| Default behavior of resetOutputBuffer(). | |
| static | splitStoragePath ( $storagePath) |
| Split a storage path into a backend name, a container name, and a relative file path. | |
Public Attributes inherited from Wikimedia\FileBackend\FileBackend | |
| const | ATTR_HEADERS = 1 |
| Bitfield flags for supported features. | |
| const | ATTR_METADATA = 2 |
| const | ATTR_UNICODE_PATHS = 4 |
Static Protected Member Functions inherited from Wikimedia\FileBackend\FileBackendStore | |
| static | isValidContainerName ( $container) |
| Check if a full container name is valid. | |
| static | isValidShortContainerName ( $container) |
| Check if a short container name is valid. | |
| static | normalizeXAttributes (array $xattr) |
| Normalize file headers/metadata to the FileBackend::getFileXAttributes() format. | |
Static Protected Member Functions inherited from Wikimedia\FileBackend\FileBackend | |
| static | normalizeContainerPath ( $path) |
| Validate and normalize a relative storage path. | |
Class for a file system (FS) based file backend.
All "containers" each map to a directory under the backend's base directory. For backwards-compatibility, some container paths can be set to custom paths. The domain ID will not be used in any custom paths, so this should be avoided.
Having directories with thousands of files will diminish performance. Sharding can be accomplished by using FileRepo-style hash paths.
StatusValue messages should avoid mentioning the internal FS paths. PHP warnings are assumed to be logged rather than output.
Definition at line 48 of file FSFileBackend.php.
| Wikimedia\FileBackend\FSFileBackend::__construct | ( | array | $config | ) |
| array | $config |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 83 of file FSFileBackend.php.
| Wikimedia\FileBackend\FSFileBackend::addShellboxInputFile | ( | BoxedCommand | $command, |
| string | $boxedName, | ||
| array | $params ) |
Add a file to a Shellbox command as an input file.
| BoxedCommand | $command | |
| string | $boxedName | |
| array | $params | Parameters include:
|
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 766 of file FSFileBackend.php.
References $path, Wikimedia\FileBackend\FileBackend\newStatus(), and Wikimedia\FileBackend\FSFileBackend\resolveToFSPath().
|
protected |
Chmod a file, suppressing the warnings.
| string | $fsPath | Absolute file system path |
Definition at line 906 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\chmod().
Referenced by Wikimedia\FileBackend\FSFileBackend\chmod(), Wikimedia\FileBackend\FSFileBackend\doCopyInternal(), Wikimedia\FileBackend\FSFileBackend\doCreateInternal(), Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti(), and Wikimedia\FileBackend\FSFileBackend\doStoreInternal().
|
protected |
Clean up directory separators for the given OS.
| string | $fsPath |
Definition at line 988 of file FSFileBackend.php.
|
protected |
Given the short (unresolved) and full (resolved) name of a container, return the file system path of the container.
| string | $shortCont | |
| string | $fullCont |
Definition at line 160 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doCleanInternal(), Wikimedia\FileBackend\FSFileBackend\doDirectoryExists(), Wikimedia\FileBackend\FSFileBackend\doPrepareInternal(), Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), Wikimedia\FileBackend\FSFileBackend\getDirectoryListInternal(), Wikimedia\FileBackend\FSFileBackend\getFileListInternal(), and Wikimedia\FileBackend\FSFileBackend\resolveToFSPath().
|
protected |
Is this a key/value store where directories are just virtual? Virtual directories exists in so much as files exists that are prefixed with the directory path followed by a forward slash.
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 778 of file FSFileBackend.php.
|
protected |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 569 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\rmdir(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
|
protected |
Clears any additional stat caches for storage paths.
| string[] | null | $paths | Storage paths (optional) |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 604 of file FSFileBackend.php.
References $path, and Wikimedia\FileBackend\FSFileBackend\resolveToFSPath().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 324 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\chmod(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 214 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\chmod(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\newTempFileWithContent(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 439 of file FSFileBackend.php.
References Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound(), Wikimedia\FileBackend\FSFileBackend\unlink(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| string | $fullCont | Resolved container name |
| string | $dirRel | Resolved path relative to container |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 620 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FileBackend\splitStoragePath(), Wikimedia\FileBackend\FSFileBackend\trapWarnings(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| FSFileOpHandle[] | $fileOpHandles |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 787 of file FSFileBackend.php.
References Wikimedia\FileBackend\FileBackend\newStatus().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 581 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarnings(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 728 of file FSFileBackend.php.
References $source, Wikimedia\FileBackend\FSFileBackend\chmod(), Wikimedia\FileBackend\FileBackend\copy(), Wikimedia\FileBackend\FileBackend\extensionFromPath(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarnings(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 701 of file FSFileBackend.php.
References $source, Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarnings(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 389 of file FSFileBackend.php.
References Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
|
protected |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 477 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), Wikimedia\FileBackend\FileBackend\newStatus(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
|
protected |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 544 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FSFileBackend\htaccessPrivate(), Wikimedia\FileBackend\FSFileBackend\indexHtmlPrivate(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FileBackend\splitStoragePath(), and Wikimedia\FileBackend\FSFileBackend\unlink().
|
protected |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 516 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FSFileBackend\htaccessPrivate(), Wikimedia\FileBackend\FSFileBackend\indexHtmlPrivate(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FileBackend\splitStoragePath(), Wikimedia\FileBackend\FSFileBackend\trapWarnings(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
Referenced by Wikimedia\FileBackend\FSFileBackend\doPrepareInternal().
|
protected |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 267 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\chmod(), Wikimedia\FileBackend\FileBackend\newStatus(), Wikimedia\FileBackend\FSFileBackend\resolveToFSPath(), Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound(), and Wikimedia\FileBackend\FSFileBackend\untrapWarnings().
| Wikimedia\FileBackend\FSFileBackend::getDirectoryListInternal | ( | $fullCont, | |
| $dirRel, | |||
| array | $params ) |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 639 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FSFileBackend\isFileNotFoundError(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
| Wikimedia\FileBackend\FSFileBackend::getFeatures | ( | ) |
Get the a bitfield of extra features supported by the backend medium.
Reimplemented from Wikimedia\FileBackend\FileBackend.
Definition at line 117 of file FSFileBackend.php.
References Wikimedia\FileBackend\FileBackend\ATTR_UNICODE_PATHS.
| Wikimedia\FileBackend\FSFileBackend::getFileListInternal | ( | $fullCont, | |
| $dirRel, | |||
| array | $params ) |
| string | $fullCont | |
| string | $dirRel | |
| array | $params |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 672 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FSFileBackend\isFileNotFoundError(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
|
protected |
Get a regex matching file not found errors.
Definition at line 1031 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\isFileNotFoundError(), and Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound().
|
protected |
Return the text of a .htaccess file to make a directory private.
Definition at line 977 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), and Wikimedia\FileBackend\FSFileBackend\doSecureInternal().
|
protected |
Return the text of an index.html file to hide directory listings.
Definition at line 968 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), and Wikimedia\FileBackend\FSFileBackend\doSecureInternal().
|
protected |
Determine whether a given error message is a file not found error.
| string | $error |
Definition at line 1058 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\getFileNotFoundRegex().
Referenced by Wikimedia\FileBackend\FSFileBackend\getDirectoryListInternal(), and Wikimedia\FileBackend\FSFileBackend\getFileListInternal().
|
protected |
Check a relative file system path for validity.
| string | $fsPath | Normalized relative path |
Definition at line 140 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\resolveContainerPath().
| Wikimedia\FileBackend\FSFileBackend::isPathUsableInternal | ( | $storagePath | ) |
Check if a file can be created or changed at a given storage path in the backend.FS backends should check that the parent directory exists, files can be written under it, and that any file already there is both readable and writable. Backends using key/value stores should check if the container exists.
| string | $storagePath |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 191 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\resolveToFSPath().
|
protected |
| array | $params | Parameters for FileBackend 'create' operation |
Definition at line 949 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doCreateInternal().
|
protected |
Resolve a relative storage path, checking if it's allowed by the backend.This is intended for internal use, such as encoding illegal chars or perhaps getting absolute paths (e.g. FS based backends). Note that the relative path may be the empty string (e.g. the path is simply to the container).
| string | $container | Container name |
| string | $relStoragePath | Storage path relative to the container |
Reimplemented from Wikimedia\FileBackend\FileBackendStore.
Definition at line 122 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\isLegalRelPath().
|
protected |
Get the absolute file system path for a storage path.
| string | $storagePath |
Definition at line 176 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\containerFSRoot(), Wikimedia\FileBackend\FileBackendStore\resolveStoragePathReal(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
Referenced by Wikimedia\FileBackend\FSFileBackend\addShellboxInputFile(), Wikimedia\FileBackend\FSFileBackend\doClearCache(), Wikimedia\FileBackend\FSFileBackend\doCopyInternal(), Wikimedia\FileBackend\FSFileBackend\doCreateInternal(), Wikimedia\FileBackend\FSFileBackend\doDeleteInternal(), Wikimedia\FileBackend\FSFileBackend\doGetFileStat(), Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti(), Wikimedia\FileBackend\FSFileBackend\doGetLocalReferenceMulti(), Wikimedia\FileBackend\FSFileBackend\doMoveInternal(), Wikimedia\FileBackend\FSFileBackend\doStoreInternal(), and Wikimedia\FileBackend\FSFileBackend\isPathUsableInternal().
|
protected |
Remove an empty directory, suppressing the warnings.
| string | $fsDirectory | Absolute file system path |
Definition at line 937 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\rmdir().
Referenced by Wikimedia\FileBackend\FSFileBackend\doCleanInternal(), and Wikimedia\FileBackend\FSFileBackend\rmdir().
|
protected |
Listen for E_WARNING errors and track whether any that happen.
| string | null | $regexIgnore | Optional regex of errors to ignore |
Definition at line 997 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doDirectoryExists(), Wikimedia\FileBackend\FSFileBackend\doGetFileStat(), Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti(), Wikimedia\FileBackend\FSFileBackend\doGetLocalReferenceMulti(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), and Wikimedia\FileBackend\FSFileBackend\trapWarningsIgnoringNotFound().
|
protected |
Track E_WARNING errors but ignore any that correspond to ENOENT "No such file or directory".
Definition at line 1011 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\getFileNotFoundRegex(), and Wikimedia\FileBackend\FSFileBackend\trapWarnings().
Referenced by Wikimedia\FileBackend\FSFileBackend\doCopyInternal(), Wikimedia\FileBackend\FSFileBackend\doCreateInternal(), Wikimedia\FileBackend\FSFileBackend\doDeleteInternal(), Wikimedia\FileBackend\FSFileBackend\doMoveInternal(), and Wikimedia\FileBackend\FSFileBackend\doStoreInternal().
|
protected |
Unlink a file, suppressing the warnings.
| string | $fsPath | Absolute file system path |
Definition at line 923 of file FSFileBackend.php.
References Wikimedia\FileBackend\FSFileBackend\unlink().
Referenced by Wikimedia\FileBackend\FSFileBackend\doDeleteInternal(), Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), and Wikimedia\FileBackend\FSFileBackend\unlink().
|
protected |
Stop listening for E_WARNING errors and get whether any happened.
Definition at line 1020 of file FSFileBackend.php.
Referenced by Wikimedia\FileBackend\FSFileBackend\doCopyInternal(), Wikimedia\FileBackend\FSFileBackend\doCreateInternal(), Wikimedia\FileBackend\FSFileBackend\doDeleteInternal(), Wikimedia\FileBackend\FSFileBackend\doDirectoryExists(), Wikimedia\FileBackend\FSFileBackend\doGetFileStat(), Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti(), Wikimedia\FileBackend\FSFileBackend\doGetLocalReferenceMulti(), Wikimedia\FileBackend\FSFileBackend\doMoveInternal(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), and Wikimedia\FileBackend\FSFileBackend\doStoreInternal().
|
protected |
Directory holding the container directories.
Definition at line 53 of file FSFileBackend.php.
|
protected |
Map of container names to root paths for custom container paths.
Definition at line 56 of file FSFileBackend.php.
|
protected |
OS username running this script.
Definition at line 68 of file FSFileBackend.php.
|
protected |
Directory permission mode.
Definition at line 59 of file FSFileBackend.php.
|
protected |
File permission mode.
Definition at line 61 of file FSFileBackend.php.
|
protected |
Required OS username to own files.
Definition at line 63 of file FSFileBackend.php.
|
protected |
Simpler version of PHP_OS_FAMILY.
Definition at line 66 of file FSFileBackend.php.
|
protected |
Cache for known prepared/usable directories.
Definition at line 50 of file FSFileBackend.php.