Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13999600
D8506.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D8506.diff
View Options
diff --git a/src/applications/differential/editor/DifferentialTransactionEditor.php b/src/applications/differential/editor/DifferentialTransactionEditor.php
--- a/src/applications/differential/editor/DifferentialTransactionEditor.php
+++ b/src/applications/differential/editor/DifferentialTransactionEditor.php
@@ -178,7 +178,9 @@
case PhabricatorTransactions::TYPE_EDGE:
return;
case DifferentialTransaction::TYPE_UPDATE:
- if (!$this->getIsCloseByCommit()) {
+ if (!$this->getIsCloseByCommit() &&
+ (($object->getStatus() == $status_revision) ||
+ ($object->getStatus() == $status_plan))) {
$object->setStatus($status_review);
}
// TODO: Update the `diffPHID` once we add that.
@@ -600,7 +602,7 @@
$new_status = $status_review;
}
- if ($new_status !== null && $new_status != $old_status) {
+ if ($new_status !== null && ($new_status != $old_status)) {
$xaction = id(new DifferentialTransaction())
->setTransactionType(DifferentialTransaction::TYPE_STATUS)
->setOldValue($old_status)
@@ -1379,6 +1381,9 @@
array_keys($adapter->getBlockingReviewersAddedByHerald()),
);
+ $old_reviewers = $object->getReviewerStatus();
+ $old_reviewers = mpull($old_reviewers, null, 'getReviewerPHID');
+
$value = array();
foreach ($reviewers as $status => $phids) {
foreach ($phids as $phid) {
@@ -1388,6 +1393,23 @@
continue;
}
+ // If the target is already a reviewer, don't try to change anything
+ // if their current status is at least as strong as the new status.
+ // For example, don't downgrade an "Accepted" to a "Blocking Reviewer".
+ $old_reviewer = idx($old_reviewers, $phid);
+ if ($old_reviewer) {
+ $old_status = $old_reviewer->getStatus();
+
+ $old_strength = DifferentialReviewerStatus::getStatusStrength(
+ $old_status);
+ $new_strength = DifferentialReviewerStatus::getStatusStrength(
+ $status);
+
+ if ($new_strength <= $old_strength) {
+ continue;
+ }
+ }
+
$value['+'][$phid] = array(
'data' => array(
'status' => $status,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Oct 25, 3:52 PM (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6748884
Default Alt Text
D8506.diff (2 KB)
Attached To
Mode
D8506: Fix two transactional issues around revision status
Attached
Detach File
Event Timeline
Log In to Comment