searchEngineFactory = $searchEngineFactory; } /** * @param string $name * @return mixed */ private function getOption( $name ) { if ( $this->tree ) { return $this->tree->getOption( $name ); } else { return $this->getConfig()->get( 'CategoryTreeDefaultOptions' )[$name]; } } /** * Main execution function * @param string|null $par Parameters passed to the page */ public function execute( $par ) { $this->setHeaders(); $this->addHelpLink( 'Extension:CategoryTree' ); $request = $this->getRequest(); if ( $par ) { $this->target = trim( $par ); } else { $this->target = trim( $request->getText( 'target' ) ); if ( $this->target === '' ) { $rootcategory = $this->msg( 'rootcategory' ); if ( $rootcategory->exists() ) { $this->target = $rootcategory->text(); } } } $options = []; $config = $this->getConfig(); # grab all known options from the request. Normalization is done by the CategoryTree class $categoryTreeDefaultOptions = $config->get( 'CategoryTreeDefaultOptions' ); $categoryTreeSpecialPageOptions = $config->get( 'CategoryTreeSpecialPageOptions' ); foreach ( $categoryTreeDefaultOptions as $option => $default ) { if ( isset( $categoryTreeSpecialPageOptions[$option] ) ) { $default = $categoryTreeSpecialPageOptions[$option]; } $options[$option] = $request->getVal( $option, $default ); } $this->tree = new CategoryTree( $options ); $this->getOutput()->addWikiMsg( 'categorytree-header' ); $this->executeInputForm(); if ( $this->target !== '' ) { $this->executeCategoryTree(); } } /** * Input form for entering a category */ private function executeInputForm() { $namespaces = $this->getRequest()->getRawVal( 'namespaces' ); // mode may be overriden by namespaces option $mode = ( $namespaces === null ? $this->getOption( 'mode' ) : CategoryTreeMode::ALL ); if ( $mode === CategoryTreeMode::CATEGORIES ) { $modeDefault = 'categories'; } elseif ( $mode === CategoryTreeMode::PAGES ) { $modeDefault = 'pages'; } else { $modeDefault = 'all'; } $formDescriptor = [ 'category' => [ 'type' => 'title', 'name' => 'target', 'label-message' => 'categorytree-category', 'namespace' => NS_CATEGORY, 'default' => str_replace( '_', ' ', $this->target ), ], 'mode' => [ 'type' => 'select', 'name' => 'mode', 'label-message' => 'categorytree-mode-label', 'options-messages' => [ 'categorytree-mode-categories' => 'categories', 'categorytree-mode-pages' => 'pages', 'categorytree-mode-all' => 'all', ], 'default' => $modeDefault, 'nodata' => true, ], 'namespace' => [ 'type' => 'namespaceselect', 'name' => 'namespaces', 'label-message' => 'namespace', 'all' => '', ], ]; HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() ) ->setWrapperLegendMsg( 'categorytree-legend' ) ->setSubmitTextMsg( 'categorytree-go' ) ->setMethod( 'get' ) // Strip subpage ->setTitle( $this->getPageTitle() ) ->prepareForm() ->displayForm( false ); } /** * Show the category tree */ private function executeCategoryTree() { $output = $this->getOutput(); CategoryTree::setHeaders( $output ); $title = CategoryTree::makeTitle( $this->target ); if ( !$title || !$title->getArticleID() ) { $output->addHTML( Html::rawElement( 'div', [ 'class' => 'CategoryTreeNotice' ], $this->msg( 'categorytree-not-found' ) ->plaintextParams( $this->target ) ->parse() ) ); return; } $parents = $this->tree->renderParents( $title ); if ( $parents === '' ) { $parents = $this->msg( 'categorytree-no-parent-categories' )->parse(); } $output->addHTML( Html::rawElement( 'div', [ 'class' => 'CategoryTreeParents' ], $this->msg( 'categorytree-parents' )->parse() . $this->msg( 'colon-separator' )->escaped() . $parents ) ); $output->addHTML( Html::rawElement( 'div', [ 'class' => 'CategoryTreeResult CategoryTreeTag', 'data-ct-mode' => $this->tree->getOption( 'mode' ), 'data-ct-options' => $this->tree->getOptionsAsJsStructure(), ], $this->tree->renderNode( $title, 1 ) ) ); } /** * Return an array of subpages beginning with $search that this special page will accept. * * @param string $search Prefix to search for * @param int $limit Maximum number of results to return (usually 10) * @param int $offset Number of results to skip (usually 0) * @return string[] Matching subpages */ public function prefixSearchSubpages( $search, $limit, $offset ) { $title = Title::newFromText( $search, NS_CATEGORY ); if ( $title && !$title->inNamespace( NS_CATEGORY ) ) { // Someone searching for something like "Wikipedia:Foo" $title = Title::makeTitleSafe( NS_CATEGORY, $search ); } if ( !$title ) { // No prefix suggestion outside of category namespace return []; } $searchEngine = $this->searchEngineFactory->create(); $searchEngine->setLimitOffset( $limit, $offset ); // Autocomplete subpage the same as a normal search, but just for categories $searchEngine->setNamespaces( [ NS_CATEGORY ] ); $result = $searchEngine->defaultPrefixSearch( $search ); return array_map( static function ( Title $t ) { // Remove namespace in search suggestion return $t->getText(); }, $result ); } /** * @inheritDoc */ protected function getGroupName() { return 'pages'; } }