true, self::CONFIG_SERIALIZATION => array( 'ccPHIDs' => self::SERIALIZATION_JSON, 'attached' => self::SERIALIZATION_JSON, 'projectPHIDs' => self::SERIALIZATION_JSON, ), ) + parent::getConfiguration(); } public function getAttachedPHIDs($type) { return array_keys(idx($this->attached, $type, array())); } public function generatePHID() { return PhabricatorPHID::generateNewPHID( PhabricatorPHIDConstants::PHID_TYPE_TASK); } public function getCCPHIDs() { return nonempty($this->ccPHIDs, array()); } public function setProjectPHIDs(array $phids) { $this->projectPHIDs = $phids; $this->projectsNeedUpdate = true; return $this; } public function setCCPHIDs(array $phids) { $this->ccPHIDs = $phids; $this->subscribersNeedUpdate = true; return $this; } public function setOwnerPHID($phid) { $this->ownerPHID = $phid; $this->subscribersNeedUpdate = true; return $this; } public function setAuxiliaryAttribute($key, $val) { $this->removeAuxiliaryAttribute($key); $attribute = new ManiphestTaskAuxiliaryStorage(); $attribute->setTaskPHID($this->phid); $attribute->setName($key); $attribute->setValue($val); $attribute->save(); } public function loadAuxiliaryAttribute($key) { $attribute = id(new ManiphestTaskAuxiliaryStorage())->loadOneWhere( 'taskPHID = %s AND name = %s', $this->getPHID(), $key); return $attribute; } public function removeAuxiliaryAttribute($key) { $attribute = id(new ManiphestTaskAuxiliaryStorage())->loadOneWhere( 'taskPHID = %s AND name = %s', $this->getPHID(), $key); if ($attribute) { $attribute->delete(); } } public function loadAuxiliaryAttributes() { $attributes = id(new ManiphestTaskAuxiliaryStorage())->loadAllWhere( 'taskPHID = %s', $this->getPHID()); return $attributes; } public function save() { if (!$this->mailKey) { $this->mailKey = sha1(Filesystem::readRandomBytes(20)); } $result = parent::save(); if ($this->projectsNeedUpdate) { // If we've changed the project PHIDs for this task, update the link // table. ManiphestTaskProject::updateTaskProjects($this); $this->projectsNeedUpdate = false; } if ($this->subscribersNeedUpdate) { // If we've changed the subscriber PHIDs for this task, update the link // table. ManiphestTaskSubscriber::updateTaskSubscribers($this); $this->subscribersNeedUpdate = false; } return $result; } }