2013-01-27 00:42:59 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
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-10-05 21:54:56 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.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/>
|
|
|
|
*
|
2013-01-27 00:42:59 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-04-26 02:01:36 +04:00
|
|
|
namespace OC\Files\Mount;
|
|
|
|
|
|
|
|
use \OC\Files\Filesystem;
|
2014-11-24 17:54:42 +03:00
|
|
|
use OC\Files\Storage\StorageFactory;
|
2013-06-07 19:07:13 +04:00
|
|
|
use OC\Files\Storage\Storage;
|
2014-11-24 17:54:42 +03:00
|
|
|
use OCP\Files\Mount\IMountPoint;
|
2013-01-27 00:42:59 +04:00
|
|
|
|
2014-11-24 17:54:42 +03:00
|
|
|
class MountPoint implements IMountPoint {
|
2013-01-27 00:42:59 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
2014-05-22 03:39:24 +04:00
|
|
|
protected $storage = null;
|
|
|
|
protected $class;
|
|
|
|
protected $storageId;
|
2014-12-16 15:33:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Configuration options for the storage backend
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2014-05-22 03:39:24 +04:00
|
|
|
protected $arguments = array();
|
|
|
|
protected $mountPoint;
|
2013-01-27 00:42:59 +04:00
|
|
|
|
2014-12-16 15:33:58 +03:00
|
|
|
/**
|
|
|
|
* Mount specific options
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $mountOptions = array();
|
|
|
|
|
2013-05-09 00:35:10 +04:00
|
|
|
/**
|
2014-11-24 17:54:42 +03:00
|
|
|
* @var \OC\Files\Storage\StorageFactory $loader
|
2013-05-09 00:35:10 +04:00
|
|
|
*/
|
2013-06-07 19:07:13 +04:00
|
|
|
private $loader;
|
2013-05-09 00:35:10 +04:00
|
|
|
|
2015-01-27 18:55:59 +03:00
|
|
|
/**
|
|
|
|
* Specified whether the storage is invalid after failing to
|
|
|
|
* instantiate it.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $invalidStorage = false;
|
|
|
|
|
2016-07-13 17:29:51 +03:00
|
|
|
/** @var int|null */
|
|
|
|
protected $mountId;
|
|
|
|
|
2013-01-27 00:42:59 +04:00
|
|
|
/**
|
2014-05-11 21:28:45 +04:00
|
|
|
* @param string|\OC\Files\Storage\Storage $storage
|
2013-01-27 00:42:59 +04:00
|
|
|
* @param string $mountpoint
|
2014-12-16 15:33:58 +03:00
|
|
|
* @param array $arguments (optional) configuration for the storage backend
|
2014-11-24 17:54:42 +03:00
|
|
|
* @param \OCP\Files\Storage\IStorageFactory $loader
|
2014-12-16 15:33:58 +03:00
|
|
|
* @param array $mountOptions mount specific options
|
2016-07-13 17:29:51 +03:00
|
|
|
* @param int|null $mountId
|
|
|
|
* @throws \Exception
|
2013-01-27 00:42:59 +04:00
|
|
|
*/
|
2016-07-13 17:29:51 +03:00
|
|
|
public function __construct($storage, $mountpoint, $arguments = null, $loader = null, $mountOptions = null, $mountId = null) {
|
2013-01-27 00:42:59 +04:00
|
|
|
if (is_null($arguments)) {
|
|
|
|
$arguments = array();
|
|
|
|
}
|
2013-06-07 19:07:13 +04:00
|
|
|
if (is_null($loader)) {
|
2014-11-24 17:54:42 +03:00
|
|
|
$this->loader = new StorageFactory();
|
2013-06-07 19:07:13 +04:00
|
|
|
} else {
|
|
|
|
$this->loader = $loader;
|
|
|
|
}
|
2013-01-27 00:42:59 +04:00
|
|
|
|
2014-12-16 15:33:58 +03:00
|
|
|
if (!is_null($mountOptions)) {
|
|
|
|
$this->mountOptions = $mountOptions;
|
|
|
|
}
|
|
|
|
|
2013-04-26 02:01:36 +04:00
|
|
|
$mountpoint = $this->formatPath($mountpoint);
|
2015-03-05 14:28:17 +03:00
|
|
|
$this->mountPoint = $mountpoint;
|
2013-06-07 19:07:13 +04:00
|
|
|
if ($storage instanceof Storage) {
|
2013-01-27 00:42:59 +04:00
|
|
|
$this->class = get_class($storage);
|
2015-08-11 01:20:27 +03:00
|
|
|
$this->storage = $this->loader->wrap($this, $storage);
|
2013-01-27 00:42:59 +04:00
|
|
|
} else {
|
|
|
|
// Update old classes to new namespace
|
|
|
|
if (strpos($storage, 'OC_Filestorage_') !== false) {
|
|
|
|
$storage = '\OC\Files\Storage\\' . substr($storage, 15);
|
|
|
|
}
|
|
|
|
$this->class = $storage;
|
|
|
|
$this->arguments = $arguments;
|
|
|
|
}
|
2016-07-13 17:29:51 +03:00
|
|
|
$this->mountId = $mountId;
|
2013-01-27 00:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-04-30 18:56:09 +04:00
|
|
|
* get complete path to the mount point, relative to data/
|
|
|
|
*
|
2013-01-27 00:42:59 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getMountPoint() {
|
|
|
|
return $this->mountPoint;
|
|
|
|
}
|
|
|
|
|
2014-04-07 21:00:03 +04:00
|
|
|
/**
|
2015-04-13 13:36:47 +03:00
|
|
|
* Sets the mount point path, relative to data/
|
|
|
|
*
|
2014-04-07 21:00:03 +04:00
|
|
|
* @param string $mountPoint new mount point
|
|
|
|
*/
|
|
|
|
public function setMountPoint($mountPoint) {
|
2015-04-13 13:36:47 +03:00
|
|
|
$this->mountPoint = $this->formatPath($mountPoint);
|
2014-04-07 21:00:03 +04:00
|
|
|
}
|
|
|
|
|
2013-01-27 00:42:59 +04:00
|
|
|
/**
|
2013-04-26 02:01:36 +04:00
|
|
|
* create the storage that is mounted
|
|
|
|
*
|
2013-01-27 00:42:59 +04:00
|
|
|
* @return \OC\Files\Storage\Storage
|
|
|
|
*/
|
|
|
|
private function createStorage() {
|
2015-01-27 18:55:59 +03:00
|
|
|
if ($this->invalidStorage) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-01-27 00:42:59 +04:00
|
|
|
if (class_exists($this->class)) {
|
|
|
|
try {
|
2015-03-05 14:28:17 +03:00
|
|
|
return $this->loader->getInstance($this, $this->class, $this->arguments);
|
2013-01-27 00:42:59 +04:00
|
|
|
} catch (\Exception $exception) {
|
2015-01-27 18:55:59 +03:00
|
|
|
$this->invalidStorage = true;
|
2014-06-12 00:13:27 +04:00
|
|
|
if ($this->mountPoint === '/') {
|
|
|
|
// the root storage could not be initialized, show the user!
|
|
|
|
throw new \Exception('The root storage could not be initialized. Please contact your local administrator.', $exception->getCode(), $exception);
|
|
|
|
} else {
|
2015-07-03 15:06:40 +03:00
|
|
|
\OCP\Util::writeLog('core', $exception->getMessage(), \OCP\Util::ERROR);
|
2014-06-12 00:13:27 +04:00
|
|
|
}
|
2013-01-27 00:42:59 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-03 15:06:40 +03:00
|
|
|
\OCP\Util::writeLog('core', 'storage backend ' . $this->class . ' not found', \OCP\Util::ERROR);
|
2015-01-27 18:55:59 +03:00
|
|
|
$this->invalidStorage = true;
|
2013-01-27 00:42:59 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \OC\Files\Storage\Storage
|
|
|
|
*/
|
|
|
|
public function getStorage() {
|
|
|
|
if (is_null($this->storage)) {
|
|
|
|
$this->storage = $this->createStorage();
|
|
|
|
}
|
|
|
|
return $this->storage;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getStorageId() {
|
|
|
|
if (!$this->storageId) {
|
|
|
|
if (is_null($this->storage)) {
|
2013-03-19 18:02:29 +04:00
|
|
|
$storage = $this->createStorage(); //FIXME: start using exceptions
|
|
|
|
if (is_null($storage)) {
|
|
|
|
return null;
|
|
|
|
}
|
2015-01-27 18:55:59 +03:00
|
|
|
|
2013-03-19 18:02:29 +04:00
|
|
|
$this->storage = $storage;
|
2013-01-27 00:42:59 +04:00
|
|
|
}
|
|
|
|
$this->storageId = $this->storage->getId();
|
2013-02-16 00:49:40 +04:00
|
|
|
if (strlen($this->storageId) > 64) {
|
|
|
|
$this->storageId = md5($this->storageId);
|
|
|
|
}
|
2013-01-27 00:42:59 +04:00
|
|
|
}
|
|
|
|
return $this->storageId;
|
|
|
|
}
|
|
|
|
|
2016-08-09 16:52:13 +03:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getNumericStorageId() {
|
|
|
|
return $this->getStorage()->getStorageCache()->getNumericId();
|
|
|
|
}
|
|
|
|
|
2013-01-27 00:42:59 +04:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getInternalPath($path) {
|
2016-05-11 14:12:27 +03:00
|
|
|
$path = Filesystem::normalizePath($path, true, false, true);
|
2013-01-27 00:42:59 +04:00
|
|
|
if ($this->mountPoint === $path or $this->mountPoint . '/' === $path) {
|
|
|
|
$internalPath = '';
|
|
|
|
} else {
|
|
|
|
$internalPath = substr($path, strlen($this->mountPoint));
|
|
|
|
}
|
2014-05-28 15:47:50 +04:00
|
|
|
// substr returns false instead of an empty string, we always want a string
|
2014-05-22 03:39:24 +04:00
|
|
|
return (string)$internalPath;
|
2013-01-27 00:42:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-04-26 02:01:36 +04:00
|
|
|
private function formatPath($path) {
|
2013-01-27 00:42:59 +04:00
|
|
|
$path = Filesystem::normalizePath($path);
|
|
|
|
if (strlen($path) > 1) {
|
|
|
|
$path .= '/';
|
|
|
|
}
|
|
|
|
return $path;
|
|
|
|
}
|
2013-07-25 18:00:24 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param callable $wrapper
|
|
|
|
*/
|
|
|
|
public function wrapStorage($wrapper) {
|
2015-01-27 18:55:59 +03:00
|
|
|
$storage = $this->getStorage();
|
|
|
|
// storage can be null if it couldn't be initialized
|
|
|
|
if ($storage != null) {
|
2015-03-05 19:22:48 +03:00
|
|
|
$this->storage = $wrapper($this->mountPoint, $storage, $this);
|
2015-01-27 18:55:59 +03:00
|
|
|
}
|
2013-07-25 18:00:24 +04:00
|
|
|
}
|
2014-12-16 15:33:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a mount option
|
|
|
|
*
|
|
|
|
* @param string $name Name of the mount option to get
|
|
|
|
* @param mixed $default Default value for the mount option
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getOption($name, $default) {
|
|
|
|
return isset($this->mountOptions[$name]) ? $this->mountOptions[$name] : $default;
|
|
|
|
}
|
2015-03-05 19:10:52 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all options for the mount
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getOptions() {
|
|
|
|
return $this->mountOptions;
|
|
|
|
}
|
2016-04-15 15:03:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the file id of the root of the storage
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getStorageRootId() {
|
|
|
|
return (int)$this->getStorage()->getCache()->getId('');
|
|
|
|
}
|
2016-07-13 17:29:51 +03:00
|
|
|
|
|
|
|
public function getMountId() {
|
|
|
|
return $this->mountId;
|
|
|
|
}
|
2013-01-27 00:42:59 +04:00
|
|
|
}
|