2015-08-11 20:45:07 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-08-11 20:45:07 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-08-11 20:45:07 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_External\Lib;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parameter for an external storage definition
|
|
|
|
*/
|
|
|
|
class DefinitionParameter implements \JsonSerializable {
|
2020-03-12 21:45:23 +03:00
|
|
|
// placeholder value for password fields, when the client updates a storage configuration
|
|
|
|
// placeholder values are ignored and the field is left unmodified
|
2020-04-10 17:54:27 +03:00
|
|
|
public const UNMODIFIED_PLACEHOLDER = '__unmodified__';
|
2015-08-11 20:45:07 +03:00
|
|
|
|
|
|
|
/** Value constants */
|
2020-04-10 17:54:27 +03:00
|
|
|
public const VALUE_TEXT = 0;
|
|
|
|
public const VALUE_BOOLEAN = 1;
|
|
|
|
public const VALUE_PASSWORD = 2;
|
|
|
|
public const VALUE_HIDDEN = 3;
|
2015-08-11 20:45:07 +03:00
|
|
|
|
|
|
|
/** Flag constants */
|
2020-04-10 17:54:27 +03:00
|
|
|
public const FLAG_NONE = 0;
|
|
|
|
public const FLAG_OPTIONAL = 1;
|
|
|
|
public const FLAG_USER_PROVIDED = 2;
|
2015-08-11 20:45:07 +03:00
|
|
|
|
|
|
|
/** @var string name of parameter */
|
|
|
|
private $name;
|
|
|
|
|
|
|
|
/** @var string human-readable parameter text */
|
|
|
|
private $text;
|
|
|
|
|
2020-04-02 18:22:42 +03:00
|
|
|
/** @var string human-readable parameter tooltip */
|
|
|
|
private $tooltip = '';
|
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
/** @var int value type, see self::VALUE_* constants */
|
|
|
|
private $type = self::VALUE_TEXT;
|
|
|
|
|
|
|
|
/** @var int flags, see self::FLAG_* constants */
|
|
|
|
private $flags = self::FLAG_NONE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param string $text
|
|
|
|
*/
|
|
|
|
public function __construct($name, $text) {
|
|
|
|
$this->name = $name;
|
|
|
|
$this->text = $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getText() {
|
|
|
|
return $this->text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get value type
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getType() {
|
|
|
|
return $this->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set value type
|
|
|
|
*
|
|
|
|
* @param int $type
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function setType($type) {
|
|
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2016-02-05 16:17:03 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTypeName() {
|
|
|
|
switch ($this->type) {
|
|
|
|
case self::VALUE_BOOLEAN:
|
|
|
|
return 'boolean';
|
|
|
|
case self::VALUE_TEXT:
|
|
|
|
return 'text';
|
|
|
|
case self::VALUE_PASSWORD:
|
|
|
|
return 'password';
|
|
|
|
default:
|
|
|
|
return 'unknown';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getFlags() {
|
|
|
|
return $this->flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $flags
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function setFlags($flags) {
|
|
|
|
$this->flags = $flags;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $flag
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function setFlag($flag) {
|
|
|
|
$this->flags |= $flag;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $flag
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isFlagSet($flag) {
|
2016-01-19 16:16:11 +03:00
|
|
|
return (bool)($this->flags & $flag);
|
2015-08-11 20:45:07 +03:00
|
|
|
}
|
|
|
|
|
2020-04-02 18:22:42 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTooltip(): string {
|
|
|
|
return $this->tooltip;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $tooltip
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function setTooltip(string $tooltip) {
|
|
|
|
$this->tooltip = $tooltip;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
/**
|
|
|
|
* Serialize into JSON for client-side JS
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function jsonSerialize() {
|
2016-02-01 19:44:58 +03:00
|
|
|
return [
|
|
|
|
'value' => $this->getText(),
|
|
|
|
'flags' => $this->getFlags(),
|
2020-04-02 18:22:42 +03:00
|
|
|
'type' => $this->getType(),
|
|
|
|
'tooltip' => $this->getTooltip(),
|
2016-02-01 19:44:58 +03:00
|
|
|
];
|
2015-08-11 20:45:07 +03:00
|
|
|
}
|
|
|
|
|
2016-01-26 16:40:55 +03:00
|
|
|
public function isOptional() {
|
|
|
|
return $this->isFlagSet(self::FLAG_OPTIONAL) || $this->isFlagSet(self::FLAG_USER_PROVIDED);
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:45:07 +03:00
|
|
|
/**
|
|
|
|
* Validate a parameter value against this
|
2015-08-20 14:23:12 +03:00
|
|
|
* Convert type as necessary
|
2015-08-11 20:45:07 +03:00
|
|
|
*
|
|
|
|
* @param mixed $value Value to check
|
|
|
|
* @return bool success
|
|
|
|
*/
|
2015-08-20 14:23:12 +03:00
|
|
|
public function validateValue(&$value) {
|
2015-08-11 20:45:07 +03:00
|
|
|
switch ($this->getType()) {
|
2016-01-19 16:16:11 +03:00
|
|
|
case self::VALUE_BOOLEAN:
|
|
|
|
if (!is_bool($value)) {
|
|
|
|
switch ($value) {
|
|
|
|
case 'true':
|
|
|
|
$value = true;
|
|
|
|
break;
|
|
|
|
case 'false':
|
|
|
|
$value = false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2016-01-26 16:40:55 +03:00
|
|
|
if (!$value && !$this->isOptional()) {
|
2015-08-20 14:23:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
2016-01-19 16:16:11 +03:00
|
|
|
break;
|
2015-08-11 20:45:07 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|