2011-03-31 08:27:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-03-10 00:46:25 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-03-31 08:27:06 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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);
|
2011-04-03 01:39:23 +02:00
|
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
|
|
|
2011-03-31 08:27:06 +02:00
|
|
|
$output = DiffusionBrowseTableView::renderLastModifiedColumns(
|
|
|
|
$drequest->getRepository(),
|
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);
|
|
|
|
}
|
|
|
|
}
|