2016-10-13 08:14:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace MediaWiki\Linter;
|
|
|
|
|
2017-04-14 03:49:21 +00:00
|
|
|
use HTMLForm;
|
2016-10-13 08:14:18 +00:00
|
|
|
use Html;
|
|
|
|
use SpecialPage;
|
|
|
|
|
|
|
|
class SpecialLintErrors extends SpecialPage {
|
|
|
|
|
|
|
|
private $category;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct( 'LintErrors' );
|
|
|
|
}
|
|
|
|
|
2017-04-14 03:49:21 +00:00
|
|
|
protected function showNamespaceFilterForm( $ns ) {
|
|
|
|
$fields = [
|
|
|
|
'namespace' => [
|
|
|
|
'type' => 'namespaceselect',
|
|
|
|
'name' => 'namespace',
|
|
|
|
'label-message' => 'linter-form-namespace',
|
|
|
|
'default' => $ns,
|
|
|
|
'id' => 'namespace',
|
|
|
|
'all' => '',
|
|
|
|
'cssclass' => 'namespaceselector',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
$form = HTMLForm::factory( 'ooui', $fields, $this->getContext() );
|
|
|
|
$form->setWrapperLegend( true );
|
|
|
|
$form->addHeaderText( $this->msg( "linter-category-{$this->category}-desc" )->escaped() );
|
|
|
|
$form->setMethod( 'get' );
|
|
|
|
$form->prepareForm()->displayForm( false );
|
|
|
|
}
|
|
|
|
|
2016-10-13 08:14:18 +00:00
|
|
|
public function execute( $par ) {
|
|
|
|
$this->setHeaders();
|
|
|
|
$this->outputHeader();
|
2016-12-15 01:07:40 +00:00
|
|
|
$catManager = new CategoryManager();
|
|
|
|
if ( in_array( $par, $catManager->getVisibleCategories() ) ) {
|
2016-10-13 08:14:18 +00:00
|
|
|
$this->category = $par;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !$this->category ) {
|
|
|
|
$this->addHelpLink( 'Help:Extension:Linter' );
|
2016-12-15 01:07:40 +00:00
|
|
|
$this->showCategoryListings( $catManager );
|
2016-10-13 08:14:18 +00:00
|
|
|
} else {
|
|
|
|
$this->addHelpLink( "Help:Extension:Linter/{$this->category}" );
|
|
|
|
$out = $this->getOutput();
|
|
|
|
$out->setPageTitle(
|
|
|
|
$this->msg( 'linterrors-subpage',
|
|
|
|
$this->msg( "linter-category-{$this->category}" )->text()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$out->addBacklinkSubtitle( $this->getPageTitle() );
|
2017-04-14 03:49:21 +00:00
|
|
|
$ns = $this->getRequest()->getIntOrNull( 'namespace' );
|
|
|
|
$this->showNamespaceFilterForm( $ns );
|
2016-10-13 08:14:18 +00:00
|
|
|
$pager = new LintErrorsPager(
|
2016-12-15 01:07:40 +00:00
|
|
|
$this->getContext(), $this->category, $this->getLinkRenderer(),
|
2017-04-14 03:49:21 +00:00
|
|
|
$catManager, $ns
|
2016-10-13 08:14:18 +00:00
|
|
|
);
|
|
|
|
$out->addParserOutput( $pager->getFullOutput() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 01:07:40 +00:00
|
|
|
private function showCategoryListings( CategoryManager $catManager ) {
|
|
|
|
$totals = ( new Database( 0 ) )->getTotals();
|
|
|
|
|
|
|
|
$out = $this->getOutput();
|
|
|
|
$out->addHTML( Html::element( 'h2', [], $this->msg( 'linter-heading-errors' )->text() ) );
|
|
|
|
$out->addHTML( $this->buildCategoryList( $catManager->getErrors(), $totals ) );
|
|
|
|
$out->addHTML( Html::element( 'h2', [], $this->msg( 'linter-heading-warnings' )->text() ) );
|
|
|
|
$out->addHTML( $this->buildCategoryList( $catManager->getWarnings(), $totals ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string[] $cats
|
|
|
|
* @param int[] $totals name => count
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function buildCategoryList( array $cats, array $totals ) {
|
2016-10-13 08:14:18 +00:00
|
|
|
$linkRenderer = $this->getLinkRenderer();
|
|
|
|
$html = Html::openElement( 'ul' ) . "\n";
|
|
|
|
foreach ( $cats as $cat ) {
|
|
|
|
$html .= Html::rawElement( 'li', [], $linkRenderer->makeKnownLink(
|
|
|
|
$this->getPageTitle( $cat ),
|
|
|
|
$this->msg( "linter-category-$cat" )->text()
|
2016-12-08 07:41:48 +00:00
|
|
|
) . ' ' . $this->msg( "linter-numerrors" )->numParams( $totals[$cat] )->escaped() ) . "\n";
|
2016-10-13 08:14:18 +00:00
|
|
|
}
|
|
|
|
$html .= Html::closeElement( 'ul' );
|
2016-12-15 01:07:40 +00:00
|
|
|
|
|
|
|
return $html;
|
2016-10-13 08:14:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getGroupName() {
|
|
|
|
return 'maintenance';
|
|
|
|
}
|
|
|
|
|
2016-11-22 09:16:28 +00:00
|
|
|
protected function getSubpagesForPrefixSearch() {
|
|
|
|
return ( new CategoryManager() )->getVisibleCategories();
|
|
|
|
}
|
|
|
|
|
2016-10-13 08:14:18 +00:00
|
|
|
}
|