54 parent::__construct( $config );
55 $this->backend = $config[
'backend'];
56 $this->repoName = $config[
'repoName'];
57 $this->dbHandleFunc = $config[
'dbHandleFactory'];
82 return current( $paths );
100 foreach ( $paths as $i =>
$path ) {
101 if ( !$latest && $this->resolvedPathCache->hasField(
$path,
'target', 10 ) ) {
102 $resolved[$i] = $this->resolvedPathCache->getField(
$path,
'target' );
108 if ( $container ===
"{$this->repoName}-public" ) {
110 if ( strpos(
$path,
'!' ) !==
false ) {
111 $sha1 = $db->selectField(
'oldimage',
'oi_sha1',
112 [
'oi_archive_name' =>
$name ],
116 $sha1 = $db->selectField(
'image',
'img_sha1',
117 [
'img_name' =>
$name ],
121 if ( $sha1 ===
null || !strlen( $sha1 ) ) {
122 $resolved[$i] =
$path;
126 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
127 } elseif ( $container ===
"{$this->repoName}-deleted" ) {
129 $sha1 = substr(
$name, 0, strpos(
$name,
'.' ) );
131 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
133 $resolved[$i] =
$path;
138 foreach ( $paths as $i =>
$path ) {
139 $res[$i] = $resolved[$i];
146 return $this->backend->doOperationsInternal( $this->
mungeOpPaths( $ops ), $opts );
150 return $this->backend->doQuickOperationsInternal( $this->
mungeOpPaths( $ops ), $opts );
154 return $this->backend->doPrepare( $params );
158 return $this->backend->doSecure( $params );
162 return $this->backend->doPublish( $params );
166 return $this->backend->doClean( $params );
208 $params[
'headers'][] =
"Content-type: $type";
230 return $this->backend->directoryExists( $params );
234 return $this->backend->getDirectoryList( $params );
238 return $this->backend->getFileList( $params );
242 return $this->backend->getFeatures();
246 $this->backend->clearCache(
null );
251 $this->backend->preloadCache( $paths );
259 return $this->backend->getScopedLocksForOps( $ops, $status );
271 if ( strlen( $sha1 ) < 3 ) {
272 throw new InvalidArgumentException(
"Invalid file SHA-1." );
274 return $this->backend->getContainerStoragePath(
"{$this->repoName}-original" ) .
275 "/{$sha1[0]}/{$sha1[1]}/{$sha1[2]}/{$sha1}";
284 protected function getDB( $index ) {
285 if ( !isset( $this->dbs[$index] ) ) {
287 $this->dbs[$index] = $func( $index );
289 return $this->dbs[$index];
300 $latest = !empty( $params[
'latest'] );
302 if ( isset( $params[
'src'] ) ) {
303 $params[
'src'] = $this->
getBackendPath( $params[
'src'], $latest );
306 if ( isset( $params[
'srcs'] ) ) {
310 return $this->backend->$function( $params );
321 $origPaths = $params[
'srcs'];
322 $params[
'srcs'] = $this->
getBackendPaths( $params[
'srcs'], !empty( $params[
'latest'] ) );
323 $pathMap = array_combine( $params[
'srcs'], $origPaths );
325 $results = $this->backend->$function( $params );
328 foreach ( $results as
$path => $result ) {
329 $contents[$pathMap[
$path]] = $result;
345 static $srcRefOps = [
'store',
'copy',
'describe' ];
346 foreach ( $ops as &$op ) {
347 if ( isset( $op[
'src'] ) && in_array( $op[
'op'], $srcRefOps ) ) {
350 if ( isset( $op[
'srcs'] ) ) {
Proxy backend that manages file layout rewriting for FileRepo.
getFileSha1Base36(array $params)
Get a SHA-1 hash of the content of the file at a storage path in the backend.
__construct(array $config)
Create a new backend instance from configuration.
concatenate(array $params)
Concatenate a list of storage files into a single file system file.
streamFile(array $params)
Stream the content of the file at a storage path in the backend.
getScopedLocksForOps(array $ops, StatusValue $status)
Get an array of scoped locks needed for a batch of file operations.
getInternalBackend()
Get the underlying FileBackend that is being wrapped.
getLocalCopyMulti(array $params)
Like getLocalCopy() except it takes an array of storage paths and yields an order preserved-map of st...
doOperationsInternal(array $ops, array $opts)
fileExists(array $params)
Check if a file exists at a storage path in the backend.
clearCache(array $paths=null)
Invalidate any in-process file stat and property cache.
getPathForSHA1( $sha1)
Get the ultimate original storage path for a file.
getDB( $index)
Get a connection to the repo file registry DB.
translateSrcParams( $function, array $params)
Translates paths found in the "src" or "srcs" keys of a params array.
mungeOpPaths(array $ops)
Translate legacy "title" source paths to their "sha1" counterparts.
getFileHttpUrl(array $params)
Return an HTTP URL to a given file that requires no authentication to use.
getLocalReferenceMulti(array $params)
Like getLocalReference() except it takes an array of storage paths and yields an order-preserved map ...
preloadCache(array $paths)
Preload persistent file stat cache and property cache into in-process cache.
getFileSize(array $params)
Get the size (bytes) of a file at a storage path in the backend.
getFileProps(array $params)
Get the properties of the content of the file at a storage path in the backend.
getFeatures()
Get the a bitfield of extra features supported by the backend medium.
MapCacheLRU $resolvedPathCache
translateArrayResults( $function, array $params)
Translates paths when the backend function returns results keyed by paths.
preloadFileStat(array $params)
Preload file stat information (concurrently if possible) into in-process cache.
directoryExists(array $params)
Check if a directory exists at a given storage path.
getBackendPaths(array $paths, $latest=true)
Translate legacy "title" paths to their "sha1" counterparts.
getFileList(array $params)
Get an iterator to list all stored files under a storage directory.
getFileStat(array $params)
Get quick information about a file at a storage path in the backend.
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.
getFileContentsMulti(array $params)
Like getFileContents() except it takes an array of storage paths and returns an order preserved map o...
doQuickOperationsInternal(array $ops, array $opts)
getDirectoryList(array $params)
Get an iterator to list all directories under a storage directory.
getBackendPath( $path, $latest=true)
Translate a legacy "title" path to its "sha1" counterpart.
Base class for all file backend classes (including multi-write backends).
string $name
Unique backend name.
getDomainId()
Get the domain identifier used for this backend (possibly empty).
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
getName()
Get the unique backend name.
Handles a simple LRU key/value map with a maximum number of entries.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
static contentTypeFromPath( $filename, $safe=true)
Determine the file type of a file based on the path.