mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 20:52:43 +01:00
bdc93f65a2
Summary: Ref T2715. Test Plan: `phid.query` Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2715 Differential Revision: https://secure.phabricator.com/D6596
64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class DivinerLiveBook extends DivinerDAO
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
protected $phid;
|
|
protected $name;
|
|
protected $viewPolicy;
|
|
protected $configurationData = array();
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
self::CONFIG_SERIALIZATION => array(
|
|
'configurationData' => self::SERIALIZATION_JSON,
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function getConfig($key, $default = null) {
|
|
return idx($this->configurationData, $key, $default);
|
|
}
|
|
|
|
public function setConfig($key, $value) {
|
|
$this->configurationData[$key] = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function generatePHID() {
|
|
return PhabricatorPHID::generateNewPHID(
|
|
DivinerPHIDTypeBook::TYPECONST);
|
|
}
|
|
|
|
public function getTitle() {
|
|
return $this->getConfig('title', $this->getName());
|
|
}
|
|
|
|
public function getShortTitle() {
|
|
return $this->getConfig('short', $this->getTitle());
|
|
}
|
|
|
|
public function getGroupName($group) {
|
|
$groups = $this->getConfig('groups');
|
|
$spec = idx($groups, $group, array());
|
|
return idx($spec, 'name', $group);
|
|
}
|
|
|
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
return $this->viewPolicy;
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return false;
|
|
}
|
|
|
|
}
|