[Pkg-owncloud-commits] [owncloud] 104/223: Add coments to database and dont use sql keywords as table names

David Prévot taffit at moszumanska.debian.org
Sun Jun 22 01:54:12 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 0156ef816650ec73d033ebba2107cf237d6301e3
Author: Robin Appelman <icewind at owncloud.com>
Date:   Wed May 7 13:19:41 2014 +0200

    Add coments to database and dont use sql keywords as table names
---
 apps/files_sharing/appinfo/database.xml     | 12 ++++++++++--
 apps/files_sharing/lib/external/manager.php |  7 ++++---
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml
index b9c0d88..e556882 100644
--- a/apps/files_sharing/appinfo/database.xml
+++ b/apps/files_sharing/appinfo/database.xml
@@ -19,49 +19,57 @@
 				<name>remote</name>
 				<type>text</type>
 				<notnull>true</notnull>
-				<length>128</length>
+				<length>512</length>
+				<comments>Url of the remove owncloud instance</comments>
 			</field>
 			<field>
-				<name>token</name>
+				<name>share_token</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>64</length>
+				<comments>Public share token</comments>
 			</field>
 			<field>
 				<name>password</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>64</length>
+				<comments>Optional password for the public share</comments>
 			</field>
 			<field>
 				<name>name</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>64</length>
+				<comments>Original name on the remote server</comments>
 			</field>
 			<field>
 				<name>owner</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>64</length>
+				<comments>User that owns the public share on the remote server</comments>
 			</field>
 			<field>
 				<name>user</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>64</length>
+				<comments>Local user which added the external share</comments>
 			</field>
 			<field>
 				<name>mountpoint</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>512</length>
+				<comments>Full path where the share is mounted</comments>
 			</field>
 			<field>
 				<name>mountpoint_hash</name>
 				<type>text</type>
 				<notnull>true</notnull>
 				<length>32</length>
+				<comments>md5 hash of the mountpoint</comments>
 			</field>
 			<index>
 				<name>sh_external_user</name>
diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php
index d82cb83..fa00053 100644
--- a/apps/files_sharing/lib/external/manager.php
+++ b/apps/files_sharing/lib/external/manager.php
@@ -50,7 +50,7 @@ class Manager {
 	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`,
+			$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;
 			$hash = md5($mountPoint);
@@ -71,12 +71,13 @@ class Manager {
 	public function setup() {
 		$user = $this->userSession->getUser();
 		if ($user) {
-			$query = $this->connection->prepare('SELECT `remote`, `token`, `password`, `mountpoint`, `owner`
+			$query = $this->connection->prepare('SELECT `remote`, `share_token`, `password`, `mountpoint`, `owner`
 			FROM *PREFIX*share_external WHERE `user` = ?');
 			$query->execute(array($user->getUID()));
 
 			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);
 			}
@@ -109,7 +110,7 @@ class Manager {
 		$this->mountManager->removeMount($source . '/');
 	}
 
-	public function remoteShare($mountPoint) {
+	public function removeShare($mountPoint) {
 		$hash = md5($mountPoint);
 		$query = $this->connection->prepare('DELETE FROM *PREFIX*share_external WHERE `mountpoint_hash` = ?');
 		$query->execute(array($hash));

-- 
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