mediawiki-extensions-Echo/includes/EchoOnWikiList.php
Umherirrender c81dad3efc Replace deprecated WikiPage::factory/newFromID
Replaced WikiPage::newFromID with newFromTitle,
because a Title object exists and could be reused

Bug: T297688
Change-Id: Ide30f259477ed8e0b48df31f5a23cafeb38d7316
2022-06-03 23:25:37 +02:00

59 lines
1.4 KiB
PHP

<?php
use MediaWiki\MediaWikiServices;
/**
* Implements EchoContainmentList interface for sourcing a list of items from a wiki
* page. Uses the pages latest revision ID as cache key.
*/
class EchoOnWikiList implements EchoContainmentList {
/**
* @var Title|null A title object representing the page to source the list from,
* or null if the page does not exist.
*/
protected $title;
/**
* @param int $titleNs An NS_* constant representing the mediawiki namespace of the page
* @param string $titleString String portion of the wiki page title
*/
public function __construct( $titleNs, $titleString ) {
$title = Title::newFromText( $titleString, $titleNs );
if ( $title !== null && $title->getArticleID() ) {
$this->title = $title;
}
}
/**
* @inheritDoc
*/
public function getValues() {
if ( !$this->title ) {
return [];
}
$article = MediaWikiServices::getInstance()->getWikiPageFactory()->newFromTitle( $this->title );
if ( !$article->exists() ) {
return [];
}
$content = $article->getContent();
$text = ( $content instanceof TextContent ) ? $content->getText() : null;
if ( $text === null ) {
return [];
}
return array_filter( array_map( 'trim', explode( "\n", $text ) ) );
}
/**
* @inheritDoc
*/
public function getCacheKey() {
if ( !$this->title ) {
return '';
}
return (string)$this->title->getLatestRevID();
}
}