From a44baaf8eb9584c3525584ff893bad47adb0d375 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Fri, 2 May 2014 11:27:40 +0200
Subject: [PATCH] add remote/add external shares to manager

---
 apps/files_sharing/lib/external/manager.php | 27 +++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php
index ffb673723a..d82cb83a6e 100644
--- a/apps/files_sharing/lib/external/manager.php
+++ b/apps/files_sharing/lib/external/manager.php
@@ -47,6 +47,27 @@ class Manager {
 		$this->storageLoader = $storageLoader;
 	}
 
+	public function addShare($remote, $token, $password, $name, $owner) {
+		$user = $this->userSession->getUser();
+		if ($user) {
+			$query = $this->connection->prepare('INSERT INTO *PREFIX*share_external(`remote`, `token`, `password`,
+				`name`, `owner`, `user`, `mountpoint`, `mountpoint_hash`) VALUES(?, ?, ?, ?, ?, ?, ?, ?)');
+			$mountPoint = '/' . $user->getUID() . '/files/' . $name;
+			$hash = md5($mountPoint);
+			$query->execute(array($remote, $token, $password, $name, $owner, $user->getUID(), $mountPoint, $hash));
+
+			$options = array(
+				'remote' => $remote,
+				'token' => $token,
+				'password' => $password,
+				'mountpoint' => $mountPoint,
+				'owner' => $owner
+			);
+			$mount = new Mount(self::STORAGE, $mountPoint, $options, $this->storageLoader);
+			$this->mountManager->addMount($mount);
+		}
+	}
+
 	public function setup() {
 		$user = $this->userSession->getUser();
 		if ($user) {
@@ -87,4 +108,10 @@ class Manager {
 		$this->mountManager->addMount($mount);
 		$this->mountManager->removeMount($source . '/');
 	}
+
+	public function remoteShare($mountPoint) {
+		$hash = md5($mountPoint);
+		$query = $this->connection->prepare('DELETE FROM *PREFIX*share_external WHERE `mountpoint_hash` = ?');
+		$query->execute(array($hash));
+	}
 }
-- 
GitLab