mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 01:38:39 +01:00
Summary: See title. Fixes T1809. Test Plan: verified each type that has flaggable interface still can be flagged verified that new custom query filter works Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Maniphest Tasks: T1809 Differential Revision: https://secure.phabricator.com/D7392
84 lines
1.9 KiB
PHP
84 lines
1.9 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;
|
|
|
|
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(
|
|
PhabricatorMacroPHIDTypeMacro::TYPECONST);
|
|
}
|
|
|
|
public function isAutomaticallySubscribed($phid) {
|
|
return false;
|
|
}
|
|
|
|
public function getApplicationTransactionEditor() {
|
|
return new PhabricatorMacroEditor();
|
|
}
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return new PhabricatorMacroTransaction();
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
|