mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-27 09:43:06 +00:00
480ff35722
This change outputs the not found category as plain text and prevents
parser processing of the category name like '''bold''' or ''italic''.
This affects the root category of the category tree in the sidebar
like on
$wgCategoryTreeSidebarRoot = "Lista d''e Paise d''o munno"
for a situation without parser and
{{#categorytree:Lista d''e Paise d''o munno}}
or
<categorytree>Lista d''e Paise d''o munno</categorytree>
in the content for situations with parser.
A separation for with and without parser is not needed anymore.
Problem described in T18744 which was the reason for change r49471
(9700e2d5
) is not reproducible.
This change also prevents that the value in the parameter `target` on
Special:CategoryTree gets interpreted as wikitext and outputs the value
with an output encoding.
Special:CategoryTree?target=B%27%27%27o%27%27%27ld%20un%3Cu%20onclick%3d%22alert(%27XSS%27)%22%3Eder%3C/u%3Eline
was rendered as
B<b>o</b>ld un<u>der</u>line
and is now rendered as
B'''o'''ld un<u onclick="alert('XSS')">der</u>line
The parser prevented already JavaScript injection, so there was no
security issue.
Change-Id: I592b23ba965c15b81a2f97686161a4d590331c87
240 lines
6.9 KiB
PHP
240 lines
6.9 KiB
PHP
<?php
|
|
/**
|
|
* © 2006 Daniel Kinzler
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @author Daniel Kinzler, brightbyte.de
|
|
*/
|
|
|
|
namespace MediaWiki\Extension\CategoryTree;
|
|
|
|
use HTMLForm;
|
|
use SearchEngineFactory;
|
|
use SpecialPage;
|
|
use Title;
|
|
use Xml;
|
|
|
|
/**
|
|
* Special page for the CategoryTree extension, an AJAX based gadget
|
|
* to display the category structure of a wiki
|
|
*/
|
|
class CategoryTreePage extends SpecialPage {
|
|
public $target = '';
|
|
|
|
/** @var SearchEngineFactory */
|
|
private $searchEngineFactory;
|
|
|
|
/**
|
|
* @var CategoryTree
|
|
*/
|
|
public $tree = null;
|
|
|
|
/**
|
|
* @param SearchEngineFactory $searchEngineFactory
|
|
*/
|
|
public function __construct(
|
|
SearchEngineFactory $searchEngineFactory
|
|
) {
|
|
parent::__construct( 'CategoryTree' );
|
|
$this->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->getVal( '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 );
|
|
|
|
$output = $this->getOutput();
|
|
$output->addWikiMsg( 'categorytree-header' );
|
|
|
|
$this->executeInputForm();
|
|
|
|
if ( $this->target !== '' ) {
|
|
CategoryTree::setHeaders( $output );
|
|
|
|
$title = CategoryTree::makeTitle( $this->target );
|
|
|
|
if ( $title && $title->getArticleID() ) {
|
|
$output->addHTML( Xml::openElement( 'div', [ 'class' => 'CategoryTreeParents' ] ) );
|
|
$output->addHTML( $this->msg( 'categorytree-parents' )->parse() );
|
|
$output->addHTML( $this->msg( 'colon-separator' )->escaped() );
|
|
|
|
$parents = $this->tree->renderParents( $title );
|
|
|
|
if ( $parents == '' ) {
|
|
$output->addHTML( $this->msg( 'categorytree-no-parent-categories' )->parse() );
|
|
} else {
|
|
$output->addHTML( $parents );
|
|
}
|
|
|
|
$output->addHTML( Xml::closeElement( 'div' ) );
|
|
|
|
$output->addHTML( Xml::openElement( 'div', [
|
|
'class' => 'CategoryTreeResult CategoryTreeTag',
|
|
'data-ct-mode' => $this->tree->getOption( 'mode' ),
|
|
'data-ct-options' => $this->tree->getOptionsAsJsStructure(),
|
|
] ) );
|
|
$output->addHTML( $this->tree->renderNode( $title, 1 ) );
|
|
$output->addHTML( Xml::closeElement( 'div' ) );
|
|
} else {
|
|
$output->addHTML( Xml::openElement( 'div', [ 'class' => 'CategoryTreeNotice' ] ) );
|
|
$output->addHTML( $this->msg( 'categorytree-not-found' )
|
|
->plaintextParams( $this->target )
|
|
->parse()
|
|
);
|
|
$output->addHTML( Xml::closeElement( 'div' ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Input form for entering a category
|
|
*/
|
|
private function executeInputForm() {
|
|
$namespaces = $this->getRequest()->getVal( 'namespaces', '' );
|
|
// mode may be overriden by namespaces option
|
|
$mode = ( $namespaces == '' ? $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,
|
|
],
|
|
|
|
'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() )
|
|
->addHiddenFields( [ 'title' => $this->getPageTitle()->getPrefixedDbKey() ] )
|
|
->setWrapperLegendMsg( 'categorytree-legend' )
|
|
->setSubmitTextMsg( 'categorytree-go' )
|
|
->setMethod( 'get' )
|
|
->prepareForm()
|
|
->displayForm( false );
|
|
}
|
|
|
|
/**
|
|
* 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->getNamespace() !== 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';
|
|
}
|
|
|
|
}
|