123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Jesús Macias <jmacias@solidgear.es>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @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,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\Files_External\Lib;
- use OCA\Files_External\Lib\Auth\AuthMechanism;
- use OCA\Files_External\Lib\Auth\IUserProvided;
- use OCA\Files_External\Lib\Backend\Backend;
- /**
- * External storage configuration
- */
- class StorageConfig implements \JsonSerializable {
- public const MOUNT_TYPE_ADMIN = 1;
- public const MOUNT_TYPE_PERSONAl = 2;
- /**
- * Storage config id
- *
- * @var int
- */
- private $id;
- /**
- * Backend
- *
- * @var Backend
- */
- private $backend;
- /**
- * Authentication mechanism
- *
- * @var AuthMechanism
- */
- private $authMechanism;
- /**
- * Backend options
- *
- * @var array
- */
- private $backendOptions = [];
- /**
- * Mount point path, relative to the user's "files" folder
- *
- * @var string
- */
- private $mountPoint;
- /**
- * Storage status
- *
- * @var int
- */
- private $status;
- /**
- * Status message
- *
- * @var string
- */
- private $statusMessage;
- /**
- * Priority
- *
- * @var int
- */
- private $priority;
- /**
- * List of users who have access to this storage
- *
- * @var string[]
- */
- private $applicableUsers = [];
- /**
- * List of groups that have access to this storage
- *
- * @var string[]
- */
- private $applicableGroups = [];
- /**
- * Mount-specific options
- *
- * @var array
- */
- private $mountOptions = [];
- /**
- * Whether it's a personal or admin mount
- *
- * @var int
- */
- private $type;
- /**
- * Creates a storage config
- *
- * @param int|string $id config id or null for a new config
- */
- public function __construct($id = null) {
- $this->id = $id ?? -1;
- $this->mountOptions['enable_sharing'] = false;
- }
- /**
- * Returns the configuration id
- *
- * @retun int
- */
- public function getId() {
- return $this->id;
- }
- /**
- * Sets the configuration id
- *
- * @param int $id configuration id
- */
- public function setId(int $id): void {
- $this->id = $id;
- }
- /**
- * Returns mount point path relative to the user's
- * "files" folder.
- *
- * @return string path
- */
- public function getMountPoint() {
- return $this->mountPoint;
- }
- /**
- * Sets mount point path relative to the user's
- * "files" folder.
- * The path will be normalized.
- *
- * @param string $mountPoint path
- */
- public function setMountPoint($mountPoint) {
- $this->mountPoint = \OC\Files\Filesystem::normalizePath($mountPoint);
- }
- /**
- * @return Backend
- */
- public function getBackend() {
- return $this->backend;
- }
- /**
- * @param Backend $backend
- */
- public function setBackend(Backend $backend) {
- $this->backend = $backend;
- }
- /**
- * @return AuthMechanism
- */
- public function getAuthMechanism() {
- return $this->authMechanism;
- }
- /**
- * @param AuthMechanism $authMechanism
- */
- public function setAuthMechanism(AuthMechanism $authMechanism) {
- $this->authMechanism = $authMechanism;
- }
- /**
- * Returns the external storage backend-specific options
- *
- * @return array backend options
- */
- public function getBackendOptions() {
- return $this->backendOptions;
- }
- /**
- * Sets the external storage backend-specific options
- *
- * @param array $backendOptions backend options
- */
- public function setBackendOptions($backendOptions) {
- if ($this->getBackend() instanceof Backend) {
- $parameters = $this->getBackend()->getParameters();
- foreach ($backendOptions as $key => $value) {
- if (isset($parameters[$key])) {
- switch ($parameters[$key]->getType()) {
- case \OCA\Files_External\Lib\DefinitionParameter::VALUE_BOOLEAN:
- $value = (bool)$value;
- break;
- }
- $backendOptions[$key] = $value;
- }
- }
- }
- $this->backendOptions = $backendOptions;
- }
- /**
- * @param string $key
- * @return mixed
- */
- public function getBackendOption($key) {
- if (isset($this->backendOptions[$key])) {
- return $this->backendOptions[$key];
- }
- return null;
- }
- /**
- * @param string $key
- * @param mixed $value
- */
- public function setBackendOption($key, $value) {
- $this->backendOptions[$key] = $value;
- }
- /**
- * Returns the mount priority
- *
- * @return int priority
- */
- public function getPriority() {
- return $this->priority;
- }
- /**
- * Sets the mount priority
- *
- * @param int $priority priority
- */
- public function setPriority($priority) {
- $this->priority = $priority;
- }
- /**
- * Returns the users for which to mount this storage
- *
- * @return string[] applicable users
- */
- public function getApplicableUsers() {
- return $this->applicableUsers;
- }
- /**
- * Sets the users for which to mount this storage
- *
- * @param string[]|null $applicableUsers applicable users
- */
- public function setApplicableUsers($applicableUsers) {
- if (is_null($applicableUsers)) {
- $applicableUsers = [];
- }
- $this->applicableUsers = $applicableUsers;
- }
- /**
- * Returns the groups for which to mount this storage
- *
- * @return string[] applicable groups
- */
- public function getApplicableGroups() {
- return $this->applicableGroups;
- }
- /**
- * Sets the groups for which to mount this storage
- *
- * @param string[]|null $applicableGroups applicable groups
- */
- public function setApplicableGroups($applicableGroups) {
- if (is_null($applicableGroups)) {
- $applicableGroups = [];
- }
- $this->applicableGroups = $applicableGroups;
- }
- /**
- * Returns the mount-specific options
- *
- * @return array mount specific options
- */
- public function getMountOptions() {
- return $this->mountOptions;
- }
- /**
- * Sets the mount-specific options
- *
- * @param array $mountOptions applicable groups
- */
- public function setMountOptions($mountOptions) {
- if (is_null($mountOptions)) {
- $mountOptions = [];
- }
- $this->mountOptions = $mountOptions;
- }
- /**
- * @param string $key
- * @return mixed
- */
- public function getMountOption($key) {
- if (isset($this->mountOptions[$key])) {
- return $this->mountOptions[$key];
- }
- return null;
- }
- /**
- * @param string $key
- * @param mixed $value
- */
- public function setMountOption($key, $value) {
- $this->mountOptions[$key] = $value;
- }
- /**
- * Gets the storage status, whether the config worked last time
- *
- * @return int $status status
- */
- public function getStatus() {
- return $this->status;
- }
- /**
- * Gets the message describing the storage status
- *
- * @return string|null
- */
- public function getStatusMessage() {
- return $this->statusMessage;
- }
- /**
- * Sets the storage status, whether the config worked last time
- *
- * @param int $status status
- * @param string|null $message optional message
- */
- public function setStatus($status, $message = null) {
- $this->status = $status;
- $this->statusMessage = $message;
- }
- /**
- * @return int self::MOUNT_TYPE_ADMIN or self::MOUNT_TYPE_PERSONAl
- */
- public function getType() {
- return $this->type;
- }
- /**
- * @param int $type self::MOUNT_TYPE_ADMIN or self::MOUNT_TYPE_PERSONAl
- */
- public function setType($type) {
- $this->type = $type;
- }
- /**
- * Serialize config to JSON
- */
- public function jsonSerialize(): array {
- $result = [];
- if (!is_null($this->id)) {
- $result['id'] = $this->id;
- }
- $result['mountPoint'] = $this->mountPoint;
- $result['backend'] = $this->backend->getIdentifier();
- $result['authMechanism'] = $this->authMechanism->getIdentifier();
- $result['backendOptions'] = $this->backendOptions;
- if (!is_null($this->priority)) {
- $result['priority'] = $this->priority;
- }
- if (!empty($this->applicableUsers)) {
- $result['applicableUsers'] = $this->applicableUsers;
- }
- if (!empty($this->applicableGroups)) {
- $result['applicableGroups'] = $this->applicableGroups;
- }
- if (!empty($this->mountOptions)) {
- $result['mountOptions'] = $this->mountOptions;
- }
- if (!is_null($this->status)) {
- $result['status'] = $this->status;
- }
- if (!is_null($this->statusMessage)) {
- $result['statusMessage'] = $this->statusMessage;
- }
- $result['userProvided'] = $this->authMechanism instanceof IUserProvided;
- $result['type'] = ($this->getType() === self::MOUNT_TYPE_PERSONAl) ? 'personal': 'system';
- return $result;
- }
- }
|