mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-11-14 19:14:45 +00:00
cbad567396
Prepare override for GadgetDefinitionContentHandler, remove usage in GadgetDefinitionContent. Bug: T287158 Change-Id: Icc3fa02f7089eaccd2dad8ff28f3db8cbf8eac03
74 lines
2 KiB
PHP
74 lines
2 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
|
|
*/
|
|
|
|
class GadgetDefinitionContent extends JsonContent {
|
|
|
|
public function __construct( $text ) {
|
|
parent::__construct( $text, 'GadgetDefinition' );
|
|
}
|
|
|
|
public function isValid() {
|
|
// parent::isValid() is called in validate()
|
|
return $this->validate()->isOK();
|
|
}
|
|
|
|
/**
|
|
* Pretty-print JSON.
|
|
*
|
|
* If called before validation, it may return JSON "null".
|
|
*
|
|
* @return string
|
|
*/
|
|
public function beautifyJSON() {
|
|
// @todo we should normalize entries in module.scripts and module.styles
|
|
return FormatJson::encode( $this->getAssocArray(), "\t", FormatJson::UTF8_OK );
|
|
}
|
|
|
|
/**
|
|
* @return Status
|
|
*/
|
|
public function validate() {
|
|
if ( !parent::isValid() ) {
|
|
return $this->getData();
|
|
}
|
|
|
|
$validator = new GadgetDefinitionValidator();
|
|
return $validator->validate( $this->getAssocArray() );
|
|
}
|
|
|
|
/**
|
|
* Get the JSON content as an associative array with
|
|
* all fields filled out, populating defaults as necessary.
|
|
*
|
|
* @return array
|
|
* @suppress PhanUndeclaredMethod
|
|
*/
|
|
public function getAssocArray() {
|
|
$info = wfObjectToArray( $this->getData()->getValue() );
|
|
/** @var GadgetDefinitionContentHandler $handler */
|
|
$handler = $this->getContentHandler();
|
|
$info = wfArrayPlus2d( $info, $handler->getDefaultMetadata() );
|
|
|
|
return $info;
|
|
}
|
|
}
|