[Pkg-owncloud-commits] [owncloud] 117/223: Save mountpoints relative to the user

David Prévot taffit at moszumanska.debian.org
Sun Jun 22 01:54:13 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 64ced76bebfab1607cbd44819b03242efdc17a9c
Author: Robin Appelman <icewind at owncloud.com>
Date:   Wed Jun 4 17:20:00 2014 +0200

    Save mountpoints relative to the user
---
 apps/files_sharing/lib/external/manager.php | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php
index 47fc220..75edf73 100644
--- a/apps/files_sharing/lib/external/manager.php
+++ b/apps/files_sharing/lib/external/manager.php
@@ -8,6 +8,7 @@
 
 namespace OCA\Files_Sharing\External;
 
+use OC\Files\Filesystem;
 use OC\Files\Mount\Mount;
 
 class Manager {
@@ -52,7 +53,7 @@ class Manager {
 		if ($user) {
 			$query = $this->connection->prepare('INSERT INTO *PREFIX*share_external(`remote`, `share_token`, `password`,
 				`name`, `owner`, `user`, `mountpoint`, `mountpoint_hash`) VALUES(?, ?, ?, ?, ?, ?, ?, ?)');
-			$mountPoint = '/' . $user->getUID() . '/files/' . $name;
+			$mountPoint = Filesystem::normalizePath('/' . $name);
 			$hash = md5($mountPoint);
 			$query->execute(array($remote, $token, $password, $name, $owner, $user->getUID(), $mountPoint, $hash));
 
@@ -63,9 +64,7 @@ class Manager {
 				'mountpoint' => $mountPoint,
 				'owner' => $owner
 			);
-			$mount = new Mount(self::STORAGE, $mountPoint, $options, $this->storageLoader);
-			$this->mountManager->addMount($mount);
-			return $mount;
+			return $this->mountShare($options);
 		}
 	}
 
@@ -79,13 +78,23 @@ class Manager {
 			while ($row = $query->fetch()) {
 				$row['manager'] = $this;
 				$row['token'] = $row['share_token'];
-				$mount = new Mount(self::STORAGE, $row['mountpoint'], $row, $this->storageLoader);
-				$this->mountManager->addMount($mount);
+				$this->mountShare($row);
 			}
 		}
 	}
 
 	/**
+	 * @param array $data
+	 * @return Mount
+	 */
+	protected function mountShare($data) {
+		$mountPoint = '/' . $this->userSession->getUser()->getUID() . '/files' . $data['mountpoint'];
+		$mount = new Mount(self::STORAGE, $mountPoint, $data, $this->storageLoader);
+		$this->mountManager->addMount($mount);
+		return $mount;
+	}
+
+	/**
 	 * @return \OC\Files\Mount\Manager
 	 */
 	public function getMountManager() {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list