2011-03-08 02:25:47 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-03-13 01:17:34 +01:00
|
|
|
final class DiffusionBrowseTableView extends DiffusionView {
|
2011-03-08 02:25:47 +01:00
|
|
|
|
2011-03-09 02:31:44 +01:00
|
|
|
private $paths;
|
2011-03-08 02:25:47 +01:00
|
|
|
|
|
|
|
public function setPaths(array $paths) {
|
|
|
|
$this->paths = $paths;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:27:06 +02:00
|
|
|
public static function renderLastModifiedColumns(
|
|
|
|
PhabricatorRepository $repository,
|
|
|
|
PhabricatorRepositoryCommit $commit = null,
|
|
|
|
PhabricatorRepositoryCommitData $data = null) {
|
|
|
|
|
|
|
|
if ($commit) {
|
|
|
|
$epoch = $commit->getEpoch();
|
|
|
|
$modified = DiffusionView::linkCommit(
|
|
|
|
$repository,
|
|
|
|
$commit->getCommitIdentifier());
|
|
|
|
$date = date('M j, Y', $epoch);
|
|
|
|
$time = date('g:i A', $epoch);
|
|
|
|
} else {
|
|
|
|
$modified = '';
|
|
|
|
$date = '';
|
|
|
|
$time = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($data) {
|
|
|
|
$author = phutil_escape_html($data->getAuthorName());
|
|
|
|
$details = phutil_escape_html($data->getSummary());
|
|
|
|
} else {
|
|
|
|
$author = '';
|
|
|
|
$details = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'commit' => $modified,
|
|
|
|
'date' => $date,
|
|
|
|
'time' => $time,
|
|
|
|
'author' => $author,
|
|
|
|
'details' => $details,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
public function render() {
|
2011-03-13 01:17:34 +01:00
|
|
|
$request = $this->getDiffusionRequest();
|
2011-03-31 07:41:31 +02:00
|
|
|
$repository = $request->getRepository();
|
2011-03-13 01:17:34 +01:00
|
|
|
|
|
|
|
$base_path = trim($request->getPath(), '/');
|
|
|
|
if ($base_path) {
|
|
|
|
$base_path = $base_path.'/';
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:27:06 +02:00
|
|
|
$need_pull = array();
|
2011-03-08 02:25:47 +01:00
|
|
|
$rows = array();
|
|
|
|
foreach ($this->paths as $path) {
|
2011-03-13 01:17:34 +01:00
|
|
|
|
|
|
|
if ($path->getFileType() == DifferentialChangeType::FILE_DIRECTORY) {
|
|
|
|
$browse_text = $path->getPath().'/';
|
|
|
|
$dir_slash = '/';
|
2011-03-31 07:41:31 +02:00
|
|
|
|
|
|
|
$browse_link = '<strong>'.$this->linkBrowse(
|
|
|
|
$base_path.$path->getPath().$dir_slash,
|
|
|
|
array(
|
|
|
|
'text' => $browse_text,
|
|
|
|
)).'</strong>';
|
2011-03-13 01:17:34 +01:00
|
|
|
} else {
|
|
|
|
$browse_text = $path->getPath();
|
|
|
|
$dir_slash = null;
|
2011-03-31 07:41:31 +02:00
|
|
|
$browse_link = $this->linkBrowse(
|
|
|
|
$base_path.$path->getPath().$dir_slash,
|
|
|
|
array(
|
|
|
|
'text' => $browse_text,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
$commit = $path->getLastModifiedCommit();
|
|
|
|
if ($commit) {
|
2011-03-31 08:27:06 +02:00
|
|
|
$dict = self::renderLastModifiedColumns(
|
2011-03-31 07:41:31 +02:00
|
|
|
$repository,
|
2011-03-31 08:27:06 +02:00
|
|
|
$commit,
|
|
|
|
$path->getLastCommitData());
|
2011-03-31 07:41:31 +02:00
|
|
|
} else {
|
2011-03-31 08:27:06 +02:00
|
|
|
$dict = array(
|
|
|
|
'commit' => celerity_generate_unique_node_id(),
|
|
|
|
'date' => celerity_generate_unique_node_id(),
|
|
|
|
'time' => celerity_generate_unique_node_id(),
|
|
|
|
'author' => celerity_generate_unique_node_id(),
|
|
|
|
'details' => celerity_generate_unique_node_id(),
|
|
|
|
);
|
|
|
|
$uri =
|
|
|
|
'/diffusion/'.$repository->getCallsign().'/lastmodified/'.
|
|
|
|
$request->getBranchURIComponent($request->getBranch()).
|
|
|
|
$base_path.$path->getPath();
|
|
|
|
if ($request->getRawCommit()) {
|
|
|
|
$uri .= ';'.$request->getRawCommit();
|
|
|
|
}
|
|
|
|
$need_pull[$uri] = $dict;
|
|
|
|
foreach ($dict as $k => $uniq) {
|
|
|
|
$dict[$k] = '<span id="'.$uniq.'"></span>';
|
|
|
|
}
|
2011-03-13 01:17:34 +01:00
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
$rows[] = array(
|
2011-03-13 01:17:34 +01:00
|
|
|
$this->linkHistory($base_path.$path->getPath().$dir_slash),
|
2011-03-31 07:41:31 +02:00
|
|
|
$browse_link,
|
2011-03-31 08:27:06 +02:00
|
|
|
$dict['commit'],
|
|
|
|
$dict['date'],
|
|
|
|
$dict['time'],
|
|
|
|
$dict['author'],
|
|
|
|
$dict['details'],
|
2011-03-08 02:25:47 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:27:06 +02:00
|
|
|
if ($need_pull) {
|
|
|
|
Javelin::initBehavior('diffusion-pull-lastmodified', $need_pull);
|
|
|
|
}
|
|
|
|
|
2011-03-08 02:25:47 +01:00
|
|
|
$view = new AphrontTableView($rows);
|
|
|
|
$view->setHeaders(
|
|
|
|
array(
|
2011-03-13 01:17:34 +01:00
|
|
|
'History',
|
2011-03-08 02:25:47 +01:00
|
|
|
'Path',
|
2011-03-31 07:41:31 +02:00
|
|
|
'Modified',
|
|
|
|
'Date',
|
|
|
|
'Time',
|
|
|
|
'Author',
|
|
|
|
'Details',
|
2011-03-08 02:25:47 +01:00
|
|
|
));
|
2011-03-13 01:17:34 +01:00
|
|
|
$view->setColumnClasses(
|
|
|
|
array(
|
|
|
|
'',
|
2011-03-31 07:41:31 +02:00
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'right',
|
|
|
|
'',
|
|
|
|
'wide',
|
2011-03-13 01:17:34 +01:00
|
|
|
));
|
2011-03-08 02:25:47 +01:00
|
|
|
return $view->render();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|