3 * Copyright © 2013 Mark Holmquist <mtraceur@member.fsf.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * A query action to return meta information about the foreign file repos
26 * configured on the wiki.
30 class ApiQueryFileRepoInfo
extends ApiQueryBase
{
32 public function __construct( $query, $moduleName ) {
33 parent
::__construct( $query, $moduleName, 'fri' );
36 protected function getInitialisedRepoGroup() {
37 $repoGroup = RepoGroup
::singleton();
38 $repoGroup->initialiseRepos();
42 public function execute() {
43 $params = $this->extractRequestParams();
44 $props = array_flip( $params['prop'] );
48 $repoGroup = $this->getInitialisedRepoGroup();
50 $repoGroup->forEachForeignRepo( function ( $repo ) use ( &$repos, $props ) {
51 $repos[] = array_intersect_key( $repo->getInfo(), $props );
54 $repos[] = array_intersect_key( $repoGroup->getLocalRepo()->getInfo(), $props );
56 $result = $this->getResult();
57 $result->setIndexedTagName( $repos, 'repo' );
58 $result->addValue( array( 'query' ), 'repos', $repos );
61 public function getCacheMode( $params ) {
65 public function getAllowedParams() {
66 $props = $this->getProps();
70 ApiBase
::PARAM_DFLT
=> join( '|', $props ),
71 ApiBase
::PARAM_ISMULTI
=> true,
72 ApiBase
::PARAM_TYPE
=> $props,
77 public function getProps() {
79 $repoGroup = $this->getInitialisedRepoGroup();
81 $repoGroup->forEachForeignRepo( function ( $repo ) use ( &$props ) {
82 $props = array_merge( $props, array_keys( $repo->getInfo() ) );
85 return array_values( array_unique( array_merge(
87 array_keys( $repoGroup->getLocalRepo()->getInfo() )
91 public function getParamDescription() {
94 'Which repository properties to get (there may be more available on some wikis):',
95 ' apiurl - URL to the repository API - helpful for getting image info from the host.',
96 ' name - The key of the repository - used in e.g. ' .
97 '$wgForeignFileRepos and imageinfo return values.',
98 ' displayname - The human-readable name of the repository wiki.',
99 ' rooturl - Root URL for image paths.',
100 ' local - Whether that repository is the local one or not.',
105 public function getDescription() {
106 return 'Return meta information about image repositories configured on the wiki.';
109 public function getExamples() {
111 'api.php?action=query&meta=filerepoinfo&friprop=apiurl|name|displayname',