2013-02-15 16:47:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorTokenGiven extends PhabricatorTokenDAO
|
|
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
|
|
|
|
protected $authorPHID;
|
|
|
|
protected $objectPHID;
|
|
|
|
protected $tokenPHID;
|
|
|
|
|
2013-09-03 15:02:14 +02:00
|
|
|
private $object = self::ATTACHABLE;
|
2013-02-15 16:47:14 +01:00
|
|
|
|
|
|
|
public function attachObject(PhabricatorTokenReceiverInterface $object) {
|
|
|
|
$this->object = $object;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getObject() {
|
2013-09-03 15:02:14 +02:00
|
|
|
return $this->assertAttached($this->object);
|
2013-02-15 16:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getCapabilities() {
|
|
|
|
return array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPolicy($capability) {
|
|
|
|
switch ($capability) {
|
|
|
|
case PhabricatorPolicyCapability::CAN_VIEW:
|
|
|
|
return $this->getObject()->getPolicy($capability);
|
|
|
|
default:
|
|
|
|
return PhabricatorPolicies::POLICY_NOONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $user) {
|
|
|
|
switch ($capability) {
|
|
|
|
case PhabricatorPolicyCapability::CAN_VIEW:
|
|
|
|
return $this->getObject()->hasAutomaticCapability(
|
|
|
|
$capability,
|
|
|
|
$user);
|
|
|
|
default:
|
|
|
|
if ($user->getPHID() == $this->authorPHID) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|