X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/extensions/Gadgets/api/ApiQueryGadgetCategories.php diff --git a/extensions/Gadgets/api/ApiQueryGadgetCategories.php b/extensions/Gadgets/api/ApiQueryGadgetCategories.php new file mode 100644 index 00000000..489f6650 --- /dev/null +++ b/extensions/Gadgets/api/ApiQueryGadgetCategories.php @@ -0,0 +1,110 @@ +extractRequestParams(); + $this->props = array_flip( $params['prop'] ); + $this->neededNames = isset( $params['names'] ) + ? array_flip( $params['names'] ) + : false; + + $this->getMain()->setCacheMode( 'public' ); + + $this->getList(); + } + + private function getList() { + $data = []; + $result = $this->getResult(); + $gadgets = GadgetRepo::singleton()->getStructuredList(); + + if ( $gadgets ) { + foreach ( $gadgets as $category => $list ) { + if ( !$this->neededNames || isset( $this->neededNames[$category] ) ) { + $row = []; + if ( isset( $this->props['name'] ) ) { + $row['name'] = $category; + } + + if ( $category !== "" ) { + if ( isset( $this->props['title'] ) ) { + $row['desc'] = $this->msg( "gadget-section-$category" )->parse(); + } + } + + if ( isset( $this->props['members'] ) ) { + $row['members'] = count( $list ); + } + + $data[] = $row; + } + } + } + $result->setIndexedTagName( $data, 'category' ); + $result->addValue( 'query', $this->getModuleName(), $data ); + } + + public function getAllowedParams() { + return [ + 'prop' => [ + ApiBase::PARAM_DFLT => 'name', + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_TYPE => [ + 'name', + 'title', + 'members', + ], + ], + 'names' => [ + ApiBase::PARAM_TYPE => 'string', + ApiBase::PARAM_ISMULTI => true, + ], + ]; + } + + /** + * @see ApiBase::getExamplesMessages() + * @return array + */ + protected function getExamplesMessages() { + return [ + 'action=query&list=gadgetcategories' + => 'apihelp-query+gadgetcategories-example-1', + 'action=query&list=gadgetcategories&gcnames=foo|bar&gcprop=name|title|members' + => 'apihelp-query+gadgetcategories-example-2', + ]; + } +}