From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- extensions/Gadgets/ApiQueryGadgets.php | 205 +++++++++++++++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 extensions/Gadgets/ApiQueryGadgets.php (limited to 'extensions/Gadgets/ApiQueryGadgets.php') diff --git a/extensions/Gadgets/ApiQueryGadgets.php b/extensions/Gadgets/ApiQueryGadgets.php new file mode 100644 index 00000000..46e9eb24 --- /dev/null +++ b/extensions/Gadgets/ApiQueryGadgets.php @@ -0,0 +1,205 @@ +extractRequestParams(); + $this->props = array_flip( $params['prop'] ); + $this->categories = isset( $params['categories'] ) + ? array_flip( $params['categories'] ) + : false; + $this->neededIds = isset( $params['ids'] ) + ? array_flip( $params['ids'] ) + : false; + $this->listAllowed = isset( $params['allowed'] ) && $params['allowed']; + $this->listEnabled = isset( $params['enabled'] ) && $params['enabled']; + + $this->getMain()->setCacheMode( $this->listAllowed || $this->listEnabled + ? 'anon-public-user-private' : 'public' ); + + $this->applyList( $this->getList() ); + } + + private function getList() { + $gadgets = Gadget::loadStructuredList(); + + $result = array(); + foreach ( $gadgets as $category => $list ) { + if ( $this->categories && !isset( $this->categories[$category] ) ) { + continue; + } + foreach ( $list as $g ) { + if ( $this->isNeeded( $g ) ) { + $result[] = $g; + } + } + } + return $result; + } + + private function applyList( $gadgets ) { + $data = array(); + $result = $this->getResult(); + + foreach ( $gadgets as $g ) { + $row = array(); + if ( isset( $this->props['id'] ) ) { + $row['id'] = $g->getName(); + } + if ( isset( $this->props['metadata'] ) ) { + $row['metadata'] = $this->fakeMetadata( $g ); + $this->setIndexedTagNameForMetadata( $row['metadata'] ); + } + if ( isset( $this->props['desc'] ) ) { + $row['desc'] = $g->getDescription(); + } + $data[] = $row; + } + $result->setIndexedTagName( $data, 'gadget' ); + $result->addValue( 'query', $this->getModuleName(), $data ); + } + + /** + * + */ + private function isNeeded( Gadget $gadget ) { + global $wgUser; + + return ( $this->neededIds === false || isset( $this->neededIds[$gadget->getName()] ) ) + && ( !$this->listAllowed || $gadget->isAllowed( $wgUser ) ) + && ( !$this->listEnabled || $gadget->isEnabled( $wgUser ) ); + } + + private function fakeMetadata( Gadget $g ) { + return array( + 'settings' => array( + 'rights' => $g->getRequiredRights(), + 'default' => $g->isOnByDefault(), + 'hidden' => false, // Only exists in RL2 branch + 'shared' => false, // Only exists in RL2 branch + 'category' => $g->getCategory(), + ), + 'module' => array( + 'scripts' => $g->getScripts(), + 'styles' => $g->getStyles(), + 'dependencies' => $g->getDependencies(), + 'messages' => array(), // Only exists in RL2 branch + ) + ); + } + + private function setIndexedTagNameForMetadata( &$metadata ) { + static $tagNames = array( + 'rights' => 'right', + 'scripts' => 'script', + 'styles' => 'style', + 'dependencies' => 'dependency', + 'messages' => 'message', + ); + + $result = $this->getResult(); + foreach ( $metadata as $type => &$data ) { + foreach ( $data as $key => &$value ) { + if ( is_array( $value ) ) { + $tag = isset( $tagNames[$key] ) ? $tagNames[$key] : $key; + $result->setIndexedTagName( $value, $tag ); + } + } + } + } + + public function getAllowedParams() { + return array( + 'prop' => array( + ApiBase::PARAM_DFLT => 'id|metadata', + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_TYPE => array( + 'id', + 'metadata', + 'desc', + ), + ), + 'language' => null, + 'categories' => array( + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_TYPE => 'string', + ), + 'ids' => array( + ApiBase::PARAM_TYPE => 'string', + ApiBase::PARAM_ISMULTI => true, + ), + 'allowed' => false, + 'enabled' => false, + ); + } + + public function getDescription() { + return 'Returns a list of gadgets used on this wiki'; + } + + public function getParamDescription() { + $p = $this->getModulePrefix(); + return array( + 'prop' => array( + 'What gadget information to get:', + ' id - Internal gadget ID', + ' metadata - The gadget metadata', + ' desc - Gadget description transformed into HTML (can be slow, use only if really needed)', + ), + 'categories' => 'Gadgets from what categories to retrieve', + 'ids' => 'ID(s) of gadgets to retrieve', + 'allowed' => 'List only gadgets allowed to current user', + 'enabled' => 'List only gadgets enabled by current user', + ); + } + + protected function getExamples() { + $params = $this->getAllowedParams(); + $allProps = implode( '|', $params['prop'][ApiBase::PARAM_TYPE] ); + return array( + 'Get a list of gadgets along with their descriptions:', + ' api.php?action=query&list=gadgets&gaprop=id|desc', + 'Get a list of gadgets with all possble properties:', + " api.php?action=query&list=gadgets&gaprop=$allProps", + 'Get a list of gadgets belonging to caregory "foo":', + ' api.php?action=query&list=gadgets&gacategories=foo', + 'Get information about gadgets "foo" and "bar":', + ' api.php?action=query&list=gadgets&gaids=foo|bar&gaprop=id|desc|metadata', + 'Get a list of gadgets enabled by current user:', + ' api.php?action=query&list=gadgets&gaenabled', + ); + } + + public function getVersion() { + return __CLASS__ . ': $Id: ApiQueryGadgets.php 97274 2011-09-16 14:24:52Z reedy $'; + } + +} -- cgit v1.2.3-54-g00ecf