mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
65 lines
1.4 KiB
PHP
65 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
final class NuanceSource
|
||
|
extends NuanceDAO
|
||
|
implements PhabricatorPolicyInterface {
|
||
|
|
||
|
protected $name;
|
||
|
protected $type;
|
||
|
protected $data;
|
||
|
protected $mailKey;
|
||
|
protected $viewPolicy;
|
||
|
protected $editPolicy;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_AUX_PHID => true,
|
||
|
self::CONFIG_SERIALIZATION => array(
|
||
|
'data' => self::SERIALIZATION_JSON,
|
||
|
),
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
public function generatePHID() {
|
||
|
return PhabricatorPHID::generateNewPHID(
|
||
|
NuancePHIDTypeSource::TYPECONST);
|
||
|
}
|
||
|
|
||
|
public function save() {
|
||
|
if (!$this->getMailKey()) {
|
||
|
$this->setMailKey(Filesystem::readRandomCharacters(20));
|
||
|
}
|
||
|
return parent::save();
|
||
|
}
|
||
|
|
||
|
public function getURI() {
|
||
|
return '/nuance/source/view/'.$this->getID().'/';
|
||
|
}
|
||
|
|
||
|
public function getCapabilities() {
|
||
|
return array(
|
||
|
PhabricatorPolicyCapability::CAN_VIEW,
|
||
|
PhabricatorPolicyCapability::CAN_EDIT,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getPolicy($capability) {
|
||
|
switch ($capability) {
|
||
|
case PhabricatorPolicyCapability::CAN_VIEW:
|
||
|
return $this->getViewPolicy();
|
||
|
case PhabricatorPolicyCapability::CAN_EDIT:
|
||
|
return $this->getEditPolicy();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function describeAutomaticCapability($capability) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|