2011-12-17 22:27:11 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group maniphest
|
|
|
|
*/
|
2012-06-13 23:41:43 +02:00
|
|
|
final class ManiphestAction extends ManiphestConstants {
|
2012-06-08 20:28:15 +02:00
|
|
|
/* These actions must be determined when the story
|
|
|
|
is generated and thus are new */
|
|
|
|
const ACTION_CREATE = 'create';
|
|
|
|
const ACTION_REOPEN = 'reopen';
|
|
|
|
const ACTION_CLOSE = 'close';
|
|
|
|
const ACTION_UPDATE = 'update';
|
|
|
|
const ACTION_ASSIGN = 'assign';
|
2011-12-17 22:27:11 +01:00
|
|
|
|
2012-06-08 20:28:15 +02:00
|
|
|
/* these actions are determined sufficiently by the transaction
|
|
|
|
type and thus we use them here*/
|
|
|
|
const ACTION_COMMENT = ManiphestTransactionType::TYPE_NONE;
|
|
|
|
const ACTION_CC = ManiphestTransactionType::TYPE_CCS;
|
|
|
|
const ACTION_PRIORITY = ManiphestTransactionType::TYPE_PRIORITY;
|
|
|
|
const ACTION_PROJECT = ManiphestTransactionType::TYPE_PROJECTS;
|
|
|
|
const ACTION_TITLE = ManiphestTransactionType::TYPE_TITLE;
|
|
|
|
const ACTION_DESCRIPTION = ManiphestTransactionType::TYPE_DESCRIPTION;
|
|
|
|
const ACTION_REASSIGN = ManiphestTransactionType::TYPE_OWNER;
|
|
|
|
const ACTION_ATTACH = ManiphestTransactionType::TYPE_ATTACH;
|
2012-07-20 17:59:39 +02:00
|
|
|
const ACTION_EDGE = ManiphestTransactionType::TYPE_EDGE;
|
|
|
|
const ACTION_AUXILIARY = ManiphestTransactionType::TYPE_AUXILIARY;
|
2011-12-17 22:27:11 +01:00
|
|
|
|
|
|
|
public static function getActionPastTenseVerb($action) {
|
|
|
|
static $map = array(
|
2012-06-08 20:28:15 +02:00
|
|
|
self::ACTION_CREATE => 'created',
|
|
|
|
self::ACTION_CLOSE => 'closed',
|
|
|
|
self::ACTION_UPDATE => 'updated',
|
|
|
|
self::ACTION_ASSIGN => 'assigned',
|
2012-07-20 17:59:39 +02:00
|
|
|
self::ACTION_REASSIGN => 'reassigned',
|
2012-06-08 20:28:15 +02:00
|
|
|
self::ACTION_COMMENT => 'commented on',
|
|
|
|
self::ACTION_CC => 'updated cc\'s of',
|
|
|
|
self::ACTION_PRIORITY => 'changed the priority of',
|
|
|
|
self::ACTION_PROJECT => 'modified projects of',
|
|
|
|
self::ACTION_TITLE => 'updated title of',
|
|
|
|
self::ACTION_DESCRIPTION => 'updated description of',
|
|
|
|
self::ACTION_ATTACH => 'attached something to',
|
2012-07-20 17:59:39 +02:00
|
|
|
self::ACTION_EDGE => 'changed related objects of',
|
2012-06-08 20:28:15 +02:00
|
|
|
self::ACTION_REOPEN => 'reopened',
|
2012-07-20 17:59:39 +02:00
|
|
|
self::ACTION_AUXILIARY => 'updated an auxiliary field of',
|
2011-12-17 22:27:11 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return idx($map, $action, "brazenly {$action}'d");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If a group of transactions contain several actions, select the "strongest"
|
|
|
|
* action. For instance, a close is stronger than an update, because we want
|
|
|
|
* to render "User U closed task T" instead of "User U updated task T" when
|
|
|
|
* a user closes a task.
|
|
|
|
*/
|
|
|
|
public static function selectStrongestAction(array $actions) {
|
|
|
|
static $strengths = array(
|
2012-07-20 17:59:39 +02:00
|
|
|
self::ACTION_AUXILIARY => -1,
|
2012-06-08 20:28:15 +02:00
|
|
|
self::ACTION_UPDATE => 0,
|
|
|
|
self::ACTION_CC => 1,
|
|
|
|
self::ACTION_PROJECT => 2,
|
|
|
|
self::ACTION_DESCRIPTION => 3,
|
|
|
|
self::ACTION_TITLE => 4,
|
|
|
|
self::ACTION_ATTACH => 5,
|
2012-07-20 17:59:39 +02:00
|
|
|
self::ACTION_EDGE => 5,
|
2012-06-08 20:28:15 +02:00
|
|
|
self::ACTION_COMMENT => 6,
|
|
|
|
self::ACTION_PRIORITY => 7,
|
|
|
|
self::ACTION_REASSIGN => 8,
|
|
|
|
self::ACTION_ASSIGN => 9,
|
|
|
|
self::ACTION_REOPEN => 10,
|
|
|
|
self::ACTION_CREATE => 11,
|
|
|
|
self::ACTION_CLOSE => 12,
|
2011-12-17 22:27:11 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$strongest = null;
|
|
|
|
$strength = -1;
|
|
|
|
foreach ($actions as $action) {
|
|
|
|
if ($strengths[$action] > $strength) {
|
|
|
|
$strength = $strengths[$action];
|
|
|
|
$strongest = $action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $strongest;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|