1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-09 00:12:40 +01:00
phorge-arcanist/src/workflow/ArcanistListWorkflow.php

110 lines
2.7 KiB
PHP
Raw Permalink Normal View History

2011-01-10 00:22:25 +01:00
<?php
/**
* Lists open revisions in Differential.
*/
final class ArcanistListWorkflow extends ArcanistWorkflow {
2011-01-10 00:22:25 +01:00
public function getWorkflowName() {
return 'list';
}
public function getCommandSynopses() {
2011-01-10 00:22:25 +01:00
return phutil_console_format(<<<EOTEXT
**list**
EOTEXT
);
}
public function getCommandHelp() {
return phutil_console_format(<<<EOTEXT
Supports: git, svn, hg
2011-01-10 00:22:25 +01:00
List your open Differential revisions.
EOTEXT
);
}
public function requiresConduit() {
return true;
}
public function requiresRepositoryAPI() {
return true;
}
public function requiresAuthentication() {
return true;
}
public function run() {
static $color_map = array(
'Closed' => 'cyan',
'Needs Review' => 'magenta',
'Needs Revision' => 'red',
'Changes Planned' => 'red',
'Accepted' => 'green',
'No Revision' => 'blue',
'Abandoned' => 'default',
);
$revisions = $this->getConduit()->callMethodSynchronous(
'differential.query',
2011-01-10 00:22:25 +01:00
array(
'authors' => array($this->getUserPHID()),
'status' => 'status-open',
2011-01-10 00:22:25 +01:00
));
if (!$revisions) {
echo pht('You have no open Differential revisions.')."\n";
2011-01-10 00:22:25 +01:00
return 0;
}
$repository_api = $this->getRepositoryAPI();
$info = array();
foreach ($revisions as $key => $revision) {
$revision_path = Filesystem::resolvePath($revision['sourcePath']);
2011-01-10 00:22:25 +01:00
$current_path = Filesystem::resolvePath($repository_api->getPath());
if ($revision_path == $current_path) {
$info[$key]['exists'] = 1;
} else {
$info[$key]['exists'] = 0;
}
$info[$key]['sort'] = sprintf(
'%d%04d%08d',
$info[$key]['exists'],
$revision['status'],
$revision['id']);
$info[$key]['statusName'] = $revision['statusName'];
$info[$key]['color'] = idx(
$color_map, $revision['statusName'], 'default');
}
2011-01-10 00:22:25 +01:00
$table = id(new PhutilConsoleTable())
->setShowHeader(false)
->addColumn('exists', array('title' => ''))
->addColumn('status', array('title' => pht('Status')))
->addColumn('title', array('title' => pht('Title')));
$info = isort($info, 'sort');
foreach ($info as $key => $spec) {
$revision = $revisions[$key];
$table->addRow(array(
'exists' => $spec['exists'] ? tsprintf('**%s**', '*') : '',
'status' => tsprintf(
"<fg:{$spec['color']}>%s</fg>",
$spec['statusName']),
'title' => tsprintf(
'**D%d:** %s',
$revision['id'],
$revision['title']),
));
2011-01-10 00:22:25 +01:00
}
$table->draw();
2011-01-10 00:22:25 +01:00
return 0;
}
2011-01-10 00:22:25 +01:00
}