Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
extensions /
Gadgets /
Delete
Unzip
Name
Size
Permission
Date
Action
api
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
i18n
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
includes
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
tests
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
ApiQueryGadgetCategories.php
3.28
KB
-rw-r--r--
2011-09-12 17:10
ApiQueryGadgets.php
5.95
KB
-rw-r--r--
2011-09-16 16:24
COPYING
17.67
KB
-rw-r--r--
2016-11-28 20:21
GadgetHooks.php
8.51
KB
-rw-r--r--
2016-11-28 20:21
Gadgets.alias.php
8.48
KB
-rw-r--r--
2016-11-28 20:21
Gadgets.i18n.php
205.41
KB
-rw-r--r--
2011-07-16 22:06
Gadgets.namespaces.php
5.53
KB
-rw-r--r--
2016-11-28 20:21
Gadgets.php
657
B
-rw-r--r--
2016-11-28 20:21
Gadgets_body.php
7.21
KB
-rw-r--r--
2016-11-28 20:21
Gadgets_tests.php
2.79
KB
-rw-r--r--
2011-05-21 13:23
Gruntfile.js
636
B
-rw-r--r--
2016-11-28 20:21
README
1.8
KB
-rw-r--r--
2011-04-12 20:09
README.md
1.57
KB
-rw-r--r--
2016-11-28 20:21
SpecialGadgetUsage.php
7.58
KB
-rw-r--r--
2016-11-28 20:21
SpecialGadgets.php
5.84
KB
-rw-r--r--
2016-11-28 20:21
composer.json
165
B
-rw-r--r--
2016-11-28 20:21
extension.json
3.12
KB
-rw-r--r--
2016-11-28 20:21
install.settings
40
B
-rw-r--r--
2016-11-28 20:21
Save
Rename
<?php /** * Created on 15 April 2011 * API for Gadgets extension * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html */ class ApiQueryGadgets extends ApiQueryBase { private $props, $category, $neededIds, $listAllowed, $listEnabled; public function __construct( $query, $moduleName ) { parent::__construct( $query, $moduleName, 'ga' ); } public function execute() { $params = $this->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 $'; } }