true, self::CONFIG_SERIALIZATION => array( 'details' => self::SERIALIZATION_JSON, ), ) + parent::getConfiguration(); } public function generatePHID() { return PhabricatorPHID::generateNewPHID( ReleephPHIDConstants::PHID_TYPE_REPR); } public function getDetail($key, $default = null) { return idx($this->details, $key, $default); } public function getURI($path = null) { $components = array( '/releeph/project', $this->getID(), $path ); return PhabricatorEnv::getProductionURI(implode('/', $components)); } public function setDetail($key, $value) { $this->details[$key] = $value; return $this; } public function willSaveObject() { // Do this first, to generate the PHID parent::willSaveObject(); $banned_names = $this->getBannedNames(); if (in_array($this->name, $banned_names)) { throw new Exception(sprintf( "The name '%s' is in the list of banned project names!", $this->name, implode(', ', $banned_names))); } if (!$this->getDetail('releaseCounter')) { $this->setDetail('releaseCounter', 0); } } public function loadPhabricatorProject() { if ($id = $this->getProjectID()) { return id(new PhabricatorProject())->load($id); } return id(new PhabricatorProject())->makeEphemeral(); // dummy } public function loadArcanistProject() { return $this->loadOneRelative( new PhabricatorRepositoryArcanistProject(), 'id', 'getArcanistProjectID'); } public function getPushers() { return $this->getDetail('pushers', array()); } public function isPusherPHID($phid) { $pusher_phids = $this->getDetail('pushers', array()); return in_array($phid, $pusher_phids); } public function isPusher(PhabricatorUser $user) { return $this->isPusherPHID($user->getPHID()); } public function loadPhabricatorRepository() { return $this->loadOneRelative( new PhabricatorRepository(), 'id', 'getRepositoryID'); } public function getCurrentReleaseNumber() { $current_release_numbers = array(); // From the project... $current_release_numbers[] = $this->getDetail('releaseCounter', 0); // From any branches... $branches = id(new ReleephBranch())->loadAllWhere( 'releephProjectID = %d', $this->getID()); if ($branches) { $release_numbers = array(); foreach ($branches as $branch) { $current_release_numbers[] = $branch->getDetail('releaseNumber', 0); } } return max($current_release_numbers); } public function getReleephFieldSelector() { $class = $this->getDetail('field_selector'); if (!$class) { $key = 'releeph.field-selector'; $class = PhabricatorEnv::getEnvConfig($key); } if ($class) { return newv($class, array()); } else { return new ReleephDefaultFieldSelector(); } } /** * Wrapper to setIsActive() that logs who deactivated a project */ public function deactivate(PhabricatorUser $actor) { return $this ->setIsActive(0) ->setDetail('last_deactivated_user', $actor->getPHID()) ->setDetail('last_deactivated_time', time()); } // Hide this from the public private function setIsActive($v) { return parent::setIsActive($v); } private function getBannedNames() { return array( 'branch', // no one's tried this... yet! ); } public function isTestFile($filename) { $test_paths = $this->getDetail('testPaths', array()); foreach ($test_paths as $test_path) { if (preg_match($test_path, $filename)) { return true; } } return false; } }