Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15454587
D8405.id19978.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
6 KB
Referenced Files
None
Subscribers
None
D8405.id19978.diff
View Options
Index: src/applications/differential/editor/DifferentialTransactionEditor.php
===================================================================
--- src/applications/differential/editor/DifferentialTransactionEditor.php
+++ src/applications/differential/editor/DifferentialTransactionEditor.php
@@ -3,6 +3,8 @@
final class DifferentialTransactionEditor
extends PhabricatorApplicationTransactionEditor {
+ private $heraldEmailPHIDs;
+
public function getTransactionTypes() {
$types = parent::getTransactionTypes();
@@ -851,6 +853,18 @@
return $phids;
}
+ protected function getMailCC(PhabricatorLiskDAO $object) {
+ $phids = parent::getMailCC($object);
+
+ if ($this->heraldEmailPHIDs) {
+ foreach ($this->heraldEmailPHIDs as $phid) {
+ $phids[] = $phid;
+ }
+ }
+
+ return $phids;
+ }
+
protected function getMailSubjectPrefix() {
return PhabricatorEnv::getEnvConfig('metamta.differential.subject-prefix');
}
@@ -1072,5 +1086,128 @@
->executeOne();
}
+/* -( Herald Integration )------------------------------------------------- */
+
+ protected function shouldApplyHeraldRules(
+ PhabricatorLiskDAO $object,
+ array $xactions) {
+
+ if ($this->getIsNewObject()) {
+ return true;
+ }
+
+ foreach ($xactions as $xaction) {
+ switch ($xaction->getTransactionType()) {
+ case DifferentialTransaction::TYPE_UPDATE:
+ return true;
+ }
+ }
+
+ return parent::shouldApplyHeraldRules($object, $xactions);
+ }
+
+ protected function buildHeraldAdapter(
+ PhabricatorLiskDAO $object,
+ array $xactions) {
+
+ $unsubscribed_phids = PhabricatorEdgeQuery::loadDestinationPHIDs(
+ $object->getPHID(),
+ PhabricatorEdgeConfig::TYPE_OBJECT_HAS_UNSUBSCRIBER);
+
+ $subscribed_phids = PhabricatorSubscribersQuery::loadSubscribersForPHID(
+ $object->getPHID());
+
+ $revision = id(new DifferentialRevisionQuery())
+ ->setViewer($this->getActor())
+ ->withPHIDs(array($object->getPHID()))
+ ->needActiveDiffs(true)
+ ->needReviewerStatus(true)
+ ->executeOne();
+ if (!$revision) {
+ throw new Exception(
+ pht(
+ 'Failed to load revision for Herald adapter construction!'));
+ }
+
+ $adapter = HeraldDifferentialRevisionAdapter::newLegacyAdapter(
+ $object,
+ $object->getActiveDiff());
+
+ $reviewers = $revision->getReviewerStatus();
+ $reviewer_phids = mpull($reviewers, 'getReviewerPHID');
+
+ $adapter->setExplicitCCs($subscribed_phids);
+ $adapter->setExplicitReviewers($reviewer_phids);
+ $adapter->setForbiddenCCs($unsubscribed_phids);
+
+ $adapter->setIsNewObject($this->getIsNewObject());
+
+ return $adapter;
+ }
+
+ protected function didApplyHeraldRules(
+ PhabricatorLiskDAO $object,
+ HeraldAdapter $adapter,
+ HeraldTranscript $transcript) {
+
+ $xactions = array();
+
+ // Build a transaction to adjust CCs.
+ $ccs = array(
+ '+' => array_keys($adapter->getCCsAddedByHerald()),
+ '-' => array_keys($adapter->getCCsRemovedByHerald()),
+ );
+ $value = array();
+ foreach ($ccs as $type => $phids) {
+ foreach ($phids as $phid) {
+ $value[$type][$phid] = $phid;
+ }
+ }
+
+ if ($value) {
+ $xactions[] = id(new DifferentialTransaction())
+ ->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS)
+ ->setNewValue($value);
+ }
+
+ // Build a transaction to adjust reviewers.
+ $reviewers = array(
+ DifferentialReviewerStatus::STATUS_ADDED =>
+ array_keys($adapter->getReviewersAddedByHerald()),
+ DifferentialReviewerStatus::STATUS_BLOCKING =>
+ array_keys($adapter->getBlockingReviewersAddedByHerald()),
+ );
+
+ $value = array();
+ foreach ($reviewers as $status => $phids) {
+ foreach ($phids as $phid) {
+ $value['+'][$phid] = array(
+ 'data' => array(
+ 'status' => $status,
+ ),
+ );
+ }
+ }
+
+ if ($value) {
+ $edge_reviewer = PhabricatorEdgeConfig::TYPE_DREV_HAS_REVIEWER;
+
+ $xactions[] = id(new DifferentialTransaction())
+ ->setTransactionType(PhabricatorTransactions::TYPE_EDGE)
+ ->setMetadataValue('edge:type', $edge_reviewer)
+ ->setNewValue($value);
+ }
+
+ // Save extra email PHIDs for later.
+ $this->heraldEmailPHIDs = $adapter->getEmailPHIDsAddedByHerald();
+
+ // Apply build plans.
+ HarbormasterBuildable::applyBuildPlans(
+ $adapter->getDiff(),
+ $adapter->getPHID(),
+ $adapter->getBuildPlans());
+
+ return $xactions;
+ }
}
Index: src/applications/herald/adapter/HeraldDifferentialRevisionAdapter.php
===================================================================
--- src/applications/herald/adapter/HeraldDifferentialRevisionAdapter.php
+++ src/applications/herald/adapter/HeraldDifferentialRevisionAdapter.php
@@ -28,6 +28,10 @@
return $this->revision;
}
+ public function getDiff() {
+ return $this->diff;
+ }
+
public function getAdapterContentType() {
return 'differential';
}
Index: src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
===================================================================
--- src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
+++ src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
@@ -1634,6 +1634,21 @@
->setIsBulk(true)
->setBody($body->render());
+ $herald_xscript = $this->getHeraldTranscript();
+ if ($herald_xscript) {
+ $herald_header = $herald_xscript->getXHeraldRulesHeader();
+ $herald_header = HeraldTranscript::saveXHeraldRulesHeader(
+ $object->getPHID(),
+ $herald_header);
+ } else {
+ $herald_header = HeraldTranscript::loadXHeraldRulesHeader(
+ $object->getPHID());
+ }
+
+ if ($herald_header) {
+ $template->addHeader('X-Herald-Rules', $herald_header);
+ }
+
if ($this->getParentMessageID()) {
$template->setParentMessageID($this->getParentMessageID());
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 7:11 PM (6 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704405
Default Alt Text
D8405.id19978.diff (6 KB)
Attached To
Mode
D8405: Support Herald rules for new Differential edits
Attached
Detach File
Event Timeline
Log In to Comment