2015-07-18 22:40:42 +00:00
|
|
|
<?php
|
2017-11-07 19:36:44 +00:00
|
|
|
|
2022-02-06 18:54:47 +00:00
|
|
|
namespace MediaWiki\Extension\Gadgets;
|
|
|
|
|
|
|
|
use InvalidArgumentException;
|
2017-11-07 19:36:44 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2016-10-11 21:20:18 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2020-04-02 00:38:28 +00:00
|
|
|
use MediaWiki\Revision\SlotRecord;
|
2023-08-19 04:15:51 +00:00
|
|
|
use MediaWiki\Title\Title;
|
2022-02-06 18:54:47 +00:00
|
|
|
use ObjectCache;
|
|
|
|
use TextContent;
|
|
|
|
use WANObjectCache;
|
2017-08-31 22:29:00 +00:00
|
|
|
use Wikimedia\Rdbms\Database;
|
2015-07-18 22:40:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gadgets repo powered by MediaWiki:Gadgets-definition
|
|
|
|
*/
|
|
|
|
class MediaWikiGadgetsDefinitionRepo extends GadgetRepo {
|
2022-04-05 19:00:51 +00:00
|
|
|
private const CACHE_VERSION = 4;
|
2015-07-18 22:40:42 +00:00
|
|
|
|
2022-04-05 19:00:51 +00:00
|
|
|
/** @var array|null */
|
|
|
|
private $definitions;
|
2015-07-18 22:40:42 +00:00
|
|
|
|
2021-10-17 13:05:15 +00:00
|
|
|
/** @var string */
|
|
|
|
protected $titlePrefix = 'MediaWiki:Gadget-';
|
|
|
|
|
2018-02-25 02:41:50 +00:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @throws InvalidArgumentException
|
2022-04-05 17:47:47 +00:00
|
|
|
* @return Gadget
|
2018-02-25 02:41:50 +00:00
|
|
|
*/
|
2022-04-05 17:47:47 +00:00
|
|
|
public function getGadget( string $id ): Gadget {
|
2015-07-18 22:40:42 +00:00
|
|
|
$gadgets = $this->loadGadgets();
|
|
|
|
if ( !isset( $gadgets[$id] ) ) {
|
|
|
|
throw new InvalidArgumentException( "No gadget registered for '$id'" );
|
|
|
|
}
|
|
|
|
|
2022-08-27 10:54:28 +00:00
|
|
|
return new Gadget( $gadgets[$id] );
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 17:47:47 +00:00
|
|
|
public function getGadgetIds(): array {
|
2015-07-18 22:40:42 +00:00
|
|
|
$gadgets = $this->loadGadgets();
|
|
|
|
if ( $gadgets ) {
|
|
|
|
return array_keys( $gadgets );
|
|
|
|
}
|
2021-10-09 00:34:45 +00:00
|
|
|
|
|
|
|
return [];
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 17:47:47 +00:00
|
|
|
public function handlePageUpdate( LinkTarget $target ): void {
|
2023-07-01 13:26:33 +00:00
|
|
|
if ( $target->getNamespace() === NS_MEDIAWIKI && $target->getText() === 'Gadgets-definition' ) {
|
2017-11-07 19:36:44 +00:00
|
|
|
$this->purgeDefinitionCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-18 22:40:42 +00:00
|
|
|
/**
|
2022-04-05 17:47:47 +00:00
|
|
|
* Purge the definitions cache, for example when MediaWiki:Gadgets-definition is edited.
|
2015-07-18 22:40:42 +00:00
|
|
|
*/
|
2022-04-05 17:47:47 +00:00
|
|
|
private function purgeDefinitionCache(): void {
|
2022-09-02 04:36:36 +00:00
|
|
|
$wanCache = MediaWikiServices::getInstance()->getMainWANObjectCache();
|
|
|
|
$srvCache = ObjectCache::getLocalServerInstance( 'hash' );
|
|
|
|
$key = $this->makeDefinitionCacheKey( $wanCache );
|
|
|
|
|
|
|
|
$wanCache->delete( $key );
|
|
|
|
$srvCache->delete( $key );
|
|
|
|
$this->definitions = null;
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 09:32:09 +00:00
|
|
|
/**
|
2022-04-05 19:00:51 +00:00
|
|
|
* @param WANObjectCache $cache
|
2020-10-12 09:32:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2022-04-05 19:00:51 +00:00
|
|
|
private function makeDefinitionCacheKey( WANObjectCache $cache ) {
|
2018-10-05 10:29:24 +00:00
|
|
|
return $cache->makeKey(
|
|
|
|
'gadgets-definition',
|
|
|
|
Gadget::GADGET_CLASS_VERSION,
|
|
|
|
self::CACHE_VERSION
|
|
|
|
);
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-04-05 19:00:51 +00:00
|
|
|
* Get list of gadgets.
|
|
|
|
*
|
2022-08-27 10:54:28 +00:00
|
|
|
* @return array[] List of Gadget objects
|
2015-07-18 22:40:42 +00:00
|
|
|
*/
|
2022-04-05 19:00:51 +00:00
|
|
|
protected function loadGadgets(): array {
|
2023-07-29 12:41:59 +00:00
|
|
|
if ( defined( 'MW_PHPUNIT_TEST' ) && MediaWikiServices::getInstance()->isStorageDisabled() ) {
|
|
|
|
// Bail out immediately if storage is disabled. This should never happen in normal operations, but can
|
|
|
|
// happen a lot in tests: this method is called from the UserGetDefaultOptions hook handler, so any test
|
|
|
|
// that uses UserOptionsLookup will end up reaching this code, which is problematic if the test is not
|
|
|
|
// in the Database group (T155147).
|
|
|
|
return [];
|
|
|
|
}
|
2022-04-05 19:00:51 +00:00
|
|
|
// From back to front:
|
|
|
|
//
|
|
|
|
// 3. wan cache (e.g. memcached)
|
|
|
|
// This improves end-user latency and reduces database load.
|
|
|
|
// It is purged when the data changes.
|
|
|
|
//
|
|
|
|
// 2. server cache (e.g. APCu).
|
|
|
|
// Very short blind TTL, mainly to avoid high memcached I/O.
|
|
|
|
//
|
|
|
|
// 1. process cache. Faster repeat calls.
|
|
|
|
if ( $this->definitions === null ) {
|
|
|
|
$wanCache = MediaWikiServices::getInstance()->getMainWANObjectCache();
|
|
|
|
$srvCache = ObjectCache::getLocalServerInstance( 'hash' );
|
|
|
|
$key = $this->makeDefinitionCacheKey( $wanCache );
|
|
|
|
$this->definitions = $srvCache->getWithSetCallback(
|
|
|
|
$key,
|
2022-06-27 07:27:43 +00:00
|
|
|
// between 7 and 15 seconds to avoid memcached/lockTSE stampede (T203786)
|
|
|
|
mt_rand( 7, 15 ),
|
2022-04-05 19:00:51 +00:00
|
|
|
function () use ( $wanCache, $key ) {
|
|
|
|
return $wanCache->getWithSetCallback(
|
|
|
|
$key,
|
|
|
|
// 1 day
|
|
|
|
Gadget::CACHE_TTL,
|
|
|
|
function ( $old, &$ttl, &$setOpts ) {
|
|
|
|
// Reduce caching of known-stale data (T157210)
|
|
|
|
$setOpts += Database::getCacheSetOptions( wfGetDB( DB_REPLICA ) );
|
|
|
|
|
|
|
|
return $this->fetchStructuredList();
|
|
|
|
},
|
|
|
|
[
|
2022-08-27 10:54:28 +00:00
|
|
|
'version' => 2,
|
2022-04-05 19:00:51 +00:00
|
|
|
// Avoid database stampede
|
|
|
|
'lockTSE' => 300,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
2022-04-05 19:00:51 +00:00
|
|
|
return $this->definitions;
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch list of gadgets and returns it as associative array of sections with gadgets
|
2016-12-28 10:25:47 +00:00
|
|
|
* e.g. [ $name => $gadget1, etc. ]
|
2018-05-26 03:01:39 +00:00
|
|
|
* @param string|null $forceNewText Injected text of MediaWiki:gadgets-definition [optional]
|
2022-08-27 10:54:28 +00:00
|
|
|
* @return array[]
|
2015-07-18 22:40:42 +00:00
|
|
|
*/
|
|
|
|
public function fetchStructuredList( $forceNewText = null ) {
|
|
|
|
if ( $forceNewText === null ) {
|
2017-03-08 23:34:41 +00:00
|
|
|
// T157210: avoid using wfMessage() to avoid staleness due to cache layering
|
|
|
|
$title = Title::makeTitle( NS_MEDIAWIKI, 'Gadgets-definition' );
|
2020-04-02 00:38:28 +00:00
|
|
|
$revRecord = MediaWikiServices::getInstance()
|
|
|
|
->getRevisionLookup()
|
|
|
|
->getRevisionByTitle( $title );
|
|
|
|
if ( !$revRecord
|
|
|
|
|| !$revRecord->getContent( SlotRecord::MAIN )
|
|
|
|
|| $revRecord->getContent( SlotRecord::MAIN )->isEmpty()
|
|
|
|
) {
|
GadgetRepo: Fix missing purging on delete and simplify hook handling
== Motivation ==
On a local dev wiki and in CI, where no gadgets are defined yet,
fetchStructuredList() is called on every load.php request and doing
uncached database look ups. This is because T39228 (stale cache
after Gadgets-definition was empty or created) was fixed by disabling
the cache until the page exists. This seems like a poor solution,
and commit I3092bcb162d032 recognises that the problem was not
understood at the time. I propose to instead cache it always and
purge it when the page is modified in any way.
Cold calling fetchStructuredList() accounted for ~170ms of ~400ms
when trying out debug v2 (T85805), thus making it significantly
slower and causing a chain of dozens of requests to pile up.
== Previously ==
* Legacy repo (MediaWikiGadgetsDefinitionRepo) only implemented
handlePageUpdate.
* handlePageUpdate was called from onPageSaveComplete for both
any page edit, and for creations in the experimental namespace.
* The experimental GadgetDefinitionNamespaceRepo is based on
ContentHandler rather than global hooks. This system does not
have a create-specific callback. It called update for edit/create,
and delete for delete. The experimental repo relied on create being
called from the global hook for the legacy repo, and update was
then called twice.
* There was no global hook for onPageDeleteComplete, thus the
legacy repo did not get purges.
== Changes ==
* Add onPageDeleteComplete hook to fix purges after deletion,
with the legacy repo now implementing handlePageDeletion() and doing
the same as handlePageUpdate().
* Fix handlePageUpdate() docs to reflect that it covers page create,
since onPageSaveComplete() called it either way.
* Fix experimental repo to include its namespace purge in
its handlePageUpdate() method.
* Get rid of now-redundant handlePageCreation().
* Get rid of handlePageDeletion() since its implementations would
now be identical to handlePageUpdate().
All these hooks and handle*() methods are just for a memc key
holding gadget metadata. We don't need to microoptimise this
on a per-page basis. Gadget edits are rare enough that purging them
as a whole each time is fine. We do the same in MediaWiki core
with ResourceLoaderGadgetsModule already.
Bug: T85805
Change-Id: Ib27fd34fbfe7a75c851602c8a93a2e3e1f2c38a0
2022-04-05 18:10:38 +00:00
|
|
|
return [];
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 20:01:21 +00:00
|
|
|
$content = $revRecord->getContent( SlotRecord::MAIN );
|
|
|
|
$g = ( $content instanceof TextContent ) ? $content->getText() : '';
|
2015-07-18 22:40:42 +00:00
|
|
|
} else {
|
|
|
|
$g = $forceNewText;
|
|
|
|
}
|
|
|
|
|
|
|
|
$gadgets = $this->listFromDefinition( $g );
|
|
|
|
|
|
|
|
$source = $forceNewText !== null ? 'input text' : 'MediaWiki:Gadgets-definition';
|
|
|
|
wfDebug( __METHOD__ . ": $source parsed, cache entry should be updated\n" );
|
|
|
|
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a structured list of Gadget objects from a definition
|
|
|
|
*
|
2017-02-27 22:08:31 +00:00
|
|
|
* @param string $definition
|
2022-08-27 10:54:28 +00:00
|
|
|
* @return array[] List of Gadget objects indexed by the gadget's name.
|
2015-07-18 22:40:42 +00:00
|
|
|
*/
|
2022-08-27 10:54:28 +00:00
|
|
|
private function listFromDefinition( $definition ): array {
|
2015-07-18 22:40:42 +00:00
|
|
|
$definition = preg_replace( '/<!--.*?-->/s', '', $definition );
|
|
|
|
$lines = preg_split( '/(\r\n|\r|\n)+/', $definition );
|
|
|
|
|
2016-12-28 10:25:47 +00:00
|
|
|
$gadgets = [];
|
2015-07-18 22:40:42 +00:00
|
|
|
$section = '';
|
|
|
|
|
|
|
|
foreach ( $lines as $line ) {
|
2016-12-28 10:25:47 +00:00
|
|
|
$m = [];
|
2015-07-18 22:40:42 +00:00
|
|
|
if ( preg_match( '/^==+ *([^*:\s|]+?)\s*==+\s*$/', $line, $m ) ) {
|
|
|
|
$section = $m[1];
|
|
|
|
} else {
|
|
|
|
$gadget = $this->newFromDefinition( $line, $section );
|
|
|
|
if ( $gadget ) {
|
2022-08-27 10:54:28 +00:00
|
|
|
$gadgets[$gadget->getName()] = $gadget->toArray();
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $gadgets;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an instance of this class from definition in MediaWiki:Gadgets-definition
|
|
|
|
* @param string $definition Gadget definition
|
|
|
|
* @param string $category
|
2020-12-17 19:07:37 +00:00
|
|
|
* @return Gadget|false Instance of Gadget class or false if $definition is invalid
|
2015-07-18 22:40:42 +00:00
|
|
|
*/
|
|
|
|
public function newFromDefinition( $definition, $category ) {
|
2016-12-28 10:25:47 +00:00
|
|
|
$m = [];
|
2017-02-27 22:08:31 +00:00
|
|
|
if ( !preg_match(
|
2021-10-09 00:34:45 +00:00
|
|
|
'/^\*+ *([a-zA-Z](?:[-_:.\w ]*[a-zA-Z0-9])?)(\s*\[.*?\])?\s*((\|[^|]*)+)\s*$/',
|
2017-02-27 22:08:31 +00:00
|
|
|
$definition,
|
|
|
|
$m
|
|
|
|
) ) {
|
2015-07-18 22:40:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// NOTE: the gadget name is used as part of the name of a form field,
|
2017-02-27 22:08:31 +00:00
|
|
|
// and must follow the rules defined in https://www.w3.org/TR/html4/types.html#type-cdata
|
|
|
|
// Also, title-normalization applies.
|
2016-12-28 10:25:47 +00:00
|
|
|
$info = [ 'category' => $category ];
|
2015-07-18 22:40:42 +00:00
|
|
|
$info['name'] = trim( str_replace( ' ', '_', $m[1] ) );
|
2023-06-07 15:58:25 +00:00
|
|
|
// If the name is too long, then RL will throw an exception when
|
2015-07-18 22:40:42 +00:00
|
|
|
// we try to register the module
|
|
|
|
if ( !Gadget::isValidGadgetID( $info['name'] ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$info['definition'] = $definition;
|
|
|
|
$options = trim( $m[2], ' []' );
|
|
|
|
|
|
|
|
foreach ( preg_split( '/\s*\|\s*/', $options, -1, PREG_SPLIT_NO_EMPTY ) as $option ) {
|
2015-10-23 21:11:01 +00:00
|
|
|
$arr = preg_split( '/\s*=\s*/', $option, 2 );
|
2015-07-18 22:40:42 +00:00
|
|
|
$option = $arr[0];
|
|
|
|
if ( isset( $arr[1] ) ) {
|
|
|
|
$params = explode( ',', $arr[1] );
|
|
|
|
$params = array_map( 'trim', $params );
|
|
|
|
} else {
|
2016-12-28 10:25:47 +00:00
|
|
|
$params = [];
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch ( $option ) {
|
|
|
|
case 'ResourceLoader':
|
|
|
|
$info['resourceLoaded'] = true;
|
|
|
|
break;
|
2022-01-30 13:15:25 +00:00
|
|
|
case 'requiresES6':
|
|
|
|
$info['requiresES6'] = true;
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
case 'dependencies':
|
|
|
|
$info['dependencies'] = $params;
|
|
|
|
break;
|
2016-11-18 04:54:17 +00:00
|
|
|
case 'peers':
|
|
|
|
$info['peers'] = $params;
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
case 'rights':
|
|
|
|
$info['requiredRights'] = $params;
|
|
|
|
break;
|
2016-11-17 01:58:37 +00:00
|
|
|
case 'hidden':
|
|
|
|
$info['hidden'] = true;
|
|
|
|
break;
|
2021-12-14 13:10:22 +00:00
|
|
|
case 'actions':
|
|
|
|
$info['requiredActions'] = $params;
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
case 'skins':
|
|
|
|
$info['requiredSkins'] = $params;
|
|
|
|
break;
|
2020-09-04 03:42:31 +00:00
|
|
|
case 'namespaces':
|
|
|
|
$info['requiredNamespaces'] = $params;
|
|
|
|
break;
|
2023-05-22 08:41:15 +00:00
|
|
|
case 'contentModels':
|
|
|
|
$info['requiredContentModels'] = $params;
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
case 'default':
|
|
|
|
$info['onByDefault'] = true;
|
|
|
|
break;
|
2021-10-17 13:05:15 +00:00
|
|
|
case 'package':
|
|
|
|
$info['package'] = true;
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
case 'targets':
|
|
|
|
$info['targets'] = $params;
|
|
|
|
break;
|
Implement support for specifying type=styles
T87871 formally introduced the concept of a styles module,
which sets mw.loader.state to "ready" when loaded through addModuleStyles().
Previously, addModuleStyles couldn't safely do that because a module may
contain scripts also, in which case mw.loader must still load the (rest)
of the module (causes styles to load twice).
In MediaWiki core or extensions this is easily avoided by calling not
calling both addModules() and addModuleStyles().
For Gadgets we call both as a workaround to allow users to provide styles
(without a FOUC), but also to provide scripts+styles. Since we don't declare
which one is intended (and some gadgets do both), we loaded them both ways.
This will no longer be allowed in the future (see T92459).
The new 'type=styles' Gadget attribute promises to ResourceLoader that a
gadget only contains styles.
Impact:
* [Bug fix] When mw.loader requires a styles module that already loaded,
it will not load again.
* [Feature] It is possible for a general scripts+styles gadget to depend on
a styles gadget. Previously this caused the styles to load twice.
* Specifying type=styles will load the module through addModuleStyles() only.
Use this for modules that contain styles that relate to elements already
on the page (e.g. when customising the skin, layout, or article content).
* Specifying type=general will load the module through addModules() only.
Use this if your module contains both scripts and styles and the styles
only relate to elements created by the script. This means the styles do not
need to be loaded separately through addModuleStyles() and will not apply
to noscript mode.
Effective difference:
* Gadgets with only styles: We assume type=styles.
This fixes the main bug (styles loading twice) and requires no migration!
* Gadgets with only scripts: We assume type=general.
This requires no migration! (And: No more empty stylesheet request)
* Gadgets with scripts (with or without styles): We assume type=general, but
unless type=general was explicitly set we'll still load it both ways so
that the styles apply directly on page load.
If this is not needed, set type=general.
If this is needed, it should become two separate modules. We do not support
a single module having two purposes (1: apply styles to the page,
2: provide scripts+styles). The styles module should be separate.
It can be made hidden, and listed as dependency of the other module.
The latter case is detected on page load and results in a console warning
with a link to T42284.
Bug: T42284
Bug: T92459
Change-Id: Ia3c9ddee243f710022144fc2884434350695699a
2016-09-01 23:31:14 +00:00
|
|
|
case 'type':
|
|
|
|
// Single value, not a list
|
2019-03-17 23:39:02 +00:00
|
|
|
$info['type'] = $params[0] ?? '';
|
Implement support for specifying type=styles
T87871 formally introduced the concept of a styles module,
which sets mw.loader.state to "ready" when loaded through addModuleStyles().
Previously, addModuleStyles couldn't safely do that because a module may
contain scripts also, in which case mw.loader must still load the (rest)
of the module (causes styles to load twice).
In MediaWiki core or extensions this is easily avoided by calling not
calling both addModules() and addModuleStyles().
For Gadgets we call both as a workaround to allow users to provide styles
(without a FOUC), but also to provide scripts+styles. Since we don't declare
which one is intended (and some gadgets do both), we loaded them both ways.
This will no longer be allowed in the future (see T92459).
The new 'type=styles' Gadget attribute promises to ResourceLoader that a
gadget only contains styles.
Impact:
* [Bug fix] When mw.loader requires a styles module that already loaded,
it will not load again.
* [Feature] It is possible for a general scripts+styles gadget to depend on
a styles gadget. Previously this caused the styles to load twice.
* Specifying type=styles will load the module through addModuleStyles() only.
Use this for modules that contain styles that relate to elements already
on the page (e.g. when customising the skin, layout, or article content).
* Specifying type=general will load the module through addModules() only.
Use this if your module contains both scripts and styles and the styles
only relate to elements created by the script. This means the styles do not
need to be loaded separately through addModuleStyles() and will not apply
to noscript mode.
Effective difference:
* Gadgets with only styles: We assume type=styles.
This fixes the main bug (styles loading twice) and requires no migration!
* Gadgets with only scripts: We assume type=general.
This requires no migration! (And: No more empty stylesheet request)
* Gadgets with scripts (with or without styles): We assume type=general, but
unless type=general was explicitly set we'll still load it both ways so
that the styles apply directly on page load.
If this is not needed, set type=general.
If this is needed, it should become two separate modules. We do not support
a single module having two purposes (1: apply styles to the page,
2: provide scripts+styles). The styles module should be separate.
It can be made hidden, and listed as dependency of the other module.
The latter case is detected on page load and results in a console warning
with a link to T42284.
Bug: T42284
Bug: T92459
Change-Id: Ia3c9ddee243f710022144fc2884434350695699a
2016-09-01 23:31:14 +00:00
|
|
|
break;
|
2022-01-11 09:03:44 +00:00
|
|
|
case 'supportsUrlLoad':
|
|
|
|
$val = $params[0] ?? '';
|
|
|
|
$info['supportsUrlLoad'] = $val !== 'false';
|
|
|
|
break;
|
2015-07-18 22:40:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( preg_split( '/\s*\|\s*/', $m[3], -1, PREG_SPLIT_NO_EMPTY ) as $page ) {
|
2021-10-17 13:05:15 +00:00
|
|
|
$page = $this->titlePrefix . $page;
|
2015-07-18 22:40:42 +00:00
|
|
|
|
2021-10-17 13:05:15 +00:00
|
|
|
if ( preg_match( '/\.json$/', $page ) ) {
|
|
|
|
$info['datas'][] = $page;
|
|
|
|
} elseif ( preg_match( '/\.js/', $page ) ) {
|
2015-07-18 22:40:42 +00:00
|
|
|
$info['scripts'][] = $page;
|
|
|
|
} elseif ( preg_match( '/\.css/', $page ) ) {
|
|
|
|
$info['styles'][] = $page;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Gadget( $info );
|
|
|
|
}
|
|
|
|
}
|