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( ApiQuery
$query, $moduleName ) {
33 parent
::__construct( $query, $moduleName, 'fri' );
36 protected function getInitialisedRepoGroup() {
37 $repoGroup = RepoGroup
::singleton();
38 $repoGroup->initialiseRepos();
43 public function execute() {
44 $conf = $this->getConfig();
46 $params = $this->extractRequestParams();
47 $props = array_flip( $params['prop'] );
51 $repoGroup = $this->getInitialisedRepoGroup();
52 $foreignTargets = $conf->get( 'ForeignUploadTargets' );
54 $repoGroup->forEachForeignRepo( function ( $repo ) use ( &$repos, $props, $foreignTargets ) {
55 $repoProps = $repo->getInfo();
56 $repoProps['canUpload'] = in_array( $repoProps['name'], $foreignTargets );
58 $repos[] = array_intersect_key( $repoProps, $props );
61 $localInfo = $repoGroup->getLocalRepo()->getInfo();
62 $localInfo['canUpload'] = $conf->get( 'EnableUploads' );
63 $repos[] = array_intersect_key( $localInfo, $props );
65 $result = $this->getResult();
66 ApiResult
::setIndexedTagName( $repos, 'repo' );
67 ApiResult
::setArrayTypeRecursive( $repos, 'assoc' );
68 ApiResult
::setArrayType( $repos, 'array' );
69 $result->addValue( array( 'query' ), 'repos', $repos );
72 public function getCacheMode( $params ) {
76 public function getAllowedParams() {
77 $props = $this->getProps();
81 ApiBase
::PARAM_DFLT
=> join( '|', $props ),
82 ApiBase
::PARAM_ISMULTI
=> true,
83 ApiBase
::PARAM_TYPE
=> $props,
88 public function getProps() {
90 $repoGroup = $this->getInitialisedRepoGroup();
92 $repoGroup->forEachForeignRepo( function ( $repo ) use ( &$props ) {
93 $props = array_merge( $props, array_keys( $repo->getInfo() ) );
96 $propValues = array_values( array_unique( array_merge(
98 array_keys( $repoGroup->getLocalRepo()->getInfo() )
101 $propValues[] = 'canUpload';
106 protected function getExamplesMessages() {
108 'action=query&meta=filerepoinfo&friprop=apiurl|name|displayname'
109 => 'apihelp-query+filerepoinfo-example-simple',
113 public function getHelpUrls() {
114 return 'https://www.mediawiki.org/wiki/API:Filerepoinfo';