MediaWiki
1.34.0
|
Prioritized list of file repositories. More...
Public Member Functions | |
__construct ( $localInfo, $foreignInfo, $wanCache) | |
Construct a group of file repositories. More... | |
checkRedirect (Title $title) | |
Interface for FileRepo::checkRedirect() More... | |
clearCache (Title $title=null) | |
Clear RepoGroup process cache used for finding a file. More... | |
findBySha1 ( $hash) | |
Find all instances of files with this key. More... | |
findBySha1s (array $hashes) | |
Find all instances of files with this keys. More... | |
findFile ( $title, $options=[]) | |
Search repositories for an image. More... | |
findFileFromKey ( $hash, $options=[]) | |
Find an instance of the file with this key, created at the specified time Returns false if the file does not exist. More... | |
findFiles (array $inputItems, $flags=0) | |
Search repositories for many files at once. More... | |
forEachForeignRepo ( $callback, $params=[]) | |
Call a function for each foreign repo, with the repo object as the first parameter. More... | |
getFileProps ( $fileName) | |
getLocalRepo () | |
Get the local repository, i.e. More... | |
getRepo ( $index) | |
Get the repo instance with a given key. More... | |
getRepoByName ( $name) | |
Get the repo instance by its name. More... | |
hasForeignRepos () | |
Does the installation have any foreign repos set up? More... | |
initialiseRepos () | |
Initialise the $repos array. More... | |
splitVirtualUrl ( $url) | |
Split a virtual URL into repo, zone and rel parts. More... | |
Static Public Member Functions | |
static | destroySingleton () |
static | setSingleton ( $instance) |
static | singleton () |
Public Attributes | |
const | MAX_CACHE_SIZE = 500 |
Maximum number of cache items. More... | |
Protected Member Functions | |
newRepo ( $info) | |
Create a repo class based on an info structure. More... | |
Protected Attributes | |
MapCacheLRU | $cache |
array | $foreignInfo |
FileRepo[] | $foreignRepos |
array | $localInfo |
LocalRepo | $localRepo |
bool | $reposInitialised = false |
WANObjectCache | $wanCache |
Prioritized list of file repositories.
Definition at line 31 of file RepoGroup.php.
RepoGroup::__construct | ( | $localInfo, | |
$foreignInfo, | |||
$wanCache | |||
) |
Construct a group of file repositories.
Do not call this – use MediaWikiServices::getRepoGroup.
array | $localInfo | Associative array for local repo's info |
array | $foreignInfo | Array of repository info arrays. Each info array is an associative array with the 'class' member giving the class name. The entire array is passed to the repository constructor as the first parameter. |
WANObjectCache | $wanCache |
Definition at line 98 of file RepoGroup.php.
References $foreignInfo, $localInfo, and $wanCache.
RepoGroup::checkRedirect | ( | Title | $title | ) |
Interface for FileRepo::checkRedirect()
Title | $title |
Definition at line 229 of file RepoGroup.php.
References $title, and initialiseRepos().
RepoGroup::clearCache | ( | Title | $title = null | ) |
|
static |
This will cause bugs if you don't reset all other services that depend on this one at the same time.
Definition at line 68 of file RepoGroup.php.
Referenced by PageImages\Tests\Hooks\LinksUpdateHookHandlerTest\tearDown().
RepoGroup::findBySha1 | ( | $hash | ) |
Find all instances of files with this key.
string | $hash | Base 36 SHA-1 hash |
Definition at line 281 of file RepoGroup.php.
References initialiseRepos().
RepoGroup::findBySha1s | ( | array | $hashes | ) |
Find all instances of files with this keys.
array | $hashes | Base 36 SHA-1 hashes |
Definition at line 301 of file RepoGroup.php.
References $hashes, and initialiseRepos().
RepoGroup::findFile | ( | $title, | |
$options = [] |
|||
) |
Search repositories for an image.
Title | string | $title | Title object or string |
array | $options | Associative array of options: time: requested time for an archived image, or false for the current version. An image object will be returned which was created at the specified time. ignoreRedirect: If true, do not follow file redirects private: If true, return restricted (deleted) files if the current user is allowed to view them. Otherwise, such files will not be found. latest: If true, load from the latest available data into File objects -param array{time?:mixed,ignoreRedirect?:bool,private?:bool,latest?:bool} $options |
Definition at line 121 of file RepoGroup.php.
References $title, initialiseRepos(), and File\normalizeTitle().
RepoGroup::findFileFromKey | ( | $hash, | |
$options = [] |
|||
) |
Find an instance of the file with this key, created at the specified time Returns false if the file does not exist.
string | $hash | Base 36 SHA-1 hash |
array | $options | Option array, same as findFile() |
Definition at line 257 of file RepoGroup.php.
References $file, and initialiseRepos().
RepoGroup::findFiles | ( | array | $inputItems, |
$flags = 0 |
|||
) |
Search repositories for many files at once.
array | $inputItems | An array of titles, or an array of findFile() options with the "title" option giving the title. Example: |
$findItem = [ 'title' => $title, 'private' => true ]; $findBatch = [ $findItem ]; $repo->findFiles( $findBatch );
No title should appear in $items twice, as the result use titles as keys
int | $flags | Supports:
|
Definition at line 194 of file RepoGroup.php.
References initialiseRepos(), and File\normalizeTitle().
RepoGroup::forEachForeignRepo | ( | $callback, | |
$params = [] |
|||
) |
Call a function for each foreign repo, with the repo object as the first parameter.
callable | $callback | The function to call |
array | $params | Optional additional parameters to pass to the function |
Definition at line 372 of file RepoGroup.php.
References initialiseRepos().
RepoGroup::getFileProps | ( | $fileName | ) |
string | $fileName |
Definition at line 448 of file RepoGroup.php.
References getRepo(), FileRepo\isVirtualUrl(), and splitVirtualUrl().
RepoGroup::getLocalRepo | ( | ) |
Get the local repository, i.e.
the one corresponding to the local image table. Files are typically uploaded to the local repository.
Definition at line 357 of file RepoGroup.php.
References getRepo().
RepoGroup::getRepo | ( | $index | ) |
Get the repo instance with a given key.
string | int | $index |
Definition at line 323 of file RepoGroup.php.
References $localRepo, and initialiseRepos().
Referenced by getFileProps(), and getLocalRepo().
RepoGroup::getRepoByName | ( | $name | ) |
Get the repo instance by its name.
string | $name |
Definition at line 338 of file RepoGroup.php.
References initialiseRepos().
RepoGroup::hasForeignRepos | ( | ) |
Does the installation have any foreign repos set up?
Definition at line 389 of file RepoGroup.php.
References $foreignRepos, and initialiseRepos().
RepoGroup::initialiseRepos | ( | ) |
Initialise the $repos array.
Definition at line 399 of file RepoGroup.php.
References newRepo().
Referenced by checkRedirect(), findBySha1(), findBySha1s(), findFile(), findFileFromKey(), findFiles(), forEachForeignRepo(), getRepo(), getRepoByName(), and hasForeignRepos().
|
protected |
Create a repo class based on an info structure.
array | $info |
Definition at line 417 of file RepoGroup.php.
References $wanCache.
Referenced by initialiseRepos().
|
static |
RepoGroup | $instance |
Definition at line 77 of file RepoGroup.php.
Referenced by PageImages\Tests\Hooks\LinksUpdateHookHandlerTest\testIsFreeImage().
|
static |
Definition at line 60 of file RepoGroup.php.
Referenced by RevDelArchivedFileItem\__construct(), ApiQueryAllImages\__construct(), UploadFromStash\__construct(), UploadFromChunks\__construct(), RevertAction\checkCanExecute(), ApiDelete\deleteFile(), RevDelFileList\doPreCommitUpdates(), ApiQueryStashImageInfo\execute(), FindMissingFiles\execute(), FindOrphanedFiles\execute(), CheckImages\execute(), DeleteArchivedFiles\execute(), CleanupUploadStash\execute(), ApiQueryImageInfo\execute(), RefreshFileHeaders\execute(), FileDeleteForm\execute(), SpecialUploadStash\execute(), LocalFileRestoreBatch\execute(), RefreshImageMetadata\execute(), CleanupImages\filePath(), ImageListPager\formatValue(), ContentSecurityPolicy\getAdditionalSelfUrls(), UploadForm\getDescriptionSection(), SpecialFileDuplicateSearch\getDupes(), WikiFilePage\getDuplicates(), ApiQueryFileRepoInfo\getInitialisedRepoGroup(), ImageBuilder\getRepo(), MigrateFileRepoLayout\getRepo(), ImportableUploadRevisionImporter\import(), RevDelFileItem\initFile(), WantedFilesPage\likelyToHaveFalsePositives(), WikiPage\onArticleDelete(), PurgeChangedFiles\purgeFromLogType(), ApiQueryDuplicateFiles\run(), EraseArchivedFile\scrubVersion(), DatabaseUpdater\setFileAccess(), SpecialUndelete\showFile(), SpecialUploadStash\tryClearStashedUploads(), SpecialRevisionDelete\tryShowFile(), WikiPage\updateRedirectOn(), ApiFileRevert\validateParameters(), wfExtractThumbRequestInfo(), wfStreamThumb(), and wfThumbHandle404().
RepoGroup::splitVirtualUrl | ( | $url | ) |
Split a virtual URL into repo, zone and rel parts.
string | $url |
MWException |
Definition at line 431 of file RepoGroup.php.
Referenced by getFileProps().
|
protected |
Definition at line 51 of file RepoGroup.php.
|
protected |
Definition at line 48 of file RepoGroup.php.
Referenced by __construct().
|
protected |
Definition at line 36 of file RepoGroup.php.
Referenced by hasForeignRepos().
|
protected |
Definition at line 45 of file RepoGroup.php.
Referenced by __construct().
|
protected |
Definition at line 33 of file RepoGroup.php.
Referenced by getRepo().
|
protected |
Definition at line 42 of file RepoGroup.php.
|
protected |
Definition at line 39 of file RepoGroup.php.
Referenced by __construct(), and newRepo().
const RepoGroup::MAX_CACHE_SIZE = 500 |
Maximum number of cache items.
Definition at line 54 of file RepoGroup.php.