mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
3ded757e84
Summary: Allow extra options to be locked, hidden or masked via config. These options are themselves locked and can not be edited via the web UI. The primary goal here is to let us lock or hide things from SaaS installs (e.g., keys, etc.), or to let server administrators lock or hide information from web UI administrators if they want to for some reason. The secondary goal is to remove the `darkconsole.config-mask` option, although I might just remove the panel entirely and put it in the config app, since that probably makes far more sense. Yeahhhhh... probably doing that. These options need masks when ported (they haven't been ported yet): phabricator.csrf-key phabricator.mail-key security.hmac-key Test Plan: Artifically tweaked lock/hide settings on options, verified the UI respected them. Reviewers: codeblock, btrahan Reviewed By: codeblock CC: aran Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4472
205 lines
3.9 KiB
PHP
205 lines
3.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConfigOption
|
|
extends Phobject
|
|
implements PhabricatorMarkupInterface{
|
|
|
|
private $key;
|
|
private $default;
|
|
private $summary;
|
|
private $description;
|
|
private $type;
|
|
private $boolOptions;
|
|
private $group;
|
|
private $examples;
|
|
private $locked;
|
|
private $hidden;
|
|
private $masked;
|
|
private $baseClass;
|
|
|
|
public function setBaseClass($base_class) {
|
|
$this->baseClass = $base_class;
|
|
return $this;
|
|
}
|
|
|
|
public function getBaseClass() {
|
|
return $this->baseClass;
|
|
}
|
|
|
|
public function setMasked($masked) {
|
|
$this->masked = $masked;
|
|
return $this;
|
|
}
|
|
|
|
public function getMasked() {
|
|
if ($this->masked) {
|
|
return true;
|
|
}
|
|
|
|
if ($this->getHidden()) {
|
|
return true;
|
|
}
|
|
|
|
return idx(
|
|
PhabricatorEnv::getEnvConfig('config.mask', array()),
|
|
$this->getKey(),
|
|
false);
|
|
}
|
|
|
|
public function setHidden($hidden) {
|
|
$this->hidden = $hidden;
|
|
return $this;
|
|
}
|
|
|
|
public function getHidden() {
|
|
if ($this->hidden) {
|
|
return true;
|
|
}
|
|
|
|
return idx(
|
|
PhabricatorEnv::getEnvConfig('config.hide', array()),
|
|
$this->getKey(),
|
|
false);
|
|
}
|
|
|
|
public function setLocked($locked) {
|
|
$this->locked = $locked;
|
|
return $this;
|
|
}
|
|
|
|
public function getLocked() {
|
|
if ($this->locked) {
|
|
return true;
|
|
}
|
|
|
|
if ($this->getHidden()) {
|
|
return true;
|
|
}
|
|
|
|
return idx(
|
|
PhabricatorEnv::getEnvConfig('config.lock', array()),
|
|
$this->getKey(),
|
|
false);
|
|
}
|
|
|
|
public function addExample($value, $description) {
|
|
$this->examples[] = array($value, $description);
|
|
return $this;
|
|
}
|
|
|
|
public function getExamples() {
|
|
return $this->examples;
|
|
}
|
|
|
|
public function setGroup(PhabricatorApplicationConfigOptions $group) {
|
|
$this->group = $group;
|
|
return $this;
|
|
}
|
|
|
|
public function getGroup() {
|
|
return $this->group;
|
|
}
|
|
|
|
public function setBoolOptions(array $options) {
|
|
$this->boolOptions = $options;
|
|
return $this;
|
|
}
|
|
|
|
public function getBoolOptions() {
|
|
if ($this->boolOptions) {
|
|
return $this->boolOptions;
|
|
}
|
|
return array(
|
|
pht('True'),
|
|
pht('False'),
|
|
);
|
|
}
|
|
|
|
public function setKey($key) {
|
|
$this->key = $key;
|
|
return $this;
|
|
}
|
|
|
|
public function getKey() {
|
|
return $this->key;
|
|
}
|
|
|
|
public function setDefault($default) {
|
|
$this->default = $default;
|
|
return $this;
|
|
}
|
|
|
|
public function getDefault() {
|
|
return $this->default;
|
|
}
|
|
|
|
public function setSummary($summary) {
|
|
$this->summary = $summary;
|
|
return $this;
|
|
}
|
|
|
|
public function getSummary() {
|
|
if (empty($this->summary)) {
|
|
return $this->getDescription();
|
|
}
|
|
return $this->summary;
|
|
}
|
|
|
|
public function setDescription($description) {
|
|
$this->description = $description;
|
|
return $this;
|
|
}
|
|
|
|
public function getDescription() {
|
|
return $this->description;
|
|
}
|
|
|
|
public function setType($type) {
|
|
$this->type = $type;
|
|
return $this;
|
|
}
|
|
|
|
public function getType() {
|
|
return $this->type;
|
|
}
|
|
|
|
/* -( PhabricatorMarkupInterface )----------------------------------------- */
|
|
|
|
public function getMarkupFieldKey($field) {
|
|
return $this->getKey().':'.$field;
|
|
}
|
|
|
|
public function newMarkupEngine($field) {
|
|
return PhabricatorMarkupEngine::newMarkupEngine(array());
|
|
}
|
|
|
|
public function getMarkupText($field) {
|
|
switch ($field) {
|
|
case 'description':
|
|
$text = $this->getDescription();
|
|
break;
|
|
case 'summary':
|
|
$text = $this->getSummary();
|
|
break;
|
|
}
|
|
|
|
// TODO: We should probably implement this as a real Markup rule, but
|
|
// markup rules are a bit of a mess right now and it doesn't hurt us to
|
|
// fake this.
|
|
$text = preg_replace(
|
|
'/{{([^}]+)}}/',
|
|
'[[/config/edit/\\1/ | \\1]]',
|
|
$text);
|
|
|
|
return $text;
|
|
}
|
|
|
|
public function didMarkupText($field, $output, PhutilMarkupEngine $engine) {
|
|
return $output;
|
|
}
|
|
|
|
public function shouldUseMarkupCache($field) {
|
|
return false;
|
|
}
|
|
|
|
}
|