public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $type = $this->getTransactionType();
     switch ($type) {
         case self::TYPE_COMMIT:
             $phids[] = $this->getObjectPHID();
             $data = $this->getNewValue();
             if ($data['authorPHID']) {
                 $phids[] = $data['authorPHID'];
             }
             if ($data['committerPHID']) {
                 $phids[] = $data['committerPHID'];
             }
             break;
         case PhabricatorAuditActionConstants::ADD_CCS:
         case PhabricatorAuditActionConstants::ADD_AUDITORS:
             $old = $this->getOldValue();
             $new = $this->getNewValue();
             if (!is_array($old)) {
                 $old = array();
             }
             if (!is_array($new)) {
                 $new = array();
             }
             foreach (array_keys($old + $new) as $phid) {
                 $phids[] = $phid;
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_PUSH_POLICY:
         case self::TYPE_SERVICE:
             if ($old) {
                 $phids[] = $old;
             }
             if ($new) {
                 $phids[] = $new;
             }
             break;
         case self::TYPE_SYMBOLS_SOURCES:
         case self::TYPE_AUTOMATION_BLUEPRINTS:
             if ($old) {
                 $phids = array_merge($phids, $old);
             }
             if ($new) {
                 $phids = array_merge($phids, $new);
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     switch ($this->getTransactionType()) {
         case self::TYPE_NAME:
         case self::TYPE_START_DATE:
         case self::TYPE_END_DATE:
         case self::TYPE_DESCRIPTION:
         case self::TYPE_CANCEL:
         case self::TYPE_ALL_DAY:
         case self::TYPE_RECURRING:
         case self::TYPE_FREQUENCY:
         case self::TYPE_RECURRENCE_END_DATE:
         case self::TYPE_INSTANCE_OF_EVENT:
         case self::TYPE_SEQUENCE_INDEX:
             $phids[] = $this->getObjectPHID();
             break;
         case self::TYPE_INVITE:
             $new = $this->getNewValue();
             foreach ($new as $phid => $status) {
                 $phids[] = $phid;
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_PRIMARY:
             if ($old) {
                 $phids[] = $old;
             }
             if ($new) {
                 $phids[] = $new;
             }
             break;
         case self::TYPE_OWNERS:
             $add = array_diff($new, $old);
             foreach ($add as $phid) {
                 $phids[] = $phid;
             }
             $rem = array_diff($old, $new);
             foreach ($rem as $phid) {
                 $phids[] = $phid;
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_ACTION:
             if ($new == DifferentialAction::ACTION_CLOSE && $this->getMetadataValue('isCommitClose')) {
                 $phids[] = $this->getMetadataValue('commitPHID');
                 if ($this->getMetadataValue('committerPHID')) {
                     $phids[] = $this->getMetadataValue('committerPHID');
                 }
                 if ($this->getMetadataValue('authorPHID')) {
                     $phids[] = $this->getMetadataValue('authorPHID');
                 }
             }
             break;
         case self::TYPE_UPDATE:
             if ($new) {
                 $phids[] = $new;
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     switch ($this->getTransactionType()) {
         case self::TYPE_CONTENT:
             $phids[] = $this->getObjectPHID();
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     switch ($this->getTransactionType()) {
         case self::TYPE_NAME:
         case self::TYPE_URL:
         case self::TYPE_DESCRIPTION:
             $phids[] = $this->getObjectPHID();
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_PUSH_POLICY:
             $phids[] = $old;
             $phids[] = $new;
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     $req_phids = array();
     switch ($this->getTransactionType()) {
         case self::TYPE_PROFILEIMAGE:
         case self::TYPE_HEADERIMAGE:
             $req_phids[] = $old;
             $req_phids[] = $new;
             break;
     }
     return array_merge($req_phids, parent::getRequiredHandlePHIDs());
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case PhabricatorMacroTransactionType::TYPE_FILE:
         case PhabricatorMacroTransactionType::TYPE_AUDIO:
             if ($old !== null) {
                 $phids[] = $old;
             }
             $phids[] = $new;
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $phids[] = $this->getObjectPHID();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_REQUEST:
         case self::TYPE_DISCOVERY:
             $phids[] = $new;
             break;
         case self::TYPE_EDIT_FIELD:
             self::searchForPHIDs($this->getOldValue(), $phids);
             self::searchForPHIDs($this->getNewValue(), $phids);
             break;
     }
     return $phids;
 }
Esempio n. 12
0
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_MOVE_TO:
         case self::TYPE_MOVE_AWAY:
             $phids[] = $new['phid'];
             break;
         case self::TYPE_TITLE:
             if ($this->getMetadataValue('stub:create:phid')) {
                 $phids[] = $this->getMetadataValue('stub:create:phid');
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     switch ($this->getTransactionType()) {
         case self::TYPE_BLOG:
             $old = $this->getOldValue();
             $new = $this->getNewValue();
             if ($old) {
                 $phids[] = $old;
             }
             if ($new) {
                 $phids[] = $new;
             }
             break;
     }
     return $phids;
 }
Esempio n. 14
0
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $new = $this->getNewValue();
     $old = $this->getOldValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_OWNER:
             if ($new) {
                 $phids[] = $new;
             }
             if ($old) {
                 $phids[] = $old;
             }
             break;
         case self::TYPE_PROJECT_COLUMN:
             $phids[] = $new['projectPHID'];
             $phids[] = head($new['columnPHIDs']);
             break;
         case self::TYPE_MERGED_INTO:
             $phids[] = $new;
             break;
         case self::TYPE_MERGED_FROM:
             $phids = array_merge($phids, $new);
             break;
         case self::TYPE_EDGE:
             $phids = array_mergev(array($phids, array_keys(nonempty($old, array())), array_keys(nonempty($new, array()))));
             break;
         case self::TYPE_ATTACH:
             $old = nonempty($old, array());
             $new = nonempty($new, array());
             $phids = array_mergev(array($phids, array_keys(idx($new, 'FILE', array())), array_keys(idx($old, 'FILE', array()))));
             break;
         case self::TYPE_UNBLOCK:
             foreach (array_keys($new) as $phid) {
                 $phids[] = $phid;
             }
             break;
         case self::TYPE_STATUS:
             $commit_phid = $this->getMetadataValue('commitPHID');
             if ($commit_phid) {
                 $phids[] = $commit_phid;
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_INTERFACE:
             if ($old) {
                 $phids[] = $old['networkPHID'];
             }
             if ($new) {
                 $phids[] = $new['networkPHID'];
             }
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     $req_phids = array();
     switch ($this->getTransactionType()) {
         case self::TYPE_MEMBERS:
             $add = array_diff($new, $old);
             $rem = array_diff($old, $new);
             $req_phids = array_merge($add, $rem);
             break;
         case self::TYPE_IMAGE:
             $req_phids[] = $old;
             $req_phids[] = $new;
             break;
     }
     return array_merge($req_phids, parent::getRequiredHandlePHIDs());
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     $type = $this->getTransactionType();
     switch ($type) {
         case self::TYPE_MERCHANT:
             if ($old) {
                 $phids[] = $old;
             }
             if ($new) {
                 $phids[] = $new;
             }
             break;
         case self::TYPE_REFUND:
             $phids[] = $this->getMetadataValue(self::PROPERTY_BACKER);
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $type = $this->getTransactionType();
     switch ($type) {
         case PhabricatorAuditActionConstants::ADD_CCS:
         case PhabricatorAuditActionConstants::ADD_AUDITORS:
             $old = $this->getOldValue();
             $new = $this->getNewValue();
             if (!is_array($old)) {
                 $old = array();
             }
             if (!is_array($new)) {
                 $new = array();
             }
             foreach (array_keys($old + $new) as $phid) {
                 $phids[] = $phid;
             }
             break;
     }
     return $phids;
 }
Esempio n. 19
0
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $phids[] = $this->getObjectPHID();
     $new = $this->getNewValue();
     $old = $this->getOldValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_IMAGE_FILE:
             $phids = array_merge($phids, $new, $old);
             break;
         case self::TYPE_IMAGE_REPLACE:
             $phids[] = $new;
             $phids[] = $old;
             break;
         case self::TYPE_IMAGE_DESCRIPTION:
         case self::TYPE_IMAGE_NAME:
         case self::TYPE_IMAGE_SEQUENCE:
             $phids[] = key($new);
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     $phids[] = $this->getAuthorPHID();
     switch ($this->getTransactionType()) {
         case self::TYPE_TITLE:
         case self::TYPE_PICTURE:
         case self::TYPE_DATE_MARKER:
             break;
         case self::TYPE_PARTICIPANTS:
             $phids = array_merge($phids, $this->getOldValue());
             $phids = array_merge($phids, $this->getNewValue());
             break;
     }
     return $phids;
 }
 public function getRequiredHandlePHIDs()
 {
     $phids = parent::getRequiredHandlePHIDs();
     $type = $this->getTransactionType();
     switch ($type) {
         case self::TYPE_AWARD:
         case self::TYPE_REVOKE:
             $new = $this->getNewValue();
             if (!is_array($new)) {
                 $new = array();
             }
             foreach ($new as $phid) {
                 $phids[] = $phid;
             }
             break;
     }
     return $phids;
 }