mediawiki-extensions-Discus.../includes/SpecialFindComment.php
Bartosz Dziewoński 0024a94ba7 Store permalink data, implement Special:FindComment/GoToComment
Depends-On: I90656cc74bb1cb1f2f3c82ad51cfb164cb8a4a4b
Bug: T296801
Change-Id: I84187b303aa10a242c872088403f808df3d1f940
2022-08-11 01:19:47 +02:00

129 lines
2.9 KiB
PHP

<?php
namespace MediaWiki\Extension\DiscussionTools;
use FormSpecialPage;
use Html;
use HTMLForm;
class SpecialFindComment extends FormSpecialPage {
/** @var ThreadItemStore */
private $threadItemStore;
/** @var ThreadItemFormatter */
private $threadItemFormatter;
/**
* @param ThreadItemStore $threadItemStore
* @param ThreadItemFormatter $threadItemFormatter
*/
public function __construct(
ThreadItemStore $threadItemStore,
ThreadItemFormatter $threadItemFormatter
) {
parent::__construct( 'FindComment' );
$this->threadItemStore = $threadItemStore;
$this->threadItemFormatter = $threadItemFormatter;
}
/**
* @inheritDoc
*/
protected function getFormFields() {
return [
'idorname' => [
'label-message' => 'discussiontools-findcomment-label-idorname',
'name' => 'idorname',
'type' => 'text',
'default' => $this->par,
],
];
}
/**
* @inheritDoc
*/
protected function getDisplayFormat() {
return 'ooui';
}
/**
* @inheritDoc
*/
protected function alterForm( HTMLForm $form ) {
$form->setMethod( 'GET' );
$form->setWrapperLegend( true );
$form->setSubmitTextMsg( 'discussiontools-findcomment-label-search' );
// Remove subpage when submitting
$form->setTitle( $this->getPageTitle() );
}
private $idOrName;
/**
* @inheritDoc
*/
public function onSubmit( array $data ) {
$this->idOrName = $data['idorname'];
// Always display the form again
return false;
}
/**
* @inheritDoc
*/
public function execute( $par ) {
parent::execute( $par );
$out = $this->getOutput();
$results = false;
if ( $this->idOrName ) {
$byId = $this->threadItemStore->findNewestRevisionsById( $this->idOrName );
if ( $byId ) {
$this->displayItems( $byId, 'discussiontools-findcomment-results-id' );
$results = true;
}
$byName = $this->threadItemStore->findNewestRevisionsByName( $this->idOrName );
if ( $byName ) {
$this->displayItems( $byName, 'discussiontools-findcomment-results-name' );
$results = true;
}
}
if ( $results ) {
$out->addHTML( Html::rawElement( 'p', [],
$this->msg( 'discussiontools-findcomment-gotocomment', $this->idOrName )->parse() ) );
} elseif ( $this->idOrName ) {
$out->addHTML( Html::rawElement( 'p', [],
$this->msg( 'discussiontools-findcomment-noresults' )->parse() ) );
}
}
/**
* @param array $threadItems
* @param string $msgKey
*/
private function displayItems( array $threadItems, string $msgKey ) {
$out = $this->getOutput();
$list = [];
foreach ( $threadItems as $item ) {
$line = $this->threadItemFormatter->formatLine( $item, $this );
$list[] = Html::rawElement( 'li', [], $line );
}
$out->addHTML( Html::rawElement( 'p', [], $this->msg( $msgKey, count( $list ) )->parse() ) );
$out->addHTML( Html::rawElement( 'ul', [], implode( '', $list ) ) );
}
/**
* @inheritDoc
*/
public function getDescription() {
return $this->msg( 'discussiontools-findcomment-title' )->text();
}
}