2022-02-16 23:29:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
|
2023-12-11 15:38:02 +00:00
|
|
|
use MediaWiki\Html\Html;
|
2024-06-08 22:02:35 +00:00
|
|
|
use MediaWiki\HTMLForm\HTMLForm;
|
2023-12-11 15:38:02 +00:00
|
|
|
use MediaWiki\SpecialPage\FormSpecialPage;
|
2022-02-16 23:29:10 +00:00
|
|
|
|
|
|
|
class SpecialFindComment extends FormSpecialPage {
|
|
|
|
|
2023-03-24 21:31:01 +00:00
|
|
|
private const LIST_LIMIT = 50;
|
|
|
|
|
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',
|
2023-01-07 23:57:02 +00:00
|
|
|
'required' => true,
|
2022-02-16 23:29:10 +00:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-01-07 23:57:02 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected function getSubpageField() {
|
|
|
|
return 'idorname';
|
|
|
|
}
|
|
|
|
|
2022-02-16 23:29:10 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected function getDisplayFormat() {
|
|
|
|
return 'ooui';
|
|
|
|
}
|
|
|
|
|
2023-01-07 23:57:02 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function requiresPost() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected function getShowAlways() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-02-16 23:29:10 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected function alterForm( HTMLForm $form ) {
|
|
|
|
$form->setWrapperLegend( true );
|
|
|
|
$form->setSubmitTextMsg( 'discussiontools-findcomment-label-search' );
|
|
|
|
}
|
|
|
|
|
2023-09-16 00:31:47 +00:00
|
|
|
private string $idOrName;
|
2022-02-16 23:29:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function onSubmit( array $data ) {
|
2023-06-24 08:47:48 +00:00
|
|
|
// They are correctly written with underscores, but allow spaces too for consistency with
|
|
|
|
// the behavior of internal wiki links.
|
|
|
|
$this->idOrName = str_replace( ' ', '_', $data['idorname'] );
|
2023-01-07 23:57:02 +00:00
|
|
|
return true;
|
2022-02-16 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2023-01-07 23:57:02 +00:00
|
|
|
public function onSuccess() {
|
2022-02-16 23:29:10 +00:00
|
|
|
$out = $this->getOutput();
|
|
|
|
$results = false;
|
|
|
|
|
|
|
|
if ( $this->idOrName ) {
|
2023-03-24 21:31:01 +00:00
|
|
|
$byId = $this->threadItemStore->findNewestRevisionsById( $this->idOrName, static::LIST_LIMIT + 1 );
|
2022-02-16 23:29:10 +00:00
|
|
|
if ( $byId ) {
|
|
|
|
$this->displayItems( $byId, 'discussiontools-findcomment-results-id' );
|
|
|
|
$results = true;
|
|
|
|
}
|
|
|
|
|
2023-03-24 21:31:01 +00:00
|
|
|
$byName = $this->threadItemStore->findNewestRevisionsByName( $this->idOrName, static::LIST_LIMIT + 1 );
|
2022-02-16 23:29:10 +00:00
|
|
|
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() );
|
2023-01-07 23:57:02 +00:00
|
|
|
} else {
|
2022-11-02 00:19:46 +00:00
|
|
|
$out->addHTML(
|
|
|
|
$this->msg( 'discussiontools-findcomment-noresults' )->parseAsBlock() );
|
2022-02-16 23:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function displayItems( array $threadItems, string $msgKey ) {
|
|
|
|
$out = $this->getOutput();
|
|
|
|
|
|
|
|
$list = [];
|
|
|
|
foreach ( $threadItems as $item ) {
|
2023-03-24 21:31:01 +00:00
|
|
|
if ( count( $list ) === static::LIST_LIMIT ) {
|
|
|
|
break;
|
|
|
|
}
|
2022-02-16 23:29:10 +00:00
|
|
|
$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 ) ) );
|
2023-03-24 21:31:01 +00:00
|
|
|
if ( count( $threadItems ) > static::LIST_LIMIT ) {
|
|
|
|
$out->addHTML( $this->msg( 'morenotlisted' )->parseAsBlock() );
|
|
|
|
}
|
2022-02-16 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getDescription() {
|
2023-09-21 20:10:57 +00:00
|
|
|
return $this->msg( 'discussiontools-findcomment-title' );
|
2022-02-16 23:29:10 +00:00
|
|
|
}
|
|
|
|
}
|