2010-11-13 19:13:43 +00:00
|
|
|
<?php
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
|
|
|
* Gadgets extension - lets users select custom javascript gadgets
|
|
|
|
*
|
|
|
|
* For more info see http://mediawiki.org/wiki/Extension:Gadgets
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
|
|
|
* @author Daniel Kinzler, brightbyte.de
|
|
|
|
* @copyright © 2007 Daniel Kinzler
|
|
|
|
* @license GNU General Public Licence 2.0 or later
|
|
|
|
*/
|
|
|
|
|
2012-02-02 19:04:52 +00:00
|
|
|
class GadgetHooks {
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
|
|
|
* ArticleSaveComplete hook handler.
|
2011-09-23 05:43:40 +00:00
|
|
|
*
|
2010-11-11 18:19:57 +00:00
|
|
|
* @param $article Article
|
|
|
|
* @param $user User
|
|
|
|
* @param $text String: New page text
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public static function articleSaveComplete( $article, $user, $text ) {
|
2011-09-23 06:48:37 +00:00
|
|
|
// update cache if MediaWiki:Gadgets-definition was edited
|
2012-02-17 21:23:46 +00:00
|
|
|
$title = $article->getTitle();
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( $title->getNamespace() == NS_MEDIAWIKI && $title->getText() == 'Gadgets-definition' ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
Gadget::loadStructuredList( $text );
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-17 03:03:02 +00:00
|
|
|
/**
|
|
|
|
* UserGetDefaultOptions hook handler
|
|
|
|
* @param $defaultOptions Array of default preference keys and values
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2011-09-17 03:03:02 +00:00
|
|
|
*/
|
|
|
|
public static function userGetDefaultOptions( &$defaultOptions ) {
|
|
|
|
$gadgets = Gadget::loadStructuredList();
|
2012-02-17 21:23:46 +00:00
|
|
|
if ( !$gadgets ) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-17 03:03:02 +00:00
|
|
|
|
2012-02-17 21:23:46 +00:00
|
|
|
/**
|
|
|
|
* @var $gadget Gadget
|
|
|
|
*/
|
|
|
|
foreach ( $gadgets as $thisSection ) {
|
2011-09-23 06:48:37 +00:00
|
|
|
foreach ( $thisSection as $gadgetId => $gadget ) {
|
2011-09-17 03:03:02 +00:00
|
|
|
if ( $gadget->isOnByDefault() ) {
|
|
|
|
$defaultOptions['gadget-' . $gadgetId] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2011-09-17 03:03:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
|
|
|
* GetPreferences hook handler.
|
|
|
|
* @param $user User
|
|
|
|
* @param $preferences Array: Preference descriptions
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public static function getPreferences( $user, &$preferences ) {
|
|
|
|
$gadgets = Gadget::loadStructuredList();
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( !$gadgets ) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-23 05:43:40 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
$options = array();
|
2011-04-12 18:09:50 +00:00
|
|
|
$default = array();
|
2011-09-23 06:48:37 +00:00
|
|
|
foreach ( $gadgets as $section => $thisSection ) {
|
2011-04-03 19:01:52 +00:00
|
|
|
$available = array();
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2012-02-17 21:23:46 +00:00
|
|
|
/**
|
|
|
|
* @var $gadget Gadget
|
|
|
|
*/
|
2011-09-23 06:48:37 +00:00
|
|
|
foreach ( $thisSection as $gadget ) {
|
2011-04-03 19:01:52 +00:00
|
|
|
if ( $gadget->isAllowed( $user ) ) {
|
|
|
|
$gname = $gadget->getName();
|
2011-12-13 18:03:00 +00:00
|
|
|
# bug 30182: dir="auto" because it's often not translated
|
|
|
|
$desc = '<span dir="auto">' . $gadget->getDescription() . '</span>';
|
|
|
|
$available[$desc] = $gname;
|
2011-04-12 18:09:50 +00:00
|
|
|
if ( $gadget->isEnabled( $user ) ) {
|
|
|
|
$default[] = $gname;
|
|
|
|
}
|
2011-04-03 19:01:52 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( $section !== '' ) {
|
2012-08-17 09:28:09 +00:00
|
|
|
$section = wfMessage( "gadget-section-$section" )->parse();
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2011-04-03 19:01:52 +00:00
|
|
|
if ( count ( $available ) ) {
|
|
|
|
$options[$section] = $available;
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
} else {
|
2011-04-03 19:01:52 +00:00
|
|
|
$options = array_merge( $options, $available );
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-23 05:43:40 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
$preferences['gadgets-intro'] =
|
|
|
|
array(
|
|
|
|
'type' => 'info',
|
|
|
|
'label' => ' ',
|
|
|
|
'default' => Xml::tags( 'tr', array(),
|
|
|
|
Xml::tags( 'td', array( 'colspan' => 2 ),
|
2012-08-17 09:28:09 +00:00
|
|
|
wfMessage( 'gadgets-prefstext' )->parseAsBlock() ) ),
|
2010-11-11 18:19:57 +00:00
|
|
|
'section' => 'gadgets',
|
|
|
|
'raw' => 1,
|
|
|
|
'rawrow' => 1,
|
|
|
|
);
|
2011-09-23 05:43:40 +00:00
|
|
|
|
|
|
|
$preferences['gadgets'] =
|
2010-11-11 18:19:57 +00:00
|
|
|
array(
|
|
|
|
'type' => 'multiselect',
|
|
|
|
'options' => $options,
|
|
|
|
'section' => 'gadgets',
|
|
|
|
'label' => ' ',
|
|
|
|
'prefix' => 'gadget-',
|
2011-04-12 18:09:50 +00:00
|
|
|
'default' => $default,
|
2010-11-11 18:19:57 +00:00
|
|
|
);
|
2011-09-23 05:43:40 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ResourceLoaderRegisterModules hook handler.
|
|
|
|
* @param $resourceLoader ResourceLoader
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public static function registerModules( &$resourceLoader ) {
|
|
|
|
$gadgets = Gadget::loadList();
|
|
|
|
if ( !$gadgets ) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2012-02-17 21:23:46 +00:00
|
|
|
/**
|
|
|
|
* @var $g Gadget
|
|
|
|
*/
|
2010-11-11 18:19:57 +00:00
|
|
|
foreach ( $gadgets as $g ) {
|
|
|
|
$module = $g->getModule();
|
|
|
|
if ( $module ) {
|
|
|
|
$resourceLoader->register( $g->getModuleName(), $module );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* BeforePageDisplay hook handler.
|
|
|
|
* @param $out OutputPage
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public static function beforePageDisplay( $out ) {
|
|
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
|
|
|
|
$gadgets = Gadget::loadList();
|
|
|
|
if ( !$gadgets ) {
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$lb = new LinkBatch();
|
|
|
|
$lb->setCaller( __METHOD__ );
|
|
|
|
$pages = array();
|
|
|
|
|
2012-02-17 21:23:46 +00:00
|
|
|
/**
|
|
|
|
* @var $gadget Gadget
|
|
|
|
*/
|
2012-08-17 09:28:09 +00:00
|
|
|
$user = $out->getUser();
|
2010-11-11 18:19:57 +00:00
|
|
|
foreach ( $gadgets as $gadget ) {
|
2012-08-17 09:28:09 +00:00
|
|
|
if ( $gadget->isEnabled( $user ) && $gadget->isAllowed( $user ) ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( $gadget->hasModule() ) {
|
2012-02-02 19:04:52 +00:00
|
|
|
$out->addModuleStyles( $gadget->getModuleName() );
|
2011-11-03 16:11:04 +00:00
|
|
|
$out->addModules( $gadget->getModuleName() );
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
foreach ( $gadget->getLegacyScripts() as $page ) {
|
|
|
|
$lb->add( NS_MEDIAWIKI, $page );
|
|
|
|
$pages[] = $page;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-26 00:32:59 +00:00
|
|
|
// Allow other extensions, e.g. MobileFrontend, to disallow legacy gadgets
|
|
|
|
if ( wfRunHooks( 'Gadgets::allowLegacy', array( $out->getContext() ) ) ) {
|
|
|
|
$lb->execute( __METHOD__ );
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2013-04-26 00:32:59 +00:00
|
|
|
$done = array();
|
|
|
|
|
|
|
|
foreach ( $pages as $page ) {
|
|
|
|
if ( isset( $done[$page] ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2013-04-26 00:32:59 +00:00
|
|
|
$done[$page] = true;
|
|
|
|
self::applyScript( $page, $out );
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds one legacy script to output.
|
2011-09-23 05:43:40 +00:00
|
|
|
*
|
2013-05-01 01:19:35 +00:00
|
|
|
* @param string $page Unprefixed page title
|
|
|
|
* @param OutputPage $out
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
private static function applyScript( $page, $out ) {
|
|
|
|
global $wgJsMimeType;
|
|
|
|
|
2011-02-04 16:39:17 +00:00
|
|
|
# bug 22929: disable gadgets on sensitive pages. Scripts loaded through the
|
|
|
|
# ResourceLoader handle this in OutputPage::getModules()
|
|
|
|
# TODO: make this extension load everything via RL, then we don't need to worry
|
|
|
|
# about any of this.
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( $out->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS ) < ResourceLoaderModule::ORIGIN_USER_SITEWIDE ) {
|
2011-02-04 16:39:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
$t = Title::makeTitleSafe( NS_MEDIAWIKI, $page );
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( !$t ) {
|
|
|
|
return;
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
$u = $t->getLocalURL( 'action=raw&ctype=' . $wgJsMimeType );
|
|
|
|
$out->addScriptFile( $u, $t->getLatestRevID() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UnitTestsList hook handler
|
2013-05-01 01:19:35 +00:00
|
|
|
* @param array $files
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return bool
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
2013-05-01 01:19:35 +00:00
|
|
|
public static function onUnitTestsList( array &$files ) {
|
|
|
|
$testDir = __DIR__ . '/tests/';
|
|
|
|
$files = array_merge( $files, glob( "$testDir/*Test.php" ) );
|
2010-11-11 18:19:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper for one gadget.
|
|
|
|
*/
|
|
|
|
class Gadget {
|
|
|
|
/**
|
|
|
|
* Increment this when changing class structure
|
|
|
|
*/
|
2013-07-23 21:11:14 +00:00
|
|
|
const GADGET_CLASS_VERSION = 7;
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
private $version = self::GADGET_CLASS_VERSION,
|
2011-09-23 06:48:37 +00:00
|
|
|
$scripts = array(),
|
|
|
|
$styles = array(),
|
2010-11-13 18:45:21 +00:00
|
|
|
$dependencies = array(),
|
2011-09-23 06:48:37 +00:00
|
|
|
$name,
|
2010-11-11 18:19:57 +00:00
|
|
|
$definition,
|
2011-04-03 19:01:52 +00:00
|
|
|
$resourceLoaded = false,
|
2011-04-12 18:09:50 +00:00
|
|
|
$requiredRights = array(),
|
2011-10-22 19:09:25 +00:00
|
|
|
$requiredSkins = array(),
|
2013-04-26 00:32:59 +00:00
|
|
|
$targets = array( 'desktop' ),
|
2011-04-15 19:41:47 +00:00
|
|
|
$onByDefault = false,
|
2013-07-23 21:11:14 +00:00
|
|
|
$position = 'bottom',
|
2011-04-15 19:41:47 +00:00
|
|
|
$category;
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an instance of this class from definition in MediaWiki:Gadgets-definition
|
|
|
|
* @param $definition String: Gadget definition
|
2012-02-17 21:23:46 +00:00
|
|
|
* @return Gadget|bool Instance of Gadget class or false if $definition is invalid
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public static function newFromDefinition( $definition ) {
|
2011-01-23 10:35:15 +00:00
|
|
|
$m = array();
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( !preg_match( '/^\*+ *([a-zA-Z](?:[-_:.\w\d ]*[a-zA-Z0-9])?)(\s*\[.*?\])?\s*((\|[^|]*)+)\s*$/', $definition, $m ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
// NOTE: the gadget name is used as part of the name of a form field,
|
2010-11-11 18:19:57 +00:00
|
|
|
// and must follow the rules defined in http://www.w3.org/TR/html4/types.html#type-cdata
|
|
|
|
// Also, title-normalization applies.
|
|
|
|
$gadget = new Gadget();
|
2011-09-23 06:48:37 +00:00
|
|
|
$gadget->name = trim( str_replace( ' ', '_', $m[1] ) );
|
2010-11-11 18:19:57 +00:00
|
|
|
$gadget->definition = $definition;
|
2011-04-02 16:02:53 +00:00
|
|
|
$options = trim( $m[2], ' []' );
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2011-04-02 16:02:53 +00:00
|
|
|
foreach ( preg_split( '/\s*\|\s*/', $options, -1, PREG_SPLIT_NO_EMPTY ) as $option ) {
|
|
|
|
$arr = preg_split( '/\s*=\s*/', $option, 2 );
|
|
|
|
$option = $arr[0];
|
|
|
|
if ( isset( $arr[1] ) ) {
|
|
|
|
$params = explode( ',', $arr[1] );
|
|
|
|
$params = array_map( 'trim', $params );
|
|
|
|
} else {
|
|
|
|
$params = array();
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2011-04-02 16:02:53 +00:00
|
|
|
switch ( $option ) {
|
|
|
|
case 'ResourceLoader':
|
|
|
|
$gadget->resourceLoaded = true;
|
|
|
|
break;
|
|
|
|
case 'dependencies':
|
|
|
|
$gadget->dependencies = $params;
|
|
|
|
break;
|
2011-04-03 19:01:52 +00:00
|
|
|
case 'rights':
|
|
|
|
$gadget->requiredRights = $params;
|
|
|
|
break;
|
2011-10-22 19:09:25 +00:00
|
|
|
case 'skins':
|
2012-01-18 02:44:37 +00:00
|
|
|
$gadget->requiredSkins = $params;
|
2011-10-22 19:09:25 +00:00
|
|
|
break;
|
2011-04-12 18:09:50 +00:00
|
|
|
case 'default':
|
|
|
|
$gadget->onByDefault = true;
|
|
|
|
break;
|
2013-04-26 00:32:59 +00:00
|
|
|
case 'targets':
|
|
|
|
$gadget->targets = $params;
|
|
|
|
break;
|
2013-07-23 21:11:14 +00:00
|
|
|
case 'top':
|
|
|
|
$gadget->position = 'top';
|
|
|
|
break;
|
2010-11-13 18:45:21 +00:00
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
foreach ( preg_split( '/\s*\|\s*/', $m[3], -1, PREG_SPLIT_NO_EMPTY ) as $page ) {
|
|
|
|
$page = "Gadget-$page";
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( preg_match( '/\.js/', $page ) ) {
|
|
|
|
$gadget->scripts[] = $page;
|
|
|
|
} elseif ( preg_match( '/\.css/', $page ) ) {
|
|
|
|
$gadget->styles[] = $page;
|
|
|
|
}
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
return $gadget;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String: Gadget name
|
|
|
|
*/
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
2011-04-15 19:41:47 +00:00
|
|
|
/**
|
|
|
|
* @return String: Gadget description parsed into HTML
|
|
|
|
*/
|
|
|
|
public function getDescription() {
|
|
|
|
return wfMessage( "gadget-{$this->getName()}" )->parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String: Wikitext of gadget description
|
|
|
|
*/
|
|
|
|
public function getRawDescription() {
|
|
|
|
return wfMessage( "gadget-{$this->getName()}" )->plain();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String: Name of category (aka section) our gadget belongs to. Empty string if none.
|
|
|
|
*/
|
|
|
|
public function getCategory() {
|
|
|
|
return $this->category;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
2012-02-02 19:04:52 +00:00
|
|
|
* @return String: Name of ResourceLoader module for this gadget
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
|
|
|
public function getModuleName() {
|
|
|
|
return "ext.gadget.{$this->name}";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether this is an instance of an older version of this class deserialized from cache
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
|
|
|
public function isOutdated() {
|
2010-11-11 19:10:57 +00:00
|
|
|
return $this->version != self::GADGET_CLASS_VERSION;
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-03 19:01:52 +00:00
|
|
|
* Checks whether this gadget is enabled for given user
|
|
|
|
*
|
|
|
|
* @param $user User: user to check against
|
|
|
|
* @return Boolean
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
2011-04-03 19:01:52 +00:00
|
|
|
public function isEnabled( $user ) {
|
2011-04-12 18:09:50 +00:00
|
|
|
return (bool)$user->getOption( "gadget-{$this->name}", $this->onByDefault );
|
2011-04-03 19:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether given user has permissions to use this gadget
|
|
|
|
*
|
|
|
|
* @param $user User: user to check against
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
|
|
|
public function isAllowed( $user ) {
|
2011-10-22 19:09:25 +00:00
|
|
|
return count( array_intersect( $this->requiredRights, $user->getRights() ) ) == count( $this->requiredRights )
|
|
|
|
&& ( !count( $this->requiredSkins ) || in_array( $user->getOption( 'skin' ), $this->requiredSkins ) );
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 18:09:50 +00:00
|
|
|
/**
|
|
|
|
* @return Boolean: Whether this gadget is on by default for everyone (but can be disabled in preferences)
|
|
|
|
*/
|
|
|
|
public function isOnByDefault() {
|
|
|
|
return $this->onByDefault;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
|
|
|
* @return Boolean: Whether all of this gadget's JS components support ResourceLoader
|
|
|
|
*/
|
|
|
|
public function supportsResourceLoader() {
|
|
|
|
return $this->resourceLoaded;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Boolean: Whether this gadget has resources that can be loaded via ResourceLoader
|
|
|
|
*/
|
|
|
|
public function hasModule() {
|
2012-02-02 19:04:52 +00:00
|
|
|
return count( $this->styles )
|
|
|
|
+ ( $this->supportsResourceLoader() ? count( $this->scripts ) : 0 )
|
|
|
|
> 0;
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String: Definition for this gadget from MediaWiki:gadgets-definition
|
|
|
|
*/
|
|
|
|
public function getDefinition() {
|
|
|
|
return $this->definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Array: Array of pages with JS not prefixed with namespace
|
|
|
|
*/
|
|
|
|
public function getScripts() {
|
|
|
|
return $this->scripts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Array: Array of pages with CSS not prefixed with namespace
|
|
|
|
*/
|
|
|
|
public function getStyles() {
|
|
|
|
return $this->styles;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Array: Array of all of this gadget's resources
|
|
|
|
*/
|
|
|
|
public function getScriptsAndStyles() {
|
|
|
|
return array_merge( $this->scripts, $this->styles );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-02 19:04:52 +00:00
|
|
|
* Returns module for ResourceLoader, see getModuleName() for its name.
|
|
|
|
* If our gadget has no scripts or styles suitable for RL, false will be returned.
|
2010-11-11 18:19:57 +00:00
|
|
|
* @return Mixed: GadgetResourceLoaderModule or false
|
|
|
|
*/
|
|
|
|
public function getModule() {
|
2012-02-02 19:04:52 +00:00
|
|
|
$pages = array();
|
2011-12-13 10:41:51 +00:00
|
|
|
|
2012-02-02 19:04:52 +00:00
|
|
|
foreach ( $this->styles as $style ) {
|
|
|
|
$pages['MediaWiki:' . $style] = array( 'type' => 'style' );
|
2011-12-13 10:41:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( $this->supportsResourceLoader() ) {
|
|
|
|
foreach ( $this->scripts as $script ) {
|
2011-02-20 18:14:38 +00:00
|
|
|
$pages['MediaWiki:' . $script] = array( 'type' => 'script' );
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( !count( $pages ) ) {
|
2012-02-02 19:04:52 +00:00
|
|
|
return null;
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2013-07-23 21:11:14 +00:00
|
|
|
return new GadgetResourceLoaderModule( $pages, $this->dependencies, $this->targets, $this->position );
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns list of scripts that don't support ResourceLoader
|
|
|
|
* @return Array
|
|
|
|
*/
|
|
|
|
public function getLegacyScripts() {
|
|
|
|
if ( $this->supportsResourceLoader() ) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
return $this->scripts;
|
|
|
|
}
|
|
|
|
|
2010-11-13 18:45:21 +00:00
|
|
|
/**
|
|
|
|
* Returns names of resources this gadget depends on
|
|
|
|
* @return Array
|
|
|
|
*/
|
|
|
|
public function getDependencies() {
|
|
|
|
return $this->dependencies;
|
|
|
|
}
|
|
|
|
|
2011-04-03 19:01:52 +00:00
|
|
|
/**
|
|
|
|
* Returns array of permissions required by this gadget
|
|
|
|
* @return Array
|
|
|
|
*/
|
|
|
|
public function getRequiredRights() {
|
|
|
|
return $this->requiredRights;
|
|
|
|
}
|
|
|
|
|
2011-10-22 19:09:25 +00:00
|
|
|
/**
|
|
|
|
* Returns array of skins where this gadget works
|
|
|
|
* @return Array
|
|
|
|
*/
|
|
|
|
public function getRequiredSkins() {
|
|
|
|
return $this->requiredSkins;
|
|
|
|
}
|
|
|
|
|
2013-07-23 21:11:14 +00:00
|
|
|
/**
|
|
|
|
* Returns the position of this Gadget's ResourceLoader module
|
|
|
|
* @return String: 'bottom' or 'top'
|
|
|
|
*/
|
|
|
|
public function getPosition() {
|
|
|
|
return $this->position;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
/**
|
|
|
|
* Loads and returns a list of all gadgets
|
|
|
|
* @return Mixed: Array of gadgets or false
|
|
|
|
*/
|
|
|
|
public static function loadList() {
|
|
|
|
static $gadgets = null;
|
|
|
|
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( $gadgets !== null ) {
|
|
|
|
return $gadgets;
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
$struct = self::loadStructuredList();
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( !$struct ) {
|
|
|
|
$gadgets = $struct;
|
2011-02-10 18:05:50 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2010-11-11 18:19:57 +00:00
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
|
|
|
$gadgets = array();
|
2012-02-17 21:23:46 +00:00
|
|
|
foreach ( $struct as $entries ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
$gadgets = array_merge( $gadgets, $entries );
|
|
|
|
}
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether gadget list from cache can be used.
|
2012-02-17 21:23:46 +00:00
|
|
|
* @param $gadgets array
|
2010-11-11 18:19:57 +00:00
|
|
|
* @return Boolean
|
|
|
|
*/
|
|
|
|
private static function isValidList( $gadgets ) {
|
2012-02-17 21:23:46 +00:00
|
|
|
if ( !is_array( $gadgets ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
// Check if we have 1) array of gadgets 2) the gadgets are up to date
|
|
|
|
// One check is enough
|
2012-02-17 21:23:46 +00:00
|
|
|
/**
|
|
|
|
* @var $g Gadget
|
|
|
|
*/
|
|
|
|
foreach ( $gadgets as $list ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
foreach ( $list as $g ) {
|
|
|
|
if ( !( $g instanceof Gadget ) || $g->isOutdated() ) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-23 06:48:37 +00:00
|
|
|
|
2010-11-11 18:19:57 +00:00
|
|
|
return true; // empty array
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads list of gadgets and returns it as associative array of sections with gadgets
|
|
|
|
* e.g. array( 'sectionnname1' => array( $gadget1, $gadget2),
|
|
|
|
* 'sectionnname2' => array( $gadget3 ) );
|
2012-11-16 16:58:26 +00:00
|
|
|
* @param $forceNewText String: New text of MediaWiki:gadgets-definition. If specified, will
|
2010-11-11 18:19:57 +00:00
|
|
|
* force a purge of cache and recreation of the gadget list.
|
|
|
|
* @return Mixed: Array or false
|
|
|
|
*/
|
|
|
|
public static function loadStructuredList( $forceNewText = null ) {
|
|
|
|
global $wgMemc;
|
|
|
|
|
|
|
|
static $gadgets = null;
|
2011-09-23 06:48:37 +00:00
|
|
|
if ( $gadgets !== null && $forceNewText === null ) {
|
|
|
|
return $gadgets;
|
|
|
|
}
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
2011-04-02 15:36:59 +00:00
|
|
|
$key = wfMemcKey( 'gadgets-definition', self::GADGET_CLASS_VERSION );
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
if ( $forceNewText === null ) {
|
2011-09-23 06:48:37 +00:00
|
|
|
// cached?
|
2010-11-11 18:19:57 +00:00
|
|
|
$gadgets = $wgMemc->get( $key );
|
|
|
|
if ( self::isValidList( $gadgets ) ) {
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
2011-09-23 05:43:40 +00:00
|
|
|
$g = wfMessage( "gadgets-definition" )->inContentLanguage();
|
|
|
|
if ( !$g->exists() ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
$gadgets = false;
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return $gadgets;
|
|
|
|
}
|
2011-09-23 05:43:40 +00:00
|
|
|
$g = $g->plain();
|
2010-11-11 18:19:57 +00:00
|
|
|
} else {
|
|
|
|
$g = $forceNewText;
|
|
|
|
}
|
|
|
|
|
2013-05-23 05:21:19 +00:00
|
|
|
$g = preg_replace( '/<!--.*?-->/s', '', $g );
|
2010-11-11 18:19:57 +00:00
|
|
|
$g = preg_split( '/(\r\n|\r|\n)+/', $g );
|
|
|
|
|
|
|
|
$gadgets = array();
|
|
|
|
$section = '';
|
|
|
|
|
|
|
|
foreach ( $g as $line ) {
|
2011-01-23 10:35:15 +00:00
|
|
|
$m = array();
|
2010-11-11 18:19:57 +00:00
|
|
|
if ( preg_match( '/^==+ *([^*:\s|]+?)\s*==+\s*$/', $line, $m ) ) {
|
|
|
|
$section = $m[1];
|
2012-02-17 21:23:46 +00:00
|
|
|
} else {
|
2010-11-11 18:19:57 +00:00
|
|
|
$gadget = self::newFromDefinition( $line );
|
|
|
|
if ( $gadget ) {
|
|
|
|
$gadgets[$section][$gadget->getName()] = $gadget;
|
2011-04-15 19:41:47 +00:00
|
|
|
$gadget->category = $section;
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-14 15:56:32 +00:00
|
|
|
if ( !count( $gadgets ) ) {
|
|
|
|
// Don't cache in case we couldn't find any gadgets. Bug 37228
|
|
|
|
$gadgets = false;
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
2011-09-23 06:48:37 +00:00
|
|
|
// cache for a while. gets purged automatically when MediaWiki:Gadgets-definition is edited
|
|
|
|
$wgMemc->set( $key, $gadgets, 60 * 60 * 24 );
|
2010-11-11 18:19:57 +00:00
|
|
|
$source = $forceNewText !== null ? 'input text' : 'MediaWiki:Gadgets-definition';
|
2011-09-23 06:48:37 +00:00
|
|
|
wfDebug( __METHOD__ . ": $source parsed, cache entry $key updated\n" );
|
2010-11-11 18:19:57 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class representing a list of resources for one gadget
|
|
|
|
*/
|
|
|
|
class GadgetResourceLoaderModule extends ResourceLoaderWikiModule {
|
2010-11-13 18:45:21 +00:00
|
|
|
private $pages, $dependencies;
|
2010-11-11 18:19:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an instance of this class
|
2013-04-26 00:32:59 +00:00
|
|
|
*
|
2010-11-11 18:19:57 +00:00
|
|
|
* @param $pages Array: Associative array of pages in ResourceLoaderWikiModule-compatible
|
|
|
|
* format, for example:
|
|
|
|
* array(
|
2013-04-26 00:32:59 +00:00
|
|
|
* 'MediaWiki:Gadget-foo.js' => array( 'type' => 'script' ),
|
|
|
|
* 'MediaWiki:Gadget-foo.css' => array( 'type' => 'style' ),
|
2010-11-11 18:19:57 +00:00
|
|
|
* )
|
2010-11-13 18:45:21 +00:00
|
|
|
* @param $dependencies Array: Names of resources this module depends on
|
2013-04-26 00:32:59 +00:00
|
|
|
* @param $targets Array: List of targets this module support
|
2013-07-23 21:11:14 +00:00
|
|
|
* @param $position String: 'bottom' or 'top'
|
2010-11-11 18:19:57 +00:00
|
|
|
*/
|
2013-07-23 21:11:14 +00:00
|
|
|
public function __construct( $pages, $dependencies, $targets, $position ) {
|
2010-11-11 18:19:57 +00:00
|
|
|
$this->pages = $pages;
|
2010-11-13 18:45:21 +00:00
|
|
|
$this->dependencies = $dependencies;
|
2013-04-26 00:32:59 +00:00
|
|
|
$this->targets = $targets;
|
2013-07-23 21:11:14 +00:00
|
|
|
$this->position = $position;
|
2010-11-11 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides the abstract function from ResourceLoaderWikiModule class
|
2012-02-17 21:23:46 +00:00
|
|
|
* @param $context ResourceLoaderContext
|
2010-11-11 18:19:57 +00:00
|
|
|
* @return Array: $pages passed to __construct()
|
|
|
|
*/
|
|
|
|
protected function getPages( ResourceLoaderContext $context ) {
|
|
|
|
return $this->pages;
|
|
|
|
}
|
2010-11-13 18:45:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides ResourceLoaderModule::getDependencies()
|
|
|
|
* @return Array: Names of resources this module depends on
|
|
|
|
*/
|
|
|
|
public function getDependencies() {
|
|
|
|
return $this->dependencies;
|
|
|
|
}
|
2013-07-23 21:11:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides ResourceLoaderModule::getPosition()
|
|
|
|
* @return String: 'bottom' or 'top'
|
|
|
|
*/
|
|
|
|
public function getPosition() {
|
|
|
|
return $this->position;
|
|
|
|
}
|
2011-02-10 18:05:50 +00:00
|
|
|
}
|