mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
846a359d9a
Test Plan: Went to https://secure.phabricator.com/diffusion/ARC/browse/. Saw number of lint messages per dir, not terribly slow. Went to https://secure.phabricator.com/diffusion/ARC/browse/master/src/difference/. Saw number of lint messages per file. Disabled lint, didn't see it. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3921
35 lines
992 B
PHP
35 lines
992 B
PHP
<?php
|
|
|
|
final class DiffusionLastModifiedController extends DiffusionController {
|
|
|
|
public function processRequest() {
|
|
$drequest = $this->getDiffusionRequest();
|
|
$request = $this->getRequest();
|
|
|
|
$modified_query = DiffusionLastModifiedQuery::newFromDiffusionRequest(
|
|
$drequest);
|
|
list($commit, $commit_data) = $modified_query->loadLastModification();
|
|
|
|
$phids = array();
|
|
if ($commit_data) {
|
|
if ($commit_data->getCommitDetail('authorPHID')) {
|
|
$phids[$commit_data->getCommitDetail('authorPHID')] = true;
|
|
}
|
|
if ($commit_data->getCommitDetail('committerPHID')) {
|
|
$phids[$commit_data->getCommitDetail('committerPHID')] = true;
|
|
}
|
|
}
|
|
|
|
$phids = array_keys($phids);
|
|
$handles = $this->loadViewerHandles($phids);
|
|
|
|
$output = DiffusionBrowseTableView::renderLastModifiedColumns(
|
|
$drequest,
|
|
$handles,
|
|
$commit,
|
|
$commit_data);
|
|
|
|
return id(new AphrontAjaxResponse())
|
|
->setContent($output);
|
|
}
|
|
}
|