2015-04-01 19:09:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class ManiphestPriorityEmailCommand
|
|
|
|
extends ManiphestEmailCommand {
|
|
|
|
|
|
|
|
public function getCommand() {
|
|
|
|
return 'priority';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCommandSyntax() {
|
|
|
|
return '**!priority** //priority//';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCommandSummary() {
|
|
|
|
return pht('Change the priority of a task.');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCommandDescription() {
|
|
|
|
$names = ManiphestTaskPriority::getTaskPriorityMap();
|
|
|
|
$keywords = ManiphestTaskPriority::getTaskPriorityKeywordsMap();
|
|
|
|
|
|
|
|
$table = array();
|
|
|
|
$table[] = '| '.pht('Priority').' | '.pht('Keywords');
|
|
|
|
$table[] = '|---|---|';
|
|
|
|
foreach ($keywords as $priority => $words) {
|
2015-12-05 19:40:56 +01:00
|
|
|
if (ManiphestTaskPriority::isDisabledPriority($priority)) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-04-01 19:09:47 +02:00
|
|
|
$words = implode(', ', $words);
|
|
|
|
$table[] = '| '.$names[$priority].' | '.$words;
|
|
|
|
}
|
|
|
|
$table = implode("\n", $table);
|
|
|
|
|
|
|
|
return pht(
|
2015-05-22 09:27:56 +02:00
|
|
|
"To change the priority of a task, specify the desired priority, like ".
|
|
|
|
"`%s`. This table shows the configured names for priority levels.".
|
2015-04-01 19:09:47 +02:00
|
|
|
"\n\n%s\n\n".
|
2015-05-22 09:27:56 +02:00
|
|
|
"If you specify an invalid priority, the command is ignored. This ".
|
|
|
|
"command has no effect if you do not specify a priority.",
|
|
|
|
'!priority high',
|
2015-04-01 19:09:47 +02:00
|
|
|
$table);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildTransactions(
|
|
|
|
PhabricatorUser $viewer,
|
|
|
|
PhabricatorApplicationTransactionInterface $object,
|
|
|
|
PhabricatorMetaMTAReceivedMail $mail,
|
|
|
|
$command,
|
|
|
|
array $argv) {
|
|
|
|
$xactions = array();
|
|
|
|
|
|
|
|
$target = phutil_utf8_strtolower(head($argv));
|
|
|
|
$priority = null;
|
|
|
|
|
|
|
|
$keywords = ManiphestTaskPriority::getTaskPriorityKeywordsMap();
|
|
|
|
foreach ($keywords as $key => $words) {
|
|
|
|
foreach ($words as $word) {
|
|
|
|
if ($word == $target) {
|
|
|
|
$priority = $key;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($priority === null) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2015-12-05 19:40:56 +01:00
|
|
|
if (ManiphestTaskPriority::isDisabledPriority($priority)) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2015-04-01 19:09:47 +02:00
|
|
|
$xactions[] = $object->getApplicationTransactionTemplate()
|
|
|
|
->setTransactionType(ManiphestTransaction::TYPE_PRIORITY)
|
|
|
|
->setNewValue($priority);
|
|
|
|
|
|
|
|
return $xactions;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|