mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
073cb0e78c
Summary: Ref T603. This cleans up an existing callsite in the policy filter, and opens up some stuff in the future. Some policy objects don't have real PHIDs: PhabricatorTokenGiven PhabricatorSavedQuery PhabricatorNamedQuery PhrequentUserTime PhabricatorFlag PhabricatorDaemonLog PhabricatorConduitMethodCallLog ConduitAPIMethod PhabricatorChatLogEvent PhabricatorChatLogChannel Although it would be reasonable to add real PHIDs to some of these (like `ChatLogChannel`), it probably doesn't make much sense for others (`DaemonLog`, `MethodCallLog`). Just let them return `null`. Also remove some duplicate `$id` and `$phid` properties. These are declared on `PhabricatorLiskDAO` and do not need to be redeclared. Test Plan: Ran the `testEverythingImplemented` unit test, which verifies that all classes conform to the interface. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T603 Differential Revision: https://secure.phabricator.com/D7306
114 lines
2.9 KiB
PHP
114 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group legalpad
|
|
*/
|
|
final class LegalpadDocument extends LegalpadDAO
|
|
implements
|
|
PhabricatorPolicyInterface,
|
|
PhabricatorSubscribableInterface,
|
|
PhabricatorApplicationTransactionInterface {
|
|
|
|
protected $title;
|
|
protected $contributorCount;
|
|
protected $recentContributorPHIDs = array();
|
|
protected $creatorPHID;
|
|
protected $versions;
|
|
protected $documentBodyPHID;
|
|
protected $viewPolicy;
|
|
protected $editPolicy;
|
|
protected $mailKey;
|
|
|
|
private $documentBody = self::ATTACHABLE;
|
|
private $contributors = self::ATTACHABLE;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
self::CONFIG_SERIALIZATION => array(
|
|
'recentContributorPHIDs' => self::SERIALIZATION_JSON,
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function generatePHID() {
|
|
return PhabricatorPHID::generateNewPHID(
|
|
PhabricatorLegalpadPHIDTypeDocument::TYPECONST);
|
|
}
|
|
|
|
public function getDocumentBody() {
|
|
return $this->assertAttached($this->documentBody);
|
|
}
|
|
|
|
public function attachDocumentBody(LegalpadDocumentBody $body) {
|
|
$this->documentBody = $body;
|
|
return $this;
|
|
}
|
|
|
|
public function getContributors() {
|
|
return $this->assertAttached($this->contributors);
|
|
}
|
|
|
|
public function attachContributors(array $contributors) {
|
|
$this->contributors = $contributors;
|
|
return $this;
|
|
}
|
|
|
|
public function save() {
|
|
if (!$this->getMailKey()) {
|
|
$this->setMailKey(Filesystem::readRandomCharacters(20));
|
|
}
|
|
return parent::save();
|
|
}
|
|
|
|
/* -( 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());
|
|
}
|
|
|
|
public function describeAutomaticCapability($capability) {
|
|
return pht(
|
|
'The author of a document can always view and edit it.');
|
|
}
|
|
|
|
|
|
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
|
|
|
|
public function getApplicationTransactionEditor() {
|
|
return new LegalpadDocumentEditor();
|
|
}
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return new LegalpadTransaction();
|
|
}
|
|
|
|
}
|