56 parent::__construct( $config );
57 $this->backend = $config[
'backend'];
58 $this->repoName = $config[
'repoName'];
59 $this->dbHandleFunc = $config[
'dbHandleFactory'];
84 return current( $paths );
102 foreach ( $paths as $i =>
$path ) {
103 if ( !$latest && $this->resolvedPathCache->hasField(
$path,
'target', 10 ) ) {
104 $resolved[$i] = $this->resolvedPathCache->getField(
$path,
'target' );
108 [ , $container ] = FileBackend::splitStoragePath(
$path );
110 if ( $container ===
"{$this->repoName}-public" ) {
112 if ( str_contains(
$path,
'!' ) ) {
113 $sha1 = $db->newSelectQueryBuilder()
114 ->select(
'oi_sha1' )
116 ->where( [
'oi_archive_name' =>
$name ] )
117 ->caller( __METHOD__ )->fetchField();
119 $sha1 = $db->newSelectQueryBuilder()
120 ->select(
'img_sha1' )
122 ->where( [
'img_name' =>
$name ] )
123 ->caller( __METHOD__ )->fetchField();
125 if ( $sha1 ===
null || !strlen( $sha1 ) ) {
126 $resolved[$i] =
$path;
130 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
131 } elseif ( $container ===
"{$this->repoName}-deleted" ) {
133 $sha1 = substr(
$name, 0, strpos(
$name,
'.' ) );
135 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
137 $resolved[$i] =
$path;
142 foreach ( $paths as $i =>
$path ) {
143 $res[$i] = $resolved[$i];
150 return $this->backend->doOperationsInternal( $this->
mungeOpPaths( $ops ), $opts );
154 return $this->backend->doQuickOperationsInternal( $this->
mungeOpPaths( $ops ), $opts );
158 return $this->backend->doPrepare(
$params );
162 return $this->backend->doSecure(
$params );
166 return $this->backend->doPublish(
$params );
170 return $this->backend->doClean(
$params );
210 $type = StreamFile::contentTypeFromPath(
$params[
'src'] );
211 if ( $type && $type !=
'unknown/unknown' ) {
212 $params[
'headers'][] =
"Content-type: $type";
234 return $this->backend->directoryExists(
$params );
238 return $this->backend->getDirectoryList(
$params );
242 return $this->backend->getFileList(
$params );
246 return $this->backend->getFeatures();
250 $this->backend->clearCache(
null );
255 $this->backend->preloadCache( $paths );
263 return $this->backend->getScopedLocksForOps( $ops, $status );
275 if ( strlen( $sha1 ) < 3 ) {
276 throw new InvalidArgumentException(
"Invalid file SHA-1." );
278 return $this->backend->getContainerStoragePath(
"{$this->repoName}-original" ) .
279 "/{$sha1[0]}/{$sha1[1]}/{$sha1[2]}/{$sha1}";
288 protected function getDB( $index ) {
289 if ( !isset( $this->dbs[$index] ) ) {
291 $this->dbs[$index] = $func( $index );
293 return $this->dbs[$index];
304 $latest = !empty(
$params[
'latest'] );
306 if ( isset(
$params[
'src'] ) ) {
310 if ( isset(
$params[
'srcs'] ) ) {
314 return $this->backend->$function(
$params );
327 $pathMap = array_combine(
$params[
'srcs'], $origPaths );
329 $results = $this->backend->$function(
$params );
332 foreach ( $results as
$path => $result ) {
333 $contents[$pathMap[
$path]] = $result;
349 static $srcRefOps = [
'store',
'copy',
'describe' ];
350 foreach ( $ops as &$op ) {
351 if ( isset( $op[
'src'] ) && in_array( $op[
'op'], $srcRefOps ) ) {
354 if ( isset( $op[
'srcs'] ) ) {
array $params
The job parameters.
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.
Store key-value entries in a size-limited in-memory LRU cache.
Generic operation result class Has warning/error list, boolean status and arbitrary value.