45 parent::__construct( $query, $moduleName,
'fri' );
53 $props = array_fill_keys( $params[
'prop'],
true );
57 $foreignTargets = $conf->get(
'ForeignUploadTargets' );
59 $this->repoGroup->forEachForeignRepo(
60 static function (
FileRepo $repo ) use ( &$repos, $props, $foreignTargets ) {
62 $repoProps[
'canUpload'] = in_array( $repoProps[
'name'], $foreignTargets );
64 $repos[] = array_intersect_key( $repoProps, $props );
68 $localInfo = $this->repoGroup->getLocalRepo()->getInfo();
69 $localInfo[
'canUpload'] = $conf->get(
'EnableUploads' );
70 $repos[] = array_intersect_key( $localInfo, $props );
73 ApiResult::setIndexedTagName( $repos,
'repo' );
74 ApiResult::setArrayTypeRecursive( $repos,
'assoc' );
75 ApiResult::setArrayType( $repos,
'array' );
76 $result->addValue( [
'query' ],
'repos', $repos );
98 $this->repoGroup->forEachForeignRepo(
static function (
FileRepo $repo ) use ( &$props ) {
99 $props = array_merge( $props, array_keys( $repo->
getInfo() ) );
102 $propValues = array_values( array_unique( array_merge(
104 array_keys( $this->repoGroup->getLocalRepo()->getInfo() )
107 $propValues[] =
'canUpload';
116 $props = array_intersect( [
'apiurl',
'name',
'displayname' ], $this->
getProps() );
118 $examples[
'action=query&meta=filerepoinfo&friprop=' . implode(
'|', $props )] =
119 'apihelp-query+filerepoinfo-example-simple';
126 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Filerepoinfo';
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
This is a base class for all Query modules.
A query action to return meta information about the foreign file repos configured on the wiki.
__construct(ApiQuery $query, $moduleName, RepoGroup $repoGroup)
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getExamplesMessages()
Returns usage examples for this module.
getHelpUrls()
Return links to more detailed help pages about the module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
This is the main query class.
Base class for file repositories.
getInfo()
Return information about the repository.
Prioritized list of file repositories.