Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15409343
D9168.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D9168.id.diff
View Options
diff --git a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
--- a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
+++ b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
@@ -780,6 +780,33 @@
switch ($this->getTransactionType()) {
case PhabricatorTransactions::TYPE_COMMENT:
return 0.5;
+ case PhabricatorTransactions::TYPE_SUBSCRIBERS:
+ $old = $this->getOldValue();
+ $new = $this->getNewValue();
+
+ $add = array_diff($old, $new);
+ $rem = array_diff($new, $old);
+
+ // If this action is the actor subscribing or unsubscribing themselves,
+ // it is less interesting. In particular, if someone makes a comment and
+ // also implicitly subscribes themselves, we should treat the
+ // transaction group as "comment", not "subscribe". In this specific
+ // case (one affected user, and that affected user it the actor),
+ // decrease the action strength.
+
+ if ((count($add) + count($rem)) != 1) {
+ // Not exactly one CC change.
+ break;
+ }
+
+ $affected_phid = head(array_merge($add, $rem));
+ if ($affected_phid != $this->getAuthorPHID()) {
+ // Affected user is someone else.
+ break;
+ }
+
+ // Make this weaker than TYPE_COMMENT.
+ return 0.25;
}
return 1.0;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 4:18 AM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7426239
Default Alt Text
D9168.id.diff (1 KB)
Attached To
Mode
D9168: Adjust action strength of self subscribe/unsubscribe
Attached
Detach File
Event Timeline
Log In to Comment