getDiffusionRequest(); if ($this->getRequest()->getStr('lint') !== null) { $controller = new DiffusionLintDetailsController($this->getRequest()); $controller->setDiffusionRequest($drequest); return $this->delegateToController($controller); } $codes = $this->loadLintCodes(); $codes = array_reverse(isort($codes, 'n')); $rows = array(); foreach ($codes as $code) { $rows[] = array( hsprintf( '%s', $drequest->generateURI(array( 'action' => 'lint', 'lint' => $code['code'], )), $code['n']), hsprintf( '%s', $drequest->generateURI(array( 'action' => 'browse', 'lint' => $code['code'], )), $code['files']), phutil_escape_html(ArcanistLintSeverity::getStringForSeverity( $code['maxSeverity'])), phutil_escape_html($code['code']), phutil_escape_html($code['maxName']), phutil_escape_html($code['maxDescription']), ); } $table = id(new AphrontTableView($rows)) ->setHeaders(array( 'Problems', 'Files', 'Severity', 'Code', 'Name', 'Example', )) ->setColumnClasses(array('n', 'n', '', 'pri', '', '')); $content = array(); $content[] = $this->buildCrumbs( array( 'branch' => true, 'path' => true, 'view' => 'lint', )); $link = hsprintf( '%s', $drequest->generateURI(array( 'action' => 'lint', 'lint' => '', )), pht('Switch to List View')); $content[] = id(new AphrontPanelView()) ->setHeader(pht('%d Lint Message(s)', array_sum(ipull($codes, 'n')))) ->setCaption($link) ->appendChild($table); $nav = $this->buildSideNav('lint', false); $nav->appendChild($content); return $this->buildStandardPageResponse( $nav, array('title' => array( 'Lint', $drequest->getRepository()->getCallsign(), ))); } private function loadLintCodes() { $drequest = $this->getDiffusionRequest(); $branch = $drequest->loadBranch(); if (!$branch) { return array(); } $conn = $branch->establishConnection('r'); $where = ''; if ($drequest->getPath() != '') { $is_dir = (substr($drequest->getPath(), -1) == '/'); $where = qsprintf( $conn, 'AND path '.($is_dir ? 'LIKE %>' : '= %s'), '/'.$drequest->getPath()); } return queryfx_all( $conn, 'SELECT code, MAX(severity) AS maxSeverity, MAX(name) AS maxName, MAX(description) AS maxDescription, COUNT(DISTINCT path) AS files, COUNT(*) AS n FROM %T WHERE branchID = %d %Q GROUP BY code', PhabricatorRepository::TABLE_LINTMESSAGE, $branch->getID(), $where); } }