2012-04-08 02:40:25 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays User Tasks
|
|
|
|
*
|
|
|
|
* @group workflow
|
|
|
|
*/
|
|
|
|
final class ArcanistTasksWorkflow extends ArcanistBaseWorkflow {
|
|
|
|
|
|
|
|
private $tasks;
|
|
|
|
|
Make Arcanist workflow names explicit
Summary:
Currently, adding a new workflow requires you to override ArcanistConfiguration, which is messy. Instead, just load everything that extends ArcanistBaseWorkflow.
Remove all the rules tying workflow names to class names through arcane incantations.
This has a very small performance cost in that we need to load every Workflow class every time now, but we don't hit __init__ and such anymore and it was pretty negligible on my machine (98ms vs 104ms or something).
Test Plan: Ran "arc help", "arc which", "arc diff", etc.
Reviewers: edward, vrana, btrahan
Reviewed By: edward
CC: aran, zeeg
Differential Revision: https://secure.phabricator.com/D3691
2012-10-17 17:35:03 +02:00
|
|
|
public function getWorkflowName() {
|
|
|
|
return 'tasks';
|
|
|
|
}
|
|
|
|
|
2012-04-08 02:40:25 +02:00
|
|
|
public function getCommandSynopses() {
|
|
|
|
return phutil_console_format(<<<EOTEXT
|
|
|
|
**tasks** [__options__]
|
|
|
|
EOTEXT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCommandHelp() {
|
|
|
|
return phutil_console_format(<<<EOTEXT
|
|
|
|
View all assigned tasks.
|
|
|
|
EOTEXT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresConduit() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresRepositoryAPI() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresAuthentication() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function getArguments() {
|
|
|
|
return array(
|
|
|
|
'status' => array(
|
|
|
|
'param' => 'task_status',
|
2012-06-25 22:46:51 +02:00
|
|
|
'help' => "Show tasks that or open or closed, default is open.",
|
2012-04-08 02:40:25 +02:00
|
|
|
),
|
|
|
|
'owner' => array(
|
|
|
|
'param' => 'username',
|
|
|
|
'paramtype' => 'username',
|
|
|
|
'help' =>
|
|
|
|
"Only show tasks assigned to the given username, ".
|
|
|
|
"also accepts @all to show all, default is you.",
|
2013-05-23 19:32:41 +02:00
|
|
|
'conflict' => array(
|
2013-06-05 00:29:39 +02:00
|
|
|
"unassigned" => "--owner suppresses unassigned",
|
2013-05-23 19:32:41 +02:00
|
|
|
),
|
2012-04-08 02:40:25 +02:00
|
|
|
),
|
|
|
|
'order' => array(
|
|
|
|
'param' => 'task_order',
|
|
|
|
'help' =>
|
|
|
|
"Arrange tasks based on priority, created, or modified, ".
|
|
|
|
"default is priority.",
|
|
|
|
),
|
|
|
|
'limit' => array(
|
|
|
|
'param' => 'n',
|
|
|
|
'paramtype' => 'int',
|
|
|
|
'help' => "Limit the amount of tasks outputted, default is all.",
|
2013-05-23 19:32:41 +02:00
|
|
|
),
|
|
|
|
'unassigned' => array(
|
|
|
|
'help' => "Only show tasks that are not assigned (upforgrabs).",
|
2012-04-08 02:40:25 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run() {
|
|
|
|
$output = array();
|
|
|
|
|
2013-05-23 19:32:41 +02:00
|
|
|
$status = $this->getArgument('status');
|
|
|
|
$owner = $this->getArgument('owner');
|
|
|
|
$order = $this->getArgument('order');
|
|
|
|
$limit = $this->getArgument('limit');
|
|
|
|
$unassigned = $this->getArgument('unassigned');
|
|
|
|
|
|
|
|
if ($owner) {
|
2013-06-05 00:29:39 +02:00
|
|
|
$owner_phid = $this->findOwnerPhid($owner);
|
2013-05-23 19:32:41 +02:00
|
|
|
} elseif ($unassigned) {
|
2013-06-05 00:29:39 +02:00
|
|
|
$owner_phid = null;
|
2013-05-23 19:32:41 +02:00
|
|
|
} else {
|
2013-06-05 00:29:39 +02:00
|
|
|
$owner_phid = $this->getUserPHID();
|
2013-05-23 19:32:41 +02:00
|
|
|
}
|
|
|
|
|
2012-04-08 02:40:25 +02:00
|
|
|
$this->tasks = $this->loadManiphestTasks(
|
2012-10-01 04:40:54 +02:00
|
|
|
($status == 'all' ? 'any' : $status),
|
2013-06-05 00:29:39 +02:00
|
|
|
$owner_phid,
|
2012-04-08 02:40:25 +02:00
|
|
|
$order,
|
2012-10-01 04:40:54 +02:00
|
|
|
$limit);
|
2012-04-08 02:40:25 +02:00
|
|
|
|
2012-10-11 21:39:35 +02:00
|
|
|
if (!$this->tasks) {
|
|
|
|
echo "No tasks found.\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-01 04:40:54 +02:00
|
|
|
$task_rows = array();
|
2012-04-08 02:40:25 +02:00
|
|
|
foreach ($this->tasks as $task) {
|
2012-10-01 04:40:54 +02:00
|
|
|
$output = array();
|
|
|
|
|
|
|
|
// Render the "T123" column.
|
|
|
|
$task_id = "T".$task['id'];
|
|
|
|
$formatted_task_id = phutil_console_format(
|
|
|
|
'**%s**',
|
|
|
|
$task_id);
|
|
|
|
$output['id'] = array(
|
|
|
|
'text' => $formatted_task_id,
|
|
|
|
'len' => phutil_utf8_console_strlen($task_id),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Render the "Title" column.
|
|
|
|
$formatted_title = rtrim($task['title']);
|
|
|
|
$output['title'] = array(
|
|
|
|
'text' => $formatted_title,
|
|
|
|
'len' => phutil_utf8_console_strlen($formatted_title),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Render the "Priority" column.
|
2012-04-08 02:40:25 +02:00
|
|
|
switch ($task['priority']) {
|
|
|
|
case 'Needs Triage':
|
|
|
|
$color = 'magenta';
|
|
|
|
break;
|
|
|
|
case 'Unbreak Now!':
|
|
|
|
$color = 'red';
|
|
|
|
break;
|
|
|
|
case 'High':
|
|
|
|
$color = 'yellow';
|
|
|
|
break;
|
|
|
|
case 'Normal':
|
|
|
|
$color = 'green';
|
|
|
|
break;
|
|
|
|
case 'Low':
|
|
|
|
$color = 'blue';
|
|
|
|
break;
|
|
|
|
case 'Wishlist':
|
|
|
|
$color = 'cyan';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$color = 'white';
|
|
|
|
break;
|
|
|
|
}
|
2012-10-01 04:40:54 +02:00
|
|
|
$formatted_priority = phutil_console_format(
|
|
|
|
"<bg:{$color}> </bg> %s",
|
|
|
|
$task['priority']);
|
|
|
|
$output['priority'] = array(
|
|
|
|
'text' => $formatted_priority,
|
|
|
|
'len' => phutil_utf8_console_strlen($task['priority']) + 2,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Render the "Status" column.
|
2014-04-09 16:48:24 +02:00
|
|
|
if (isset($task['isClosed'])) {
|
|
|
|
if ($task['isClosed']) {
|
|
|
|
$status_text = $task['statusName'];
|
|
|
|
$status_color = 'red';
|
|
|
|
} else {
|
|
|
|
$status_text = $task['statusName'];
|
|
|
|
$status_color = 'green';
|
|
|
|
}
|
|
|
|
$formatted_status = phutil_console_format(
|
|
|
|
"<bg:{$status_color}> </bg> %s",
|
|
|
|
$status_text);
|
|
|
|
$output['status'] = array(
|
|
|
|
'text' => $formatted_status,
|
|
|
|
'len' => phutil_utf8_console_strlen('status') + 2,
|
|
|
|
);
|
2012-10-01 04:40:54 +02:00
|
|
|
} else {
|
2014-04-09 16:48:24 +02:00
|
|
|
$output['status'] = array(
|
|
|
|
'text' => "",
|
|
|
|
'len' => 0,
|
|
|
|
);
|
2012-10-01 04:40:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$task_rows[] = $output;
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
|
|
|
|
2012-10-01 04:40:54 +02:00
|
|
|
// Find the longest string in each column.
|
|
|
|
$col_size = array();
|
|
|
|
foreach ($task_rows as $row) {
|
|
|
|
foreach ($row as $key => $col) {
|
|
|
|
if (empty($col_size[$key])) {
|
|
|
|
$col_size[$key] = 0;
|
|
|
|
}
|
|
|
|
$col_size[$key] = max($col_size[$key], $col['len']);
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
|
|
|
}
|
2012-10-01 04:40:54 +02:00
|
|
|
|
|
|
|
// Determine the terminal width. If we can't figure it out, assume 80.
|
|
|
|
$width = nonempty(phutil_console_get_terminal_width(), 80);
|
|
|
|
|
|
|
|
|
|
|
|
// We're going to clip the titles so they'll all fit in one line on the
|
|
|
|
// terminal. Figure out where to clip them.
|
|
|
|
$padding_between_columns = 4;
|
|
|
|
$clip_title_at = max(
|
|
|
|
// Always show at least a little bit of text even if it will make the
|
|
|
|
// UI wrap, since it's useless if we don't show anything.
|
|
|
|
16,
|
|
|
|
$width -
|
|
|
|
($col_size['id'] + $col_size['priority'] + $col_size['status'] +
|
|
|
|
($padding_between_columns * 3)));
|
|
|
|
$col_size['title'] = min($col_size['title'], $clip_title_at);
|
|
|
|
|
|
|
|
foreach ($task_rows as $key => $cols) {
|
|
|
|
$new_title = phutil_utf8_shorten($cols['title']['text'], $clip_title_at);
|
|
|
|
|
|
|
|
$task_rows[$key]['title']['len'] = phutil_utf8_console_strlen($new_title);
|
|
|
|
$task_rows[$key]['title']['text'] = $new_title;
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = array();
|
|
|
|
foreach ($task_rows as $row) {
|
|
|
|
$trow = array();
|
2012-04-08 02:40:25 +02:00
|
|
|
foreach ($row as $col => $cell) {
|
2012-10-01 04:40:54 +02:00
|
|
|
$text = $cell['text'];
|
|
|
|
$pad_len = $col_size[$col] - $cell['len'];
|
|
|
|
if ($pad_len) {
|
|
|
|
$text .= str_repeat(' ', $pad_len);
|
|
|
|
}
|
|
|
|
$trow[] = $text;
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
2012-10-01 04:40:54 +02:00
|
|
|
$table[] = implode(str_repeat(' ', $padding_between_columns), $trow);
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
2012-10-01 04:40:54 +02:00
|
|
|
$table = implode("\n", $table)."\n";
|
|
|
|
|
|
|
|
echo $table;
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
|
|
|
|
2013-06-05 00:29:39 +02:00
|
|
|
private function findOwnerPHID($owner) {
|
2012-04-08 02:40:25 +02:00
|
|
|
$conduit = $this->getConduit();
|
2013-06-05 00:29:39 +02:00
|
|
|
|
2014-01-25 23:23:23 +01:00
|
|
|
$users = $conduit->callMethodSynchronous(
|
|
|
|
'user.query',
|
2012-04-08 02:40:25 +02:00
|
|
|
array(
|
2014-01-25 23:23:23 +01:00
|
|
|
'usernames' => array($owner),
|
2012-04-08 02:40:25 +02:00
|
|
|
));
|
2013-06-05 00:29:39 +02:00
|
|
|
|
2014-01-25 23:23:23 +01:00
|
|
|
if (!$users) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = head($users);
|
|
|
|
return idx($user, 'phid');
|
2012-04-08 02:40:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function loadManiphestTasks($status, $owner_phid, $order, $limit) {
|
|
|
|
$conduit = $this->getConduit();
|
|
|
|
|
|
|
|
$find_params = array();
|
2013-06-05 00:29:39 +02:00
|
|
|
if ($owner_phid !== null) {
|
2012-04-08 02:40:25 +02:00
|
|
|
$find_params['ownerPHIDs'] = array($owner_phid);
|
|
|
|
}
|
2013-06-05 00:29:39 +02:00
|
|
|
|
2012-04-08 02:40:25 +02:00
|
|
|
if ($limit !== false) {
|
|
|
|
$find_params['limit'] = $limit;
|
|
|
|
}
|
2013-06-05 00:29:39 +02:00
|
|
|
|
|
|
|
$find_params['order'] = ($order ? "order-".$order : "order-priority");
|
|
|
|
$find_params['status'] = ($status ? "status-".$status : "status-open");
|
2012-04-08 02:40:25 +02:00
|
|
|
|
|
|
|
$tasks = $conduit->callMethodSynchronous(
|
2013-07-02 14:47:52 +02:00
|
|
|
'maniphest.query',
|
2013-02-19 23:09:20 +01:00
|
|
|
$find_params);
|
2013-06-05 00:29:39 +02:00
|
|
|
|
2012-04-08 02:40:25 +02:00
|
|
|
return $tasks;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|