2022-02-16 23:29:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
|
|
|
|
use FormSpecialPage;
|
|
|
|
use Html;
|
|
|
|
use HTMLForm;
|
|
|
|
|
|
|
|
class SpecialFindComment extends FormSpecialPage {
|
|
|
|
|
2022-10-21 19:34:18 +00:00
|
|
|
private ThreadItemStore $threadItemStore;
|
|
|
|
private ThreadItemFormatter $threadItemFormatter;
|
2022-02-16 23:29:10 +00:00
|
|
|
|
|
|
|
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 ) {
|
2022-11-02 00:19:46 +00:00
|
|
|
$out->addHTML(
|
|
|
|
$this->msg( 'discussiontools-findcomment-gotocomment', $this->idOrName )->parseAsBlock() );
|
2022-02-16 23:29:10 +00:00
|
|
|
} elseif ( $this->idOrName ) {
|
2022-11-02 00:19:46 +00:00
|
|
|
$out->addHTML(
|
|
|
|
$this->msg( 'discussiontools-findcomment-noresults' )->parseAsBlock() );
|
2022-02-16 23:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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 );
|
|
|
|
}
|
|
|
|
|
2022-11-02 00:19:46 +00:00
|
|
|
$out->addHTML( $this->msg( $msgKey, count( $list ) )->parseAsBlock() );
|
2022-02-16 23:29:10 +00:00
|
|
|
$out->addHTML( Html::rawElement( 'ul', [], implode( '', $list ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getDescription() {
|
|
|
|
return $this->msg( 'discussiontools-findcomment-title' )->text();
|
|
|
|
}
|
|
|
|
}
|