mediawiki-extensions-Discus.../includes/ApiDiscussionToolsFindComment.php
Bartosz Dziewoński 52ae0f3152 Special:TopicSubscriptions: Use permalinks when available
When permalink data is available, display a permalink using
the current page title, instead of a plain link to the section
at the time of subscription.

Consolidate and clean up some existing permalink code.

Bug: T306373
Change-Id: Ie2f63cbfdbfa703530205201dfcfb0e5ad053b35
2024-04-04 13:44:06 +00:00

144 lines
3.4 KiB
PHP

<?php
namespace MediaWiki\Extension\DiscussionTools;
use ApiBase;
use ApiMain;
use ApiUsageException;
use MediaWiki\Extension\DiscussionTools\ThreadItem\DatabaseThreadItem;
use MediaWiki\Title\Title;
use MediaWiki\Title\TitleFormatter;
use Wikimedia\ParamValidator\ParamValidator;
class ApiDiscussionToolsFindComment extends ApiBase {
private ThreadItemStore $threadItemStore;
private TitleFormatter $titleFormatter;
public function __construct(
ApiMain $main,
string $name,
ThreadItemStore $threadItemStore,
TitleFormatter $titleFormatter
) {
parent::__construct( $main, $name );
$this->threadItemStore = $threadItemStore;
$this->titleFormatter = $titleFormatter;
}
/**
* @inheritDoc
* @throws ApiUsageException
*/
public function execute() {
$params = $this->extractRequestParams();
$values = [];
$this->requireAtLeastOneParameter( $params, 'idorname', 'heading', 'page' );
if ( $params['idorname'] ) {
$idOrName = $params['idorname'];
$byId = $this->threadItemStore->findNewestRevisionsById( $idOrName );
foreach ( $byId as $item ) {
$values[] = $this->getValue( $item, 'id' );
}
$byName = $this->threadItemStore->findNewestRevisionsByName( $idOrName );
foreach ( $byName as $item ) {
$values[] = $this->getValue( $item, 'name' );
}
} else {
$this->requireAtLeastOneParameter( $params, 'heading' );
$this->requireAtLeastOneParameter( $params, 'page' );
$heading = $params['heading'];
$page = $params['page'];
$title = Title::newFromText( $page );
if ( $title ) {
$articleId = $title->getArticleId();
if ( $articleId ) {
$byHeading = $this->threadItemStore->findNewestRevisionsByHeading(
$heading, $articleId, $title->getTitleValue()
);
foreach ( $byHeading as $item ) {
$values[] = $this->getValue( $item, 'heading' );
}
}
}
}
$redirects = 0;
foreach ( $values as $value ) {
if ( $value['couldredirect'] ) {
$redirects++;
if ( $redirects > 1 ) {
break;
}
}
}
foreach ( $values as $value ) {
if ( $redirects === 1 && $value['couldredirect'] ) {
$value['shouldredirect'] = true;
}
$this->getResult()->addValue( $this->getModuleName(), null, $value );
}
}
/**
* Get a value to add to the results
*
* @param DatabaseThreadItem $item Thread item
* @param string $matchedBy How the thread item was matched (id, name or heading)
* @return array
*/
private function getValue( DatabaseThreadItem $item, string $matchedBy ): array {
$title = Title::castFromPageReference( $item->getPage() );
return [
'id' => $item->getId(),
'name' => $item->getName(),
'title' => $this->titleFormatter->getPrefixedText( $item->getPage() ),
'oldid' => !$item->getRevision()->isCurrent() ? $item->getRevision()->getId() : null,
'matchedby' => $matchedBy,
// Could this be an automatic redirect? Will be converted to 'shouldredirect'
// if there is only one of these in the result set.
'couldredirect' => $item->isCanonicalPermalink(),
];
}
/**
* @inheritDoc
*/
public function getAllowedParams() {
return [
'idorname' => [
ParamValidator::PARAM_TYPE => 'string',
],
'heading' => [
ParamValidator::PARAM_TYPE => 'string',
],
'page' => [
ParamValidator::PARAM_TYPE => 'string',
],
];
}
/**
* @inheritDoc
*/
public function needsToken() {
return false;
}
/**
* @inheritDoc
*/
public function isWriteMode() {
return false;
}
}