mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-12-04 03:38:11 +00:00
1f7b9d90df
The parsed content of JSON files in the gadget is made available from the gadget's JS files via require(). That is, MediaWiki:Gadget-data.json (or Gadget:data.json) is available as `require('./data.json')`. This is supported for both MediaWikiGadgetsDefinitionRepo and GadgetDefinitionNamespaceRepo. The JSON parsing is done server-side. JSON can only be used in "package" gadgets - in which the JS files can also be invoked via require(). Also added a test for GadgetResourceLoaderModule. Bug: T198758 Depends-On: Ib4556d09c4d393269e32771aab00f59a5f630e1b Depends-On: Id4589a597ccfc4266b3e63d10f75b146aa7a287a Change-Id: I21acb46cdd244a39b5cc6963aa763f0113bd1e38
129 lines
3.6 KiB
PHP
129 lines
3.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Copyright 2014
|
|
*
|
|
* 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
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
use MediaWiki\Content\Renderer\ContentParseParams;
|
|
use MediaWiki\Revision\SlotRenderingProvider;
|
|
|
|
class GadgetDefinitionContentHandler extends JsonContentHandler {
|
|
public function __construct() {
|
|
parent::__construct( 'GadgetDefinition' );
|
|
}
|
|
|
|
/**
|
|
* @param Title $title
|
|
* @return bool
|
|
*/
|
|
public function canBeUsedOn( Title $title ) {
|
|
return $title->inNamespace( NS_GADGET_DEFINITION );
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getContentClass() {
|
|
return GadgetDefinitionContent::class;
|
|
}
|
|
|
|
public function makeEmptyContent() {
|
|
$class = $this->getContentClass();
|
|
return new $class( FormatJson::encode( $this->getDefaultMetadata(), "\t" ) );
|
|
}
|
|
|
|
public function getDefaultMetadata() {
|
|
return [
|
|
'settings' => [
|
|
'rights' => [],
|
|
'default' => false,
|
|
'package' => false,
|
|
'hidden' => false,
|
|
'skins' => [],
|
|
'category' => ''
|
|
],
|
|
'module' => [
|
|
'scripts' => [],
|
|
'styles' => [],
|
|
'datas' => [],
|
|
'peers' => [],
|
|
'dependencies' => [],
|
|
'messages' => [],
|
|
'type' => '',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param Title $title The title of the page to supply the updates for.
|
|
* @param string $role The role (slot) in which the content is being used.
|
|
* @return DeferrableUpdate[] A list of DeferrableUpdate objects for putting information
|
|
* about this content object somewhere.
|
|
*/
|
|
public function getDeletionUpdates( Title $title, $role ) {
|
|
return array_merge(
|
|
parent::getDeletionUpdates( $title, $role ),
|
|
[ new GadgetDefinitionDeletionUpdate( $title ) ]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Title $title The title of the page to supply the updates for.
|
|
* @param Content $content The content to generate data updates for.
|
|
* @param string $role The role (slot) in which the content is being used.
|
|
* @param SlotRenderingProvider $slotOutput A provider that can be used to gain access to
|
|
* a ParserOutput of $content by calling $slotOutput->getSlotParserOutput( $role, false ).
|
|
* @return DeferrableUpdate[] A list of DeferrableUpdate objects for putting information
|
|
* about this content object somewhere.
|
|
*/
|
|
public function getSecondaryDataUpdates(
|
|
Title $title,
|
|
Content $content,
|
|
$role,
|
|
SlotRenderingProvider $slotOutput
|
|
) {
|
|
return array_merge(
|
|
parent::getSecondaryDataUpdates( $title, $content, $role, $slotOutput ),
|
|
[ new GadgetDefinitionSecondaryDataUpdate( $title ) ]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function fillParserOutput(
|
|
Content $content,
|
|
ContentParseParams $cpoParams,
|
|
ParserOutput &$output
|
|
) {
|
|
'@phan-var GadgetDefinitionContent $content';
|
|
parent::fillParserOutput( $content, $cpoParams, $output );
|
|
$assoc = $content->getAssocArray();
|
|
foreach ( [ 'scripts', 'styles', 'datas' ] as $type ) {
|
|
foreach ( $assoc['module'][$type] as $page ) {
|
|
$title = Title::makeTitleSafe( NS_GADGET, $page );
|
|
if ( $title ) {
|
|
$output->addLink( $title );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|