2013-07-03 20:15:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group legalpad
|
|
|
|
*/
|
|
|
|
final class LegalpadDocument extends LegalpadDAO
|
|
|
|
implements
|
|
|
|
PhabricatorPolicyInterface,
|
|
|
|
PhabricatorSubscribableInterface,
|
|
|
|
PhabricatorApplicationTransactionInterface {
|
|
|
|
|
|
|
|
protected $phid;
|
2013-07-09 02:06:49 +02:00
|
|
|
protected $title;
|
|
|
|
protected $contributorCount;
|
|
|
|
protected $recentContributorPHIDs = array();
|
2013-07-03 20:15:45 +02:00
|
|
|
protected $creatorPHID;
|
|
|
|
protected $versions;
|
|
|
|
protected $documentBodyPHID;
|
|
|
|
protected $viewPolicy;
|
|
|
|
protected $editPolicy;
|
2013-07-04 01:37:05 +02:00
|
|
|
protected $mailKey;
|
2013-07-03 20:15:45 +02:00
|
|
|
|
|
|
|
private $documentBody;
|
|
|
|
private $contributors;
|
|
|
|
|
|
|
|
public function getConfiguration() {
|
|
|
|
return array(
|
|
|
|
self::CONFIG_AUX_PHID => true,
|
2013-07-09 02:06:49 +02:00
|
|
|
self::CONFIG_SERIALIZATION => array(
|
|
|
|
'recentContributorPHIDs' => self::SERIALIZATION_JSON,
|
|
|
|
),
|
2013-07-03 20:15:45 +02:00
|
|
|
) + parent::getConfiguration();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function generatePHID() {
|
|
|
|
return PhabricatorPHID::generateNewPHID(
|
|
|
|
PhabricatorPHIDConstants::PHID_TYPE_LEGD);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDocumentBody() {
|
|
|
|
if ($this->documentBody === null) {
|
|
|
|
throw new Exception(
|
|
|
|
'You must attachDocumentBody before you can getDocumentBody.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->documentBody;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function attachDocumentBody(LegalpadDocumentBody $body) {
|
|
|
|
$this->documentBody = $body;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getContributors() {
|
|
|
|
if ($this->contributors === null) {
|
|
|
|
throw new Exception(
|
|
|
|
'You must attachContributors before you can getContributors.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->contributors;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function attachContributors(array $contributors) {
|
|
|
|
$this->contributors = $contributors;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-07-04 01:37:05 +02:00
|
|
|
public function save() {
|
|
|
|
if (!$this->getMailKey()) {
|
|
|
|
$this->setMailKey(Filesystem::readRandomCharacters(20));
|
|
|
|
}
|
|
|
|
return parent::save();
|
|
|
|
}
|
|
|
|
|
2013-07-03 20:15:45 +02:00
|
|
|
/* -( PhabricatorSubscribableInterface Implementation )-------------------- */
|
|
|
|
|
|
|
|
public function isAutomaticallySubscribed($phid) {
|
|
|
|
return ($this->creatorPHID == $phid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -( PhabricatorPolicyInterface Implementation )-------------------------- */
|
|
|
|
|
|
|
|
public function getCapabilities() {
|
|
|
|
return array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPolicy($capability) {
|
|
|
|
switch ($capability) {
|
|
|
|
case PhabricatorPolicyCapability::CAN_VIEW:
|
|
|
|
$policy = $this->viewPolicy;
|
|
|
|
break;
|
|
|
|
case PhabricatorPolicyCapability::CAN_EDIT:
|
|
|
|
$policy = $this->editPolicy;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$policy = PhabricatorPolicies::POLICY_NOONE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $policy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $user) {
|
|
|
|
return ($user->getPHID() == $this->getCreatorPHID());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
|
|
|
|
|
|
|
|
public function getApplicationTransactionEditor() {
|
|
|
|
return new LegalpadDocumentEditor();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionObject() {
|
|
|
|
return new LegalpadTransaction();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|