category = $category; $this->categoryManager = $catManager; $this->categoryId = $catManager->getCategoryId( $this->category ); $this->linkRenderer = $linkRenderer; $this->namespace = $namespace; $this->haveParserMigrationExt = ExtensionRegistry::getInstance()->isLoaded( 'ParserMigration' ); parent::__construct( $context ); } public function getQueryInfo() { $conds = [ 'linter_cat' => $this->categoryId ]; if ( $this->namespace !== null ) { $conds['page_namespace'] = $this->namespace; } return [ 'tables' => [ 'page', 'linter' ], 'fields' => array_merge( LinkCache::getSelectFields(), [ 'page_namespace', 'page_title', 'linter_id', 'linter_params', 'linter_start', 'linter_end', ] ), 'conds' => $conds, 'join_conds' => [ 'page' => [ 'INNER JOIN', 'page_id=linter_page' ] ] ]; } protected function doBatchLookups() { $linkCache = MediaWikiServices::getInstance()->getLinkCache(); foreach ( $this->mResult as $row ) { $titleValue = new TitleValue( (int)$row->page_namespace, $row->page_title ); $linkCache->addGoodLinkObjFromRow( $titleValue, $row ); } } public function isFieldSortable( $field ) { return false; } public function formatValue( $name, $value ) { $row = $this->mCurrentRow; $row->linter_cat = $this->categoryId; $lintError = Database::makeLintError( $row ); if ( !$lintError ) { return ''; } if ( $this->haveParserMigrationExt && $this->categoryManager->needsParserMigrationEdit( $name ) ) { $editAction = 'parsermigration-edit'; } else { $editAction = 'edit'; } switch ( $name ) { case 'title': $title = Title::makeTitle( $row->page_namespace, $row->page_title ); $viewLink = $this->linkRenderer->makeLink( $title ); $editMsgKey = $title->quickUserCan( 'edit', $this->getUser() ) ? 'linter-page-edit' : 'linter-page-viewsource'; $editLink = $this->linkRenderer->makeLink( $title, $this->msg( $editMsgKey )->text(), [], [ 'action' => $editAction, 'lintid' => $lintError->lintId, ] ); $historyLink = $this->linkRenderer->makeLink( $title, $this->msg( 'linter-page-history' )->text(), [], [ 'action' => 'history' ] ); $editHistLinks = $this->getLanguage()->pipeList( [ $editLink, $historyLink ] ); return $this->msg( 'linter-page-title-edit' ) ->rawParams( $viewLink, $editHistLinks ) ->escaped(); case 'details': if ( $this->categoryManager->hasNameParam( $this->category ) && isset( $lintError->params['name'] ) ) { return Html::element( 'code', [], $lintError->params['name'] ); } elseif ( $this->category === 'bogus-image-options' && isset( $lintError->params['items'] ) ) { $list = array_map( function ( $in ) { return Html::element( 'code', [], $in ); }, $lintError->params['items'] ); return $this->getLanguage()->commaList( $list ); } elseif ( $this->category === 'pwrap-bug-workaround' && isset( $lintError->params['root'] ) && isset( $lintError->params['child'] ) ) { return Html::element( 'code', [], $lintError->params['root'] . " > " . $lintError->params['child'] ); } elseif ( $this->category === 'tidy-whitespace-bug' && isset( $lintError->params['node'] ) && isset( $lintError->params['sibling'] ) ) { return Html::element( 'code', [], $lintError->params['node'] . " + " . $lintError->params['sibling'] ); } elseif ( $this->category === 'multi-colon-escape' && isset( $lintError->params['href'] ) ) { return Html::element( 'code', [], $lintError->params['href'] ); } elseif ( $this->category === 'multiline-html-table-in-list' ) { /* ancestor and name will be set */ return Html::element( 'code', [], $lintError->params['ancestorName'] . " > " . $lintError->params['name'] ); } elseif ( $this->category === 'misc-tidy-replacement-issues' ) { /* There will be a 'subtype' param to disambiguate */ return Html::element( 'code', [], $lintError->params['subtype'] ); } return ''; case 'template': if ( !$lintError->templateInfo ) { return '—'; } if ( isset( $lintError->templateInfo['multiPartTemplateBlock'] ) ) { return $this->msg( 'multi-part-template-block' )->escaped(); } else { $templateName = $lintError->templateInfo['name']; // Parsoid provides us with fully qualified template title // So, fallback to the default main namespace $templateTitle = Title::newFromText( $templateName ); if ( !$templateTitle ) { // Shouldn't be possible...??? return '—'; } } return $this->linkRenderer->makeLink( $templateTitle ); default: throw new InvalidArgumentException( "Unexpected name: $name" ); } } public function getDefaultSort() { return 'linter_id'; } public function getFieldNames() { $names = [ 'title' => $this->msg( 'linter-pager-title' )->text(), ]; if ( $this->category !== 'fostered' ) { // TODO: don't hardcode list of stuff with no parameters...? $names['details'] = $this->msg( "linter-pager-{$this->category}-details" )->text(); } $names['template'] = $this->msg( "linter-pager-template" )->text(); return $names; } }