2011-03-31 08:27:06 +02:00
|
|
|
<?php
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class DiffusionLastModifiedController extends DiffusionController {
|
2011-03-31 08:27:06 +02:00
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
|
|
|
$request = $this->getRequest();
|
|
|
|
|
|
|
|
$modified_query = DiffusionLastModifiedQuery::newFromDiffusionRequest(
|
|
|
|
$drequest);
|
|
|
|
list($commit, $commit_data) = $modified_query->loadLastModification();
|
|
|
|
|
2011-04-03 01:39:23 +02:00
|
|
|
$phids = array();
|
2012-05-23 17:34:36 +02:00
|
|
|
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;
|
|
|
|
}
|
2011-04-03 01:39:23 +02:00
|
|
|
}
|
|
|
|
|
2012-05-23 17:34:36 +02:00
|
|
|
$phids = array_keys($phids);
|
2012-09-05 04:02:56 +02:00
|
|
|
$handles = $this->loadViewerHandles($phids);
|
2011-04-03 01:39:23 +02:00
|
|
|
|
2011-03-31 08:27:06 +02:00
|
|
|
$output = DiffusionBrowseTableView::renderLastModifiedColumns(
|
2012-11-08 03:11:52 +01:00
|
|
|
$drequest,
|
2011-04-03 01:39:23 +02:00
|
|
|
$handles,
|
2011-03-31 08:27:06 +02:00
|
|
|
$commit,
|
|
|
|
$commit_data);
|
|
|
|
|
|
|
|
return id(new AphrontAjaxResponse())
|
|
|
|
->setContent($output);
|
|
|
|
}
|
|
|
|
}
|