2012-09-24 20:51:53 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* A content object represents page content, e.g. the text to show on a page.
|
|
|
|
|
* Content objects have no knowledge about how they relate to Wiki pages.
|
|
|
|
|
*
|
2012-10-16 18:04:32 +00:00
|
|
|
* 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
|
|
|
|
|
*
|
2012-10-05 13:03:24 +00:00
|
|
|
* @since 1.21
|
2012-10-16 18:04:32 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Content
|
|
|
|
|
*
|
|
|
|
|
* @author Daniel Kinzler
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2012-12-20 19:44:47 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base implementation for content objects.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Content
|
|
|
|
|
*/
|
2012-09-24 20:51:53 +00:00
|
|
|
abstract class AbstractContent implements Content {
|
|
|
|
|
/**
|
|
|
|
|
* Name of the content model this Content object represents.
|
|
|
|
|
* Use with CONTENT_MODEL_XXX constants
|
|
|
|
|
*
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2012-09-24 20:51:53 +00:00
|
|
|
* @var string $model_id
|
|
|
|
|
*/
|
|
|
|
|
protected $model_id;
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param string $modelId
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
|
|
|
|
* @since 1.21
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2012-10-16 18:16:11 +00:00
|
|
|
public function __construct( $modelId = null ) {
|
|
|
|
|
$this->model_id = $modelId;
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::getModel
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getModel() {
|
|
|
|
|
return $this->model_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
|
|
|
|
* @param string $modelId The model to check
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @throws MWException If the provided ID is not the ID of the content model supported by this
|
|
|
|
|
* Content object.
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2012-10-16 18:16:11 +00:00
|
|
|
protected function checkModelID( $modelId ) {
|
|
|
|
|
if ( $modelId !== $this->model_id ) {
|
|
|
|
|
throw new MWException(
|
|
|
|
|
"Bad content model: " .
|
2013-02-03 18:30:03 +00:00
|
|
|
"expected {$this->model_id} " .
|
2012-10-16 18:16:11 +00:00
|
|
|
"but got $modelId."
|
|
|
|
|
);
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::getContentHandler
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getContentHandler() {
|
|
|
|
|
return ContentHandler::getForContent( $this );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::getDefaultFormat
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getDefaultFormat() {
|
|
|
|
|
return $this->getContentHandler()->getDefaultFormat();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::getSupportedFormats
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getSupportedFormats() {
|
|
|
|
|
return $this->getContentHandler()->getSupportedFormats();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-03 17:08:05 +00:00
|
|
|
* @since 1.21
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
|
|
|
|
* @param string $format
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return bool
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @see Content::isSupportedFormat
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function isSupportedFormat( $format ) {
|
|
|
|
|
if ( !$format ) {
|
|
|
|
|
return true; // this means "use the default"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $this->getContentHandler()->isSupportedFormat( $format );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param string $format The serialization format to check.
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException If the format is not supported by this content handler.
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
protected function checkFormat( $format ) {
|
|
|
|
|
if ( !$this->isSupportedFormat( $format ) ) {
|
2012-10-16 18:16:11 +00:00
|
|
|
throw new MWException(
|
|
|
|
|
"Format $format is not supported for content model " .
|
|
|
|
|
$this->getModel()
|
|
|
|
|
);
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param string $format
|
|
|
|
|
*
|
2012-10-16 18:16:11 +00:00
|
|
|
* @return string
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::serialize
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function serialize( $format = null ) {
|
|
|
|
|
return $this->getContentHandler()->serializeContent( $this, $format );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return bool
|
|
|
|
|
*
|
|
|
|
|
* @see Content::isEmpty
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function isEmpty() {
|
2012-10-08 15:26:11 +00:00
|
|
|
return $this->getSize() === 0;
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-03 17:08:05 +00:00
|
|
|
* Subclasses may override this to implement (light weight) validation.
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
|
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return bool Always true.
|
|
|
|
|
*
|
|
|
|
|
* @see Content::isValid
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function isValid() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param Content $that
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return bool
|
|
|
|
|
*
|
|
|
|
|
* @see Content::equals
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function equals( Content $that = null ) {
|
|
|
|
|
if ( is_null( $that ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $that === $this ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $that->getModel() !== $this->getModel() ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $this->getNativeData() === $that->getNativeData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a list of DataUpdate objects for recording information about this
|
|
|
|
|
* Content in some secondary data store.
|
|
|
|
|
*
|
2015-02-15 19:34:43 +00:00
|
|
|
* This default implementation returns a LinksUpdate object and calls the
|
|
|
|
|
* SecondaryDataUpdates hook.
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
|
|
|
|
* Subclasses may override this to determine the secondary data updates more
|
2013-01-25 15:51:49 +00:00
|
|
|
* efficiently, preferably without the need to generate a parser output object.
|
2015-02-15 19:34:43 +00:00
|
|
|
* They should however make sure to call SecondaryDataUpdates to give extensions
|
|
|
|
|
* a chance to inject additional updates.
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @since 1.21
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param Title $title
|
|
|
|
|
* @param Content $old
|
|
|
|
|
* @param bool $recursive
|
|
|
|
|
* @param ParserOutput $parserOutput
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return DataUpdate[]
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @see Content::getSecondaryDataUpdates()
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2014-03-03 17:08:05 +00:00
|
|
|
public function getSecondaryDataUpdates( Title $title, Content $old = null,
|
2015-02-15 19:34:43 +00:00
|
|
|
$recursive = true, ParserOutput $parserOutput = null
|
|
|
|
|
) {
|
2013-01-25 15:51:00 +00:00
|
|
|
if ( $parserOutput === null ) {
|
2012-09-24 20:51:53 +00:00
|
|
|
$parserOutput = $this->getParserOutput( $title, null, null, false );
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$updates = [
|
2015-02-15 19:34:43 +00:00
|
|
|
new LinksUpdate( $title, $parserOutput, $recursive )
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-02-15 19:34:43 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
Hooks::run( 'SecondaryDataUpdates', [ $title, $old, $recursive, $parserOutput, &$updates ] );
|
2015-02-15 19:34:43 +00:00
|
|
|
|
|
|
|
|
return $updates;
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Title[]|null
|
|
|
|
|
*
|
|
|
|
|
* @see Content::getRedirectChain
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getRedirectChain() {
|
|
|
|
|
global $wgMaxRedirects;
|
|
|
|
|
$title = $this->getRedirectTarget();
|
|
|
|
|
if ( is_null( $title ) ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// recursive check to follow double redirects
|
|
|
|
|
$recurse = $wgMaxRedirects;
|
2016-02-17 09:09:32 +00:00
|
|
|
$titles = [ $title ];
|
2012-09-24 20:51:53 +00:00
|
|
|
while ( --$recurse > 0 ) {
|
|
|
|
|
if ( $title->isRedirect() ) {
|
|
|
|
|
$page = WikiPage::factory( $title );
|
|
|
|
|
$newtitle = $page->getRedirectTarget();
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// Redirects to some special pages are not permitted
|
2013-11-20 04:49:59 +00:00
|
|
|
if ( $newtitle instanceof Title && $newtitle->isValidRedirectTarget() ) {
|
2012-09-24 20:51:53 +00:00
|
|
|
// The new title passes the checks, so make that our current
|
|
|
|
|
// title so that further recursion can be checked
|
|
|
|
|
$title = $newtitle;
|
|
|
|
|
$titles[] = $newtitle;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-19 21:26:16 +00:00
|
|
|
|
2012-09-24 20:51:53 +00:00
|
|
|
return $titles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-03 17:08:05 +00:00
|
|
|
* Subclasses that implement redirects should override this.
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
|
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return null
|
|
|
|
|
*
|
|
|
|
|
* @see Content::getRedirectTarget
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getRedirectTarget() {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-03-03 17:08:05 +00:00
|
|
|
* @note Migrated here from Title::newFromRedirectRecurse.
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
|
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Title|null
|
|
|
|
|
*
|
|
|
|
|
* @see Content::getUltimateRedirectTarget
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getUltimateRedirectTarget() {
|
|
|
|
|
$titles = $this->getRedirectChain();
|
2013-11-19 21:26:16 +00:00
|
|
|
|
2012-09-24 20:51:53 +00:00
|
|
|
return $titles ? array_pop( $titles ) : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-05 13:03:24 +00:00
|
|
|
* @since 1.21
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
|
|
|
|
* @return bool
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::isRedirect
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function isRedirect() {
|
|
|
|
|
return $this->getRedirectTarget() !== null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This default implementation always returns $this.
|
2014-03-03 17:08:05 +00:00
|
|
|
* Subclasses that implement redirects should override this.
|
2012-10-16 18:16:11 +00:00
|
|
|
*
|
2012-10-05 13:03:24 +00:00
|
|
|
* @since 1.21
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param Title $target
|
|
|
|
|
*
|
2012-09-24 20:51:53 +00:00
|
|
|
* @return Content $this
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @see Content::updateRedirect
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function updateRedirect( Title $target ) {
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return null
|
|
|
|
|
*
|
|
|
|
|
* @see Content::getSection
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function getSection( $sectionId ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return null
|
|
|
|
|
*
|
|
|
|
|
* @see Content::replaceSection
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2014-06-12 14:05:18 +00:00
|
|
|
public function replaceSection( $sectionId, Content $with, $sectionTitle = '' ) {
|
2012-09-24 20:51:53 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Content $this
|
|
|
|
|
*
|
|
|
|
|
* @see Content::preSaveTransform
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Content $this
|
|
|
|
|
*
|
|
|
|
|
* @see Content::addSectionHeader
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function addSectionHeader( $header ) {
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Content $this
|
|
|
|
|
*
|
|
|
|
|
* @see Content::preloadTransform
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2016-02-17 09:09:32 +00:00
|
|
|
public function preloadTransform( Title $title, ParserOptions $popts, $params = [] ) {
|
2012-09-24 20:51:53 +00:00
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
2014-03-03 17:08:05 +00:00
|
|
|
*
|
|
|
|
|
* @return Status
|
|
|
|
|
*
|
|
|
|
|
* @see Content::prepareSave
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2015-03-11 07:21:30 +00:00
|
|
|
public function prepareSave( WikiPage $page, $flags, $parentRevId, User $user ) {
|
2012-09-24 20:51:53 +00:00
|
|
|
if ( $this->isValid() ) {
|
|
|
|
|
return Status::newGood();
|
|
|
|
|
} else {
|
|
|
|
|
return Status::newFatal( "invalid-content-data" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-10-05 13:03:24 +00:00
|
|
|
* @since 1.21
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param WikiPage $page
|
|
|
|
|
* @param ParserOutput $parserOutput
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return LinksDeletionUpdate[]
|
|
|
|
|
*
|
|
|
|
|
* @see Content::getDeletionUpdates
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
2014-03-03 17:08:05 +00:00
|
|
|
public function getDeletionUpdates( WikiPage $page, ParserOutput $parserOutput = null ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2012-09-24 20:51:53 +00:00
|
|
|
new LinksDeletionUpdate( $page ),
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2012-09-24 20:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-11-20 04:49:59 +00:00
|
|
|
* This default implementation always returns false. Subclasses may override
|
|
|
|
|
* this to supply matching logic.
|
2012-09-24 20:51:53 +00:00
|
|
|
*
|
2012-10-16 18:16:11 +00:00
|
|
|
* @since 1.21
|
|
|
|
|
*
|
2012-09-24 20:51:53 +00:00
|
|
|
* @param MagicWord $word
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @return bool Always false.
|
|
|
|
|
*
|
|
|
|
|
* @see Content::matchMagicWord
|
2012-09-24 20:51:53 +00:00
|
|
|
*/
|
|
|
|
|
public function matchMagicWord( MagicWord $word ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-11-05 15:53:48 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This base implementation calls the hook ConvertContent to enable custom conversions.
|
|
|
|
|
* Subclasses may override this to implement conversion for "their" content model.
|
|
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @param string $toModel
|
|
|
|
|
* @param string $lossy
|
|
|
|
|
*
|
|
|
|
|
* @return Content|bool
|
2012-11-05 15:53:48 +00:00
|
|
|
*
|
2014-03-03 17:08:05 +00:00
|
|
|
* @see Content::convert()
|
2012-11-05 15:53:48 +00:00
|
|
|
*/
|
|
|
|
|
public function convert( $toModel, $lossy = '' ) {
|
|
|
|
|
if ( $this->getModel() === $toModel ) {
|
2015-09-11 13:44:59 +00:00
|
|
|
// nothing to do, shorten out.
|
2012-11-05 15:53:48 +00:00
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$lossy = ( $lossy === 'lossy' ); // string flag, convert to boolean for convenience
|
|
|
|
|
$result = false;
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
Hooks::run( 'ConvertContent', [ $this, $toModel, $lossy, &$result ] );
|
2013-11-19 21:26:16 +00:00
|
|
|
|
2012-11-05 15:53:48 +00:00
|
|
|
return $result;
|
|
|
|
|
}
|
2012-10-16 10:38:20 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a ParserOutput object containing information derived from this content.
|
|
|
|
|
* Most importantly, unless $generateHtml was false, the return value contains an
|
|
|
|
|
* HTML representation of the content.
|
|
|
|
|
*
|
|
|
|
|
* Subclasses that want to control the parser output may override this, but it is
|
|
|
|
|
* preferred to override fillParserOutput() instead.
|
|
|
|
|
*
|
|
|
|
|
* Subclasses that override getParserOutput() itself should take care to call the
|
|
|
|
|
* ContentGetParserOutput hook.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.24
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title Context title for parsing
|
|
|
|
|
* @param int|null $revId Revision ID (for {{REVISIONID}})
|
|
|
|
|
* @param ParserOptions|null $options Parser options
|
|
|
|
|
* @param bool $generateHtml Whether or not to generate HTML
|
|
|
|
|
*
|
|
|
|
|
* @return ParserOutput Containing information derived from this content.
|
|
|
|
|
*/
|
|
|
|
|
public function getParserOutput( Title $title, $revId = null,
|
|
|
|
|
ParserOptions $options = null, $generateHtml = true
|
|
|
|
|
) {
|
|
|
|
|
if ( $options === null ) {
|
|
|
|
|
$options = $this->getContentHandler()->makeParserOptions( 'canonical' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
|
|
|
|
|
2014-12-09 07:23:30 +00:00
|
|
|
if ( Hooks::run( 'ContentGetParserOutput',
|
2016-02-17 09:09:32 +00:00
|
|
|
[ $this, $title, $revId, $options, $generateHtml, &$po ] ) ) {
|
2012-10-16 10:38:20 +00:00
|
|
|
|
2014-05-02 20:16:51 +00:00
|
|
|
// Save and restore the old value, just in case something is reusing
|
|
|
|
|
// the ParserOptions object in some weird way.
|
|
|
|
|
$oldRedir = $options->getRedirectTarget();
|
|
|
|
|
$options->setRedirectTarget( $this->getRedirectTarget() );
|
2012-10-16 10:38:20 +00:00
|
|
|
$this->fillParserOutput( $title, $revId, $options, $generateHtml, $po );
|
2014-05-02 20:16:51 +00:00
|
|
|
$options->setRedirectTarget( $oldRedir );
|
2012-10-16 10:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
Hooks::run( 'ContentAlterParserOutput', [ $this, $title, $po ] );
|
2014-09-19 10:09:54 +00:00
|
|
|
|
2012-10-16 10:38:20 +00:00
|
|
|
return $po;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Fills the provided ParserOutput with information derived from the content.
|
|
|
|
|
* Unless $generateHtml was false, this includes an HTML representation of the content.
|
|
|
|
|
*
|
|
|
|
|
* This is called by getParserOutput() after consulting the ContentGetParserOutput hook.
|
|
|
|
|
* Subclasses are expected to override this method (or getParserOutput(), if need be).
|
|
|
|
|
* Subclasses of TextContent should generally override getHtml() instead.
|
|
|
|
|
*
|
|
|
|
|
* This placeholder implementation always throws an exception.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.24
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title Context title for parsing
|
|
|
|
|
* @param int|null $revId Revision ID (for {{REVISIONID}})
|
2014-08-15 16:28:30 +00:00
|
|
|
* @param ParserOptions $options Parser options
|
2012-10-16 10:38:20 +00:00
|
|
|
* @param bool $generateHtml Whether or not to generate HTML
|
|
|
|
|
* @param ParserOutput &$output The output object to fill (reference).
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
protected function fillParserOutput( Title $title, $revId,
|
|
|
|
|
ParserOptions $options, $generateHtml, ParserOutput &$output
|
|
|
|
|
) {
|
|
|
|
|
// Don't make abstract, so subclasses that override getParserOutput() directly don't fail.
|
|
|
|
|
throw new MWException( 'Subclasses of AbstractContent must override fillParserOutput!' );
|
|
|
|
|
}
|
2012-10-17 16:16:23 +00:00
|
|
|
}
|