1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
|
<?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.
*
* 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
*
* @since 1.21
*
* @file
* @ingroup Content
*
* @author Daniel Kinzler
*/
use MediaWiki\Content\IContentHandlerFactory;
use MediaWiki\MediaWikiServices;
/**
* Base implementation for content objects.
*
* @stable to extend
*
* @ingroup Content
*/
abstract class AbstractContent implements Content {
/**
* Name of the content model this Content object represents.
* Use with CONTENT_MODEL_XXX constants
*
* @since 1.21
*
* @var string
*/
protected $model_id;
/**
* @stable to call
*
* @param string|null $modelId
*
* @since 1.21
*/
public function __construct( $modelId = null ) {
$this->model_id = $modelId;
}
/**
* @since 1.21
*
* @see Content::getModel
* @return string
*/
public function getModel() {
return $this->model_id;
}
/**
* @since 1.21
*
* @param string $modelId The model to check
*
* @throws MWException If the provided ID is not the ID of the content model supported by this
* Content object.
*/
protected function checkModelID( $modelId ) {
if ( $modelId !== $this->model_id ) {
throw new MWException(
"Bad content model: " .
"expected {$this->model_id} " .
"but got $modelId."
);
}
}
/**
* @since 1.21
*
* @see Content::getContentHandler
* @return ContentHandler
*/
public function getContentHandler() {
return $this->getContentHandlerFactory()->getContentHandler( $this->getModel() );
}
/**
* @return IContentHandlerFactory
*/
protected function getContentHandlerFactory(): IContentHandlerFactory {
return MediaWikiServices::getInstance()->getContentHandlerFactory();
}
/**
* @since 1.21
*
* @see Content::getDefaultFormat
* @return string
*/
public function getDefaultFormat() {
return $this->getContentHandler()->getDefaultFormat();
}
/**
* @since 1.21
*
* @see Content::getSupportedFormats
* @return string[]
*/
public function getSupportedFormats() {
return $this->getContentHandler()->getSupportedFormats();
}
/**
* @since 1.21
*
* @param string $format
*
* @return bool
*
* @see Content::isSupportedFormat
*/
public function isSupportedFormat( $format ) {
if ( !$format ) {
return true; // this means "use the default"
}
return $this->getContentHandler()->isSupportedFormat( $format );
}
/**
* @since 1.21
*
* @param string $format The serialization format to check.
*
* @throws MWException If the format is not supported by this content handler.
*/
protected function checkFormat( $format ) {
if ( !$this->isSupportedFormat( $format ) ) {
throw new MWException(
"Format $format is not supported for content model " .
$this->getModel()
);
}
}
/**
* @stable to override
* @since 1.21
*
* @param string|null $format
*
* @return string
*
* @see Content::serialize
*/
public function serialize( $format = null ) {
return $this->getContentHandler()->serializeContent( $this, $format );
}
/**
* @stable to override
* @since 1.21
*
* @return bool
*
* @see Content::isEmpty
*/
public function isEmpty() {
return $this->getSize() === 0;
}
/**
* Subclasses may override this to implement (light weight) validation.
*
* @stable to override
* @since 1.21
*
* @return bool Always true.
*
* @see Content::isValid
*/
public function isValid() {
return true;
}
/**
* Decides whether two Content objects are equal.
* Two Content objects MUST not be considered equal if they do not share the same content model.
* Two Content objects that are equal SHOULD have the same serialization.
*
* This default implementation relies on equalsInternal() to determin whether the
* Content objects are logically equivalent. Subclasses that need to implement a custom
* equality check should consider overriding equalsInternal(). Subclasses that override
* equals() itself MUST make sure that the implementation returns false for $that === null,
* and true for $that === this. It MUST also return false if $that does not have the same
* content model.
*
* @stable to override
* @since 1.21
*
* @param Content|null $that
*
* @return bool
*
* @see Content::equals
*/
public function equals( Content $that = null ) {
if ( $that === null ) {
return false;
}
if ( $that === $this ) {
return true;
}
if ( $that->getModel() !== $this->getModel() ) {
return false;
}
// For type safety. Needed for odd cases like MessageContent using CONTENT_MODEL_WIKITEXT
if ( get_class( $that ) !== get_class( $this ) ) {
return false;
}
return $this->equalsInternal( $that );
}
/**
* Checks whether $that is logically equal to this Content object.
*
* This method can be overwritten by subclasses that need to implement custom
* equality checks.
*
* This default implementation checks whether the serializations
* of $this and $that are the same: $this->serialize() === $that->serialize()
*
* Implementors can assume that $that is an instance of the same class
* as the present Content object, as long as equalsInternal() is only called
* by the standard implementation of equals().
*
* @note Do not call this method directly, call equals() instead.
*
* @stable to override
*
* @param Content $that
* @return bool
*/
protected function equalsInternal( Content $that ) {
return $this->serialize() === $that->serialize();
}
/**
* Returns a list of DataUpdate objects for recording information about this
* Content in some secondary data store.
*
* This default implementation returns a LinksUpdate object and calls the
* SecondaryDataUpdates hook.
*
* Subclasses may override this to determine the secondary data updates more
* efficiently, preferably without the need to generate a parser output object.
* They should however make sure to call SecondaryDataUpdates to give extensions
* a chance to inject additional updates.
*
* @stable to override
* @since 1.21
*
* @param Title $title
* @param Content|null $old
* @param bool $recursive
* @param ParserOutput|null $parserOutput
*
* @return DataUpdate[]
*
* @see Content::getSecondaryDataUpdates()
*/
public function getSecondaryDataUpdates( Title $title, Content $old = null,
$recursive = true, ParserOutput $parserOutput = null
) {
if ( $parserOutput === null ) {
$parserOutput = $this->getParserOutput( $title, null, null, false );
}
$updates = [
new LinksUpdate( $title, $parserOutput, $recursive )
];
Hooks::runner()->onSecondaryDataUpdates( $title, $old, $recursive, $parserOutput, $updates );
return $updates;
}
/**
* @since 1.21
*
* @return Title[]|null
*
* @see Content::getRedirectChain
*/
public function getRedirectChain() {
global $wgMaxRedirects;
$title = $this->getRedirectTarget();
if ( $title === null ) {
return null;
}
// recursive check to follow double redirects
$recurse = $wgMaxRedirects;
$titles = [ $title ];
while ( --$recurse > 0 ) {
if ( $title->isRedirect() ) {
$page = WikiPage::factory( $title );
$newtitle = $page->getRedirectTarget();
} else {
break;
}
// Redirects to some special pages are not permitted
if ( $newtitle instanceof Title && $newtitle->isValidRedirectTarget() ) {
// 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;
}
}
return $titles;
}
/**
* Subclasses that implement redirects should override this.
*
* @stable to override
* @since 1.21
*
* @return Title|null
*
* @see Content::getRedirectTarget
*/
public function getRedirectTarget() {
return null;
}
/**
* @note Migrated here from Title::newFromRedirectRecurse.
*
* @since 1.21
*
* @return Title|null
*
* @see Content::getUltimateRedirectTarget
*/
public function getUltimateRedirectTarget() {
$titles = $this->getRedirectChain();
return $titles ? array_pop( $titles ) : null;
}
/**
* @since 1.21
*
* @return bool
*
* @see Content::isRedirect
*/
public function isRedirect() {
return $this->getRedirectTarget() !== null;
}
/**
* This default implementation always returns $this.
* Subclasses that implement redirects should override this.
*
* @stable to override
* @since 1.21
*
* @param Title $target
*
* @return Content $this
*
* @see Content::updateRedirect
*/
public function updateRedirect( Title $target ) {
return $this;
}
/**
* @stable to override
* @since 1.21
*
* @param string|int $sectionId
* @return null
*
* @see Content::getSection
*/
public function getSection( $sectionId ) {
return null;
}
/**
* @stable to override
* @since 1.21
*
* @param string|int|null|bool $sectionId
* @param Content $with
* @param string $sectionTitle
* @return null
*
* @see Content::replaceSection
*/
public function replaceSection( $sectionId, Content $with, $sectionTitle = '' ) {
return null;
}
/**
* @stable to override
* @since 1.21
*
* @param Title $title
* @param User $user
* @param ParserOptions $popts
* @return Content $this
*
* @see Content::preSaveTransform
*/
public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
return $this;
}
/**
* @stable to override
* @since 1.21
*
* @param string $header
* @return Content $this
*
* @see Content::addSectionHeader
*/
public function addSectionHeader( $header ) {
return $this;
}
/**
* @stable to override
* @since 1.21
*
* @param Title $title
* @param ParserOptions $popts
* @param array $params
* @return Content $this
*
* @see Content::preloadTransform
*/
public function preloadTransform( Title $title, ParserOptions $popts, $params = [] ) {
return $this;
}
/**
* @stable to override
* @since 1.21
*
* @param WikiPage $page
* @param int $flags
* @param int $parentRevId
* @param User $user
* @return Status
*
* @see Content::prepareSave
*/
public function prepareSave( WikiPage $page, $flags, $parentRevId, User $user ) {
if ( $this->isValid() ) {
return Status::newGood();
} else {
return Status::newFatal( "invalid-content-data" );
}
}
/**
* @stable to override
* @since 1.21
*
* @param WikiPage $page
* @param ParserOutput|null $parserOutput
*
* @return DeferrableUpdate[]
*
* @see Content::getDeletionUpdates
*/
public function getDeletionUpdates( WikiPage $page, ParserOutput $parserOutput = null ) {
return [
new LinksDeletionUpdate( $page ),
];
}
/**
* This default implementation always returns false. Subclasses may override
* this to supply matching logic.
*
* @stable to override
* @since 1.21
*
* @param MagicWord $word
*
* @return bool Always false.
*
* @see Content::matchMagicWord
*/
public function matchMagicWord( MagicWord $word ) {
return false;
}
/**
* This base implementation calls the hook ConvertContent to enable custom conversions.
* Subclasses may override this to implement conversion for "their" content model.
*
* @stable to override
*
* @param string $toModel
* @param string $lossy
*
* @return Content|bool
*
* @see Content::convert()
*/
public function convert( $toModel, $lossy = '' ) {
if ( $this->getModel() === $toModel ) {
// nothing to do, shorten out.
return $this;
}
$lossy = ( $lossy === 'lossy' ); // string flag, convert to boolean for convenience
$result = false;
Hooks::runner()->onConvertContent( $this, $toModel, $lossy, $result );
return $result;
}
/**
* 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.
*
* @stable to override
*
* @since 1.24
*
* @param Title $title Context title for parsing
* @param int|null $revId Revision ID being rendered
* @param ParserOptions|null $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 = ParserOptions::newCanonical( 'canonical' );
}
$po = new ParserOutput();
$options->registerWatcher( [ $po, 'recordOption' ] );
if ( Hooks::runner()->onContentGetParserOutput(
$this, $title, $revId, $options, $generateHtml, $po )
) {
// 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() );
$this->fillParserOutput( $title, $revId, $options, $generateHtml, $po );
$options->setRedirectTarget( $oldRedir );
}
Hooks::runner()->onContentAlterParserOutput( $this, $title, $po );
$options->registerWatcher( null );
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.
*
* @stable to override
*
* @since 1.24
*
* @param Title $title Context title for parsing
* @param int|null $revId ID of the revision being rendered.
* See Parser::parse() for the ramifications.
* @param ParserOptions $options
* @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!' );
}
}
|