Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15388009
D19019.id45615.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D19019.id45615.diff
View Options
diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
--- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
+++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
@@ -74,6 +74,9 @@
private $mustEncrypt;
private $stampTemplates = array();
private $mailStamps = array();
+ private $oldTo = array();
+ private $oldCC = array();
+ private $mailRemovedPHIDs = array();
private $transactionQueue = array();
@@ -916,6 +919,8 @@
$this->willApplyTransactions($object, $xactions);
if ($object->getID()) {
+ $this->buildOldRecipientLists($object, $xactions);
+
foreach ($xactions as $xaction) {
// If any of the transactions require a read lock, hold one and
@@ -1200,6 +1205,10 @@
$this->mailToPHIDs = $this->getMailTo($object);
$this->mailCCPHIDs = $this->getMailCC($object);
+ // Add any recipients who were previously on the notification list
+ // but were removed by this change.
+ $this->applyOldRecipientLists();
+
$mail_xactions = $this->getTransactionsForMail($object, $xactions);
$stamps = $this->newMailStamps($object, $xactions);
foreach ($stamps as $stamp) {
@@ -4127,4 +4136,65 @@
return $results;
}
+ public function getRemovedRecipientPHIDs() {
+ return $this->mailRemovedPHIDs;
+ }
+
+ private function buildOldRecipientLists($object, $xactions) {
+ // See T4776. Before we start making any changes, build a list of the old
+ // recipients. If a change removes a user from the recipient list for an
+ // object we still want to notify the user about that change. This allows
+ // them to respond if they didn't want to be removed.
+
+ if (!$this->shouldSendMail($object, $xactions)) {
+ return;
+ }
+
+ $this->oldTo = $this->getMailTo($object);
+ $this->oldCC = $this->getMailCC($object);
+
+ return $this;
+ }
+
+ private function applyOldRecipientLists() {
+ $actor_phid = $this->getActingAsPHID();
+
+ // If you took yourself off the recipient list (for example, by
+ // unsubscribing or resigning) assume that you know what you did and
+ // don't need to be notified.
+
+ // If you just moved from "To" to "Cc" (or vice versa), you're still a
+ // recipient so we don't need to add you back in.
+
+ $map = array_fuse($this->mailToPHIDs) + array_fuse($this->mailCCPHIDs);
+
+ foreach ($this->oldTo as $phid) {
+ if ($phid === $actor_phid) {
+ continue;
+ }
+
+ if (isset($map[$phid])) {
+ continue;
+ }
+
+ $this->mailToPHIDs[] = $phid;
+ $this->mailRemovedPHIDs[] = $phid;
+ }
+
+ foreach ($this->oldCC as $phid) {
+ if ($phid === $actor_phid) {
+ continue;
+ }
+
+ if (isset($map[$phid])) {
+ continue;
+ }
+
+ $this->mailCCPHIDs[] = $phid;
+ $this->mailRemovedPHIDs[] = $phid;
+ }
+
+ return $this;
+ }
+
}
diff --git a/src/applications/transactions/engineextension/PhabricatorEditorMailEngineExtension.php b/src/applications/transactions/engineextension/PhabricatorEditorMailEngineExtension.php
--- a/src/applications/transactions/engineextension/PhabricatorEditorMailEngineExtension.php
+++ b/src/applications/transactions/engineextension/PhabricatorEditorMailEngineExtension.php
@@ -40,6 +40,10 @@
->setKey('herald')
->setLabel(pht('Herald Rule'));
+ $templates[] = id(new PhabricatorPHIDMailStamp())
+ ->setKey('removed')
+ ->setLabel(pht('Recipient Removed'));
+
return $templates;
}
@@ -69,6 +73,9 @@
$this->getMailStamp('herald')
->setValue($editor->getHeraldRuleMonograms());
+
+ $this->getMailStamp('removed')
+ ->setValue($editor->getRemovedRecipientPHIDs());
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 16, 3:11 AM (6 d, 10 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704163
Default Alt Text
D19019.id45615.diff (3 KB)
Attached To
Mode
D19019: When a change removes recipients from an object, send them one last email
Attached
Detach File
Event Timeline
Log In to Comment