mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
97a8700e45
Summary: Ref T5655. Rename `PhabricatorPHIDType` subclasses for clarity (see discussion in D9839). I'm not too keen on some of the resulting class names, so feel free to suggest alternatives. Test Plan: Ran unit tests. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, hach-que Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9986
116 lines
2.6 KiB
PHP
116 lines
2.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorFileImageMacro extends PhabricatorFileDAO
|
|
implements
|
|
PhabricatorSubscribableInterface,
|
|
PhabricatorApplicationTransactionInterface,
|
|
PhabricatorFlaggableInterface,
|
|
PhabricatorPolicyInterface {
|
|
|
|
protected $authorPHID;
|
|
protected $filePHID;
|
|
protected $name;
|
|
protected $isDisabled = 0;
|
|
protected $audioPHID;
|
|
protected $audioBehavior = self::AUDIO_BEHAVIOR_NONE;
|
|
protected $mailKey;
|
|
|
|
private $file = self::ATTACHABLE;
|
|
private $audio = self::ATTACHABLE;
|
|
|
|
const AUDIO_BEHAVIOR_NONE = 'audio:none';
|
|
const AUDIO_BEHAVIOR_ONCE = 'audio:once';
|
|
const AUDIO_BEHAVIOR_LOOP = 'audio:loop';
|
|
|
|
public function attachFile(PhabricatorFile $file) {
|
|
$this->file = $file;
|
|
return $this;
|
|
}
|
|
|
|
public function getFile() {
|
|
return $this->assertAttached($this->file);
|
|
}
|
|
|
|
public function attachAudio(PhabricatorFile $audio = null) {
|
|
$this->audio = $audio;
|
|
return $this;
|
|
}
|
|
|
|
public function getAudio() {
|
|
return $this->assertAttached($this->audio);
|
|
}
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function generatePHID() {
|
|
return PhabricatorPHID::generateNewPHID(
|
|
PhabricatorMacroMacroPHIDType::TYPECONST);
|
|
}
|
|
|
|
|
|
public function save() {
|
|
if (!$this->getMailKey()) {
|
|
$this->setMailKey(Filesystem::readRandomCharacters(20));
|
|
}
|
|
return parent::save();
|
|
}
|
|
|
|
|
|
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
|
|
|
|
|
|
public function getApplicationTransactionEditor() {
|
|
return new PhabricatorMacroEditor();
|
|
}
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return $this;
|
|
}
|
|
|
|
public function getApplicationTransactionTemplate() {
|
|
return new PhabricatorMacroTransaction();
|
|
}
|
|
|
|
|
|
/* -( PhabricatorSubscribableInterface )----------------------------------- */
|
|
|
|
|
|
public function isAutomaticallySubscribed($phid) {
|
|
return false;
|
|
}
|
|
|
|
public function shouldShowSubscribersProperty() {
|
|
return true;
|
|
}
|
|
|
|
public function shouldAllowSubscription($phid) {
|
|
return true;
|
|
}
|
|
|
|
|
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
|
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
return PhabricatorPolicies::getMostOpenPolicy();
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return false;
|
|
}
|
|
|
|
public function describeAutomaticCapability($capability) {
|
|
return null;
|
|
}
|
|
|
|
}
|