]> source.dussan.org Git - nextcloud-server.git/commitdiff
Correct checking item source for share from same owner when generating item target
authorMichael Gapczynski <mtgap@owncloud.com>
Tue, 2 Oct 2012 20:37:39 +0000 (16:37 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Tue, 2 Oct 2012 20:37:39 +0000 (16:37 -0400)
lib/public/share.php

index 42c4db615217e7135a9d77db93a562ee3ee31a38..e0488b8faf64e070c3bf504a9f2568087c17b45a 100644 (file)
-<?php
-/**
-* ownCloud
-*
-* @author Michael Gapczynski
-* @copyright 2012 Michael Gapczynski mtgap@owncloud.com
-*
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either
-* version 3 of the License, or any later version.
-*
-* This library 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 along with this library.  If not, see <http://www.gnu.org/licenses/>.
-*/
-namespace OCP;
-
-\OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser');
-\OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup');
-\OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup');
-\OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup');
-
-/**
-* This class provides the ability for apps to share their content between users.
-* Apps must create a backend class that implements OCP\Share_Backend and register it with this class.
-*/
-class Share {
-
-       const SHARE_TYPE_USER = 0;
-       const SHARE_TYPE_GROUP = 1;
-       const SHARE_TYPE_LINK = 3;
-       const SHARE_TYPE_EMAIL = 4;
-       const SHARE_TYPE_CONTACT = 5;
-       const SHARE_TYPE_REMOTE = 6;
-
-       /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask
-       * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE
-       * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE)
-       * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE
-       * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares
-       */
-       const PERMISSION_CREATE = 4;
-       const PERMISSION_READ = 1;
-       const PERMISSION_UPDATE = 2;
-       const PERMISSION_DELETE = 8;
-       const PERMISSION_SHARE = 16;
-
-       const FORMAT_NONE = -1;
-       const FORMAT_STATUSES = -2;
-       const FORMAT_SOURCES = -3;
-
-       private static $shareTypeUserAndGroups = -1;
-       private static $shareTypeGroupUserUnique = 2;
-       private static $backends = array();
-       private static $backendTypes = array();
-
-       /**
-       * @brief Register a sharing backend class that implements OCP\Share_Backend for an item type
-       * @param string Item type
-       * @param string Backend class
-       * @param string (optional) Depends on item type
-       * @param array (optional) List of supported file extensions if this item type depends on files
-       * @return Returns true if backend is registered or false if error
-       */
-       public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) {
-               if (self::isEnabled()) {
-                       if (!isset(self::$backendTypes[$itemType])) {
-                               self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions);
-                               if(count(self::$backendTypes) === 1) {
-                                       \OC_Util::addScript('core', 'share');
-                                       \OC_Util::addStyle('core', 'share');
-                               }
-                               return true;
-                       }
-                       \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN);
-               }
-               return false;
-       }
-
-       /**
-       * @brief Check if the Share API is enabled
-       * @return Returns true if enabled or false
-       *
-       * The Share API is enabled by default if not configured
-       *
-       */
-       public static function isEnabled() {
-               if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') {
-                       return true;
-               }
-               return false;
-       }
-
-       /**
-       * @brief Get the items of item type shared with the current user
-       * @param string Item type
-       * @param int Format (optional) Format type must be defined by the backend
-       * @param int Number of items to return (optional) Returns all by default
-       * @return Return depends on format
-       */
-       public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) {
-               return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections);
-       }
-
-       /**
-       * @brief Get the item of item type shared with the current user
-       * @param string Item type
-       * @param string Item target
-       * @param int Format (optional) Format type must be defined by the backend
-       * @return Return depends on format
-       */
-       public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {
-               return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections);
-       }
-
-       /**
-       * @brief Get the item of item type shared with the current user by source
-       * @param string Item type
-       * @param string Item source
-       * @param int Format (optional) Format type must be defined by the backend
-       * @return Return depends on format
-       */
-       public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {
-               return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true);
-       }
-
-       /**
-       * @brief Get the item of item type shared by a link
-       * @param string Item type
-       * @param string Item source
-       * @param string Owner of link
-       * @return Item
-       */
-       public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) {
-               return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1);
-       }
-
-       /**
-       * @brief Get the shared items of item type owned by the current user
-       * @param string Item type
-       * @param int Format (optional) Format type must be defined by the backend
-       * @param int Number of items to return (optional) Returns all by default
-       * @return Return depends on format
-       */
-       public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) {
-               return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections);
-       }
-
-       /**
-       * @brief Get the shared item of item type owned by the current user
-       * @param string Item type
-       * @param string Item source
-       * @param int Format (optional) Format type must be defined by the backend
-       * @return Return depends on format
-       */
-       public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {
-               return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections);
-       }
-
-       /**
-       * @brief Share an item with a user, group, or via private link
-       * @param string Item type
-       * @param string Item source
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-       * @param string User or group the item is being shared with
-       * @param int CRUDS permissions
-       * @return bool Returns true on success or false on failure
-       */
-       public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions) {
-               $uidOwner = \OC_User::getUser();
-               // Verify share type and sharing conditions are met
-               if ($shareType === self::SHARE_TYPE_USER) {
-                       if ($shareWith == $uidOwner) {
-                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the item owner';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       if (!\OC_User::userExists($shareWith)) {
-                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' does not exist';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       if (\OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global') == 'groups_only') {
-                               $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith));
-                               if (empty($inGroup)) {
-                                       $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of';
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                       }
-                       // Check if the item source is already shared with the user, either from the same owner or a different user
-                       if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) {
-                               // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user
-                               if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) {
-                                       $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith;
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                       }
-               } else if ($shareType === self::SHARE_TYPE_GROUP) {
-                       if (!\OC_Group::groupExists($shareWith)) {
-                               $message = 'Sharing '.$itemSource.' failed, because the group '.$shareWith.' does not exist';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       if (!\OC_Group::inGroup($uidOwner, $shareWith)) {
-                               $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith;
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       // Check if the item source is already shared with the group, either from the same owner or a different user
-                       // The check for each user in the group is done inside the put() function
-                       if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) {
-                               // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user
-                               if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) {
-                                       $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith;
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                       }
-                       // Convert share with into an array with the keys group and users
-                       $group = $shareWith;
-                       $shareWith = array();
-                       $shareWith['group'] = $group;
-                       $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner));
-               } else if ($shareType === self::SHARE_TYPE_LINK) {
-                       if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') {
-                               if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) {
-                                       // If password is set delete the old link
-                                       if (isset($shareWith)) {
-                                               self::delete($checkExists['id']);
-                                       } else {
-                                               $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link';
-                                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                               throw new \Exception($message);
-                                       }
-                               }
-                               // Generate hash of password - same method as user passwords
-                               if (isset($shareWith)) {
-                                       $forcePortable = (CRYPT_BLOWFISH != 1);
-                                       $hasher = new \PasswordHash(8, $forcePortable);
-                                       $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', ''));
-                               }
-                               return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions);
-                       }
-                       $message = 'Sharing '.$itemSource.' failed, because sharing with links is not allowed';
-                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                       throw new \Exception($message);
-                       return false;
-//             } else if ($shareType === self::SHARE_TYPE_CONTACT) {
-//                     if (!\OC_App::isEnabled('contacts')) {
-//                             $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled';
-//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-//                             return false;
-//                     }
-//                     $vcard = \OC_Contacts_App::getContactVCard($shareWith);
-//                     if (!isset($vcard)) {
-//                             $message = 'Sharing '.$itemSource.' failed, because the contact does not exist';
-//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-//                             throw new \Exception($message);
-//                     }
-//                     $details = \OC_Contacts_VCard::structureContact($vcard);
-//                     // TODO Add ownCloud user to contacts vcard
-//                     if (!isset($details['EMAIL'])) {
-//                             $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact';
-//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-//                             throw new \Exception($message);
-//                     }
-//                     return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions);
-               } else {
-                       // Future share types need to include their own conditions
-                       $message = 'Share type '.$shareType.' is not valid for '.$itemSource;
-                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                       throw new \Exception($message);
-               }
-               // If the item is a folder, scan through the folder looking for equivalent item types
-               if ($itemType == 'folder') {
-                       $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true);
-                       if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) {
-                               for ($i = 0; $i < count($files); $i++) {
-                                       $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource));
-                                       if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) {
-                                               // Continue scanning into child folders
-                                               array_push($files, $children);
-                                       } else {
-                                               // Check file extension for an equivalent item type to convert to
-                                               $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1));
-                                               foreach (self::$backends as $type => $backend) {
-                                                       if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) {
-                                                               $itemType = $type;
-                                                               break;
-                                                       }
-                                               }
-                                               // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted
-                                               self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder);
-                                       }
-                               }
-                               return true;
-                       }
-                       return false;
-               } else {
-                       // Put the item into the database
-                       return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions);
-               }
-       }
-
-       /**
-       * @brief Unshare an item from a user, group, or delete a private link
-       * @param string Item type
-       * @param string Item source
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-       * @param string User or group the item is being shared with
-       * @return Returns true on success or false on failure
-       */
-       public static function unshare($itemType, $itemSource, $shareType, $shareWith) {
-               if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) {
-                       self::delete($item['id']);
-                       return true;
-               }
-               return false;
-       }
-
-       /**
-       * @brief Unshare an item shared with the current user
-       * @param string Item type
-       * @param string Item target
-       * @return Returns true on success or false on failure
-       *
-       * Unsharing from self is not allowed for items inside collections
-       *
-       */
-       public static function unshareFromSelf($itemType, $itemTarget) {
-               if ($item = self::getItemSharedWith($itemType, $itemTarget)) {
-                       if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) {
-                               // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user
-                               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');
-                               $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target']));
-                               \OC_DB::insertid('*PREFIX*share');
-                               // Delete all reshares by this user of the group share
-                               self::delete($item['id'], true, \OC_User::getUser());
-                       } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) {
-                               // Set permission to 0 to prevent it from showing up for the user
-                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?');
-                               $query->execute(array(0, $item['id']));
-                               self::delete($item['id'], true);
-                       } else {
-                               self::delete($item['id']);
-                       }
-                       return true;
-               }
-               return false;
-       }
-
-       /**
-       * @brief Set the permissions of an item for a specific user or group
-       * @param string Item type
-       * @param string Item source
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-       * @param string User or group the item is being shared with
-       * @param int CRUDS permissions
-       * @return Returns true on success or false on failure
-       */
-       public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) {
-               if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) {
-                       // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item
-                       if (isset($item['parent'])) {
-                               $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1);
-                               $result = $query->execute(array($item['parent']))->fetchRow();
-                               if (~(int)$result['permissions'] & $permissions) {
-                                       $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser();
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                       }
-                       $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?');
-                       $query->execute(array($permissions, $item['id']));
-                       // Check if permissions were removed
-                       if ($item['permissions'] & ~$permissions) {
-                               // If share permission is removed all reshares must be deleted
-                               if (($item['permissions'] & self::PERMISSION_SHARE) && (~$permissions & self::PERMISSION_SHARE)) {
-                                       self::delete($item['id'], true);
-                               } else {
-                                       $ids = array();
-                                       $parents = array($item['id']);
-                                       while (!empty($parents)) {
-                                               $parents = "'".implode("','", $parents)."'";
-                                               $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')');
-                                               $result = $query->execute();
-                                               // Reset parents array, only go through loop again if items are found that need permissions removed
-                                               $parents = array();
-                                               while ($item = $result->fetchRow()) {
-                                                       // Check if permissions need to be removed
-                                                       if ($item['permissions'] & ~$permissions) {
-                                                               // Add to list of items that need permissions removed
-                                                               $ids[] = $item['id'];
-                                                               $parents[] = $item['id'];
-                                                       }
-                                               }
-                                       }
-                                       // Remove the permissions for all reshares of this item
-                                       if (!empty($ids)) {
-                                               $ids = "'".implode("','", $ids)."'";
-                                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')');
-                                               $query->execute(array($permissions));
-                                       }
-                               }
-                       }
-                       return true;
-               }
-               $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found';
-               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-               throw new \Exception($message);
-       }
-
-       public static function setExpirationDate($itemType, $itemSource, $date) {
-               if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) {
-                       if (!empty($items)) {
-                               if ($date == '') {
-                                       $date = null;
-                               } else {
-                                       $date = new \DateTime($date);
-                                       $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset());
-                               }
-                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?');
-                               foreach ($items as $item) {
-                                       $query->execute(array($date, $item['id']));
-                               }
-                               return true;
-                       }
-               }
-               return false;
-       }
-
-       /**
-       * @brief Get the backend class for the specified item type
-       * @param string Item type
-       * @return Sharing backend object
-       */
-       private static function getBackend($itemType) {
-               if (isset(self::$backends[$itemType])) {
-                       return self::$backends[$itemType];
-               } else if (isset(self::$backendTypes[$itemType]['class'])) {
-                       $class = self::$backendTypes[$itemType]['class'];
-                       if (class_exists($class)) {
-                               self::$backends[$itemType] = new $class;
-                               if (!(self::$backends[$itemType] instanceof Share_Backend)) {
-                                       $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend';
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                               return self::$backends[$itemType];
-                       } else {
-                               $message = 'Sharing backend '.$class.' not found';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-               }
-               $message = 'Sharing backend for '.$itemType.' not found';
-               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-               throw new \Exception($message);
-       }
-
-       /**
-       * @brief Get a list of collection item types for the specified item type
-       * @param string Item type
-       * @return array
-       */
-       private static function getCollectionItemTypes($itemType) {
-               $collectionTypes = array($itemType);
-               foreach (self::$backendTypes as $type => $backend) {
-                       if (in_array($backend['collectionOf'], $collectionTypes)) {
-                               $collectionTypes[] = $type;
-                       }
-               }
-               if (!self::getBackend($itemType) instanceof Share_Backend_Collection) {
-                       unset($collectionTypes[0]);
-               }
-               // Return array if collections were found or the item type is a collection itself - collections can be inside collections
-               if (count($collectionTypes) > 0) {
-                       return $collectionTypes;
-               }
-               return false;
-       }
-
-       /**
-       * @brief Get shared items from the database
-       * @param string Item type
-       * @param string Item source or target (optional)
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique
-       * @param string User or group the item is being shared with
-       * @param string User that is the owner of shared items (optional)
-       * @param int Format to convert items to with formatItems()
-       * @param mixed Parameters to pass to formatItems()
-       * @param int Number of items to return, -1 to return all matches (optional)
-       * @param bool Include collection item types (optional)
-       * @return mixed
-       *
-       * See public functions getItem(s)... for parameter usage
-       *
-       */
-       private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) {
-               if (!self::isEnabled()) {
-                       if ($limit == 1 || (isset($uidOwner) && isset($item))) {
-                               return false;
-                       } else {
-                               return array();
-                       }
-               }
-               $backend = self::getBackend($itemType);
-               // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache
-               if ($itemType == 'file' || $itemType == 'folder') {
-                       $root = \OC_Filesystem::getRoot();
-                       $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`';
-                       if (!isset($item)) {
-                               $where .= ' WHERE `file_target` IS NOT NULL';
-                       }
-                       $fileDependent = true;
-                       $queryArgs = array();
-               } else {
-                       $fileDependent = false;
-                       $root = '';
-                       if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) {
-                               // If includeCollections is true, find collections of this item type, e.g. a music album contains songs
-                               if (!in_array($itemType, $collectionTypes)) {
-                                       $itemTypes = array_merge(array($itemType), $collectionTypes);
-                               } else {
-                                       $itemTypes = $collectionTypes;
-                               }
-                               $placeholders = join(',', array_fill(0, count($itemTypes), '?'));
-                               $where .= ' WHERE item_type IN ('.$placeholders.'))';
-                               $queryArgs = $itemTypes;
-                       } else {
-                               $where = ' WHERE `item_type` = ?';
-                               $queryArgs = array($itemType);
-                       }
-               }
-               if (isset($shareType)) {
-                       // Include all user and group items
-                       if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) {
-                               $where .= ' AND `share_type` IN (?,?,?)';
-                               $queryArgs[] = self::SHARE_TYPE_USER;
-                               $queryArgs[] = self::SHARE_TYPE_GROUP;
-                               $queryArgs[] = self::$shareTypeGroupUserUnique;
-                               $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));
-                               $placeholders = join(',', array_fill(0, count($userAndGroups), '?'));
-                               $where .= ' AND `share_with` IN ('.$placeholders.')';
-                               $queryArgs = array_merge($queryArgs, $userAndGroups);
-                               // Don't include own group shares
-                               $where .= ' AND `uid_owner` != ?';
-                               $queryArgs[] = $shareWith;
-                       } else {
-                               $where .= ' AND `share_type` = ?';
-                               $queryArgs[] = $shareType;
-                               if (isset($shareWith)) {
-                                       $where .= ' AND `share_with` = ?';
-                                       $queryArgs[] = $shareWith;
-                               }
-                       }
-               }
-               if (isset($uidOwner)) {
-                       $where .= ' AND `uid_owner` = ?';
-                       $queryArgs[] = $uidOwner;
-                       if (!isset($shareType)) {
-                               // Prevent unique user targets for group shares from being selected
-                               $where .= ' AND `share_type` != ?';
-                               $queryArgs[] = self::$shareTypeGroupUserUnique;
-                       }
-                       if ($itemType == 'file' || $itemType == 'folder') {
-                               $column = 'file_source';
-                       } else {
-                               $column = 'item_source';
-                       }
-               } else {
-                       if ($itemType == 'file' || $itemType == 'folder') {
-                               $column = 'file_target';
-                       } else {
-                               $column = 'item_target';
-                       }
-               }
-               if (isset($item)) {
-                       if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) {
-                               $where .= ' AND (';
-                       } else {
-                               $where .= ' AND';
-                       }
-                       // If looking for own shared items, check item_source else check item_target
-                       if (isset($uidOwner) || $itemShareWithBySource) {
-                               // If item type is a file, file source needs to be checked in case the item was converted
-                               if ($itemType == 'file' || $itemType == 'folder') {
-                                       $where .= ' `file_source` = ?';
-                                       $column = 'file_source';
-                               } else {
-                                       $where .= ' `item_source` = ?';
-                                       $column = 'item_source';
-                               }
-                       } else {
-                               if ($itemType == 'file' || $itemType == 'folder') {
-                                       $where .= ' `file_target` = ?';
-                                       $item = \OC_Filesystem::normalizePath($item);
-                               } else {
-                                       $where .= ' `item_target` = ?';
-                               }
-                       }
-                       $queryArgs[] = $item;
-                       if ($includeCollections && $collectionTypes) {
-                               $placeholders = join(',', array_fill(0, count($collectionTypes), '?'));
-                               $where .= ' OR item_type IN ('.$placeholders.'))';
-                               $queryArgs = array_merge($queryArgs, $collectionTypes);
-                       }
-               }
-               if ($limit != -1 && !$includeCollections) {
-                       if ($shareType == self::$shareTypeUserAndGroups) {
-                               // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database
-                               // If the limit is not 1, the filtering can be done later
-                               $where .= ' ORDER BY `*PREFIX*share`.`id` DESC';
-                       }
-                       // The limit must be at least 3, because filtering needs to be done
-                       if ($limit < 3) {
-                               $queryLimit = 3;
-                       } else {
-                               $queryLimit = $limit;
-                       }
-               } else {
-                       $queryLimit = null;
-               }
-               // TODO Optimize selects
-               if ($format == self::FORMAT_STATUSES) {
-                       if ($itemType == 'file' || $itemType == 'folder') {
-                               $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`';
-                       } else {
-                               $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`';
-                       }
-               } else {
-                       if (isset($uidOwner)) {
-                               if ($itemType == 'file' || $itemType == 'folder') {
-                                       $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`';
-                               } else {
-                                       $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`';
-                               }
-                       } else {
-                               if ($fileDependent) {
-                                       if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) {
-                                               $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`';
-                                       } else {
-                                               $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`';
-                                       }
-                               } else {
-                                       $select = '*';
-                               }
-                       }
-               }
-               $root = strlen($root);
-               $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit);
-               $result = $query->execute($queryArgs);
-               $items = array();
-               $targets = array();
-               while ($row = $result->fetchRow()) {
-                       // Filter out duplicate group shares for users with unique targets
-                       if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) {
-                               $row['share_type'] = self::SHARE_TYPE_GROUP;
-                               $row['share_with'] = $items[$row['parent']]['share_with'];
-                               // Remove the parent group share
-                               unset($items[$row['parent']]);
-                               if ($row['permissions'] == 0) {
-                                       continue;
-                               }
-                       } else if (!isset($uidOwner)) {
-                               // Check if the same target already exists
-                               if (isset($targets[$row[$column]])) {
-                                       // Check if the same owner shared with the user twice through a group and user share - this is allowed
-                                       $id = $targets[$row[$column]];
-                                       if ($items[$id]['uid_owner'] == $row['uid_owner']) {
-                                               // Switch to group share type to ensure resharing conditions aren't bypassed
-                                               if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
-                                                       $items[$id]['share_type'] = self::SHARE_TYPE_GROUP;
-                                                       $items[$id]['share_with'] = $row['share_with'];
-                                               }
-                                               // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing
-                                               if (~(int)$items[$id]['permissions'] & self::PERMISSION_SHARE && (int)$row['permissions'] & self::PERMISSION_SHARE) {
-                                                       $items[$row['id']] = $items[$id];
-                                                       unset($items[$id]);
-                                                       $id = $row['id'];
-                                               }
-                                               // Combine the permissions for the item
-                                               $items[$id]['permissions'] |= (int)$row['permissions'];
-                                               continue;
-                                       }
-                               } else {
-                                       $targets[$row[$column]] = $row['id'];
-                               }
-                       }
-                       // Remove root from file source paths if retrieving own shared items
-                       if (isset($uidOwner) && isset($row['path'])) {
-                               if (isset($row['parent'])) {
-                                       $row['path'] = '/Shared/'.basename($row['path']);
-                               } else {
-                                       $row['path'] = substr($row['path'], $root);
-                               }
-                       }
-                       if (isset($row['expiration'])) {
-                               $time = new \DateTime();
-                               if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) {
-                                       self::delete($row['id']);
-                                       continue;
-                               }
-                       }
-                       $items[$row['id']] = $row;
-               }
-               if (!empty($items)) {
-                       $collectionItems = array();
-                       foreach ($items as &$row) {
-                               // Return only the item instead of a 2-dimensional array
-                               if ($limit == 1 && $row['item_type'] == $itemType && $row[$column] == $item) {
-                                       if ($format == self::FORMAT_NONE) {
-                                               return $row;
-                                       } else {
-                                               break;
-                                       }
-                               }
-                               // Check if this is a collection of the requested item type
-                               if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) {
-                                       if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) {
-                                               // Collections can be inside collections, check if the item is a collection
-                                               if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) {
-                                                       $collectionItems[] = $row;
-                                               } else {
-                                                       $collection = array();
-                                                       $collection['item_type'] = $row['item_type'];
-                                                       if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
-                                                               $collection['path'] = basename($row['path']);
-                                                       }
-                                                       $row['collection'] = $collection;
-                                                       // Fetch all of the children sources
-                                                       $children = $collectionBackend->getChildren($row[$column]);
-                                                       foreach ($children as $child) {
-                                                               $childItem = $row;
-                                                               $childItem['item_type'] = $itemType;
-                                                               if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') {
-                                                                       $childItem['item_source'] = $child['source'];
-                                                                       $childItem['item_target'] = $child['target'];
-                                                               }
-                                                               if ($backend instanceof Share_Backend_File_Dependent) {
-                                                                       if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
-                                                                               $childItem['file_source'] = $child['source'];
-                                                                       } else {
-                                                                               $childItem['file_source'] = \OC_FileCache::getId($child['file_path']);
-                                                                       }
-                                                                       $childItem['file_target'] = \OC_Filesystem::normalizePath($child['file_path']);
-                                                               }
-                                                               if (isset($item)) {
-                                                                       if ($childItem[$column] == $item) {
-                                                                               // Return only the item instead of a 2-dimensional array
-                                                                               if ($limit == 1) {
-                                                                                       if ($format == self::FORMAT_NONE) {
-                                                                                               return $childItem;
-                                                                                       } else {
-                                                                                               // Unset the items array and break out of both loops
-                                                                                               $items = array();
-                                                                                               $items[] = $childItem;
-                                                                                               break 2;
-                                                                                       }
-                                                                               } else {
-                                                                                       $collectionItems[] = $childItem;
-                                                                               }
-                                                                       }
-                                                               } else {
-                                                                       $collectionItems[] = $childItem;
-                                                               }
-                                                       }
-                                               }
-                                       }
-                                       // Remove collection item
-                                       unset($items[$row['id']]);
-                               }
-                       }
-                       if (!empty($collectionItems)) {
-                               $items = array_merge($items, $collectionItems);
-                       }
-                       if ($format == self::FORMAT_NONE) {
-                               return $items;
-                       } else if ($format == self::FORMAT_STATUSES) {
-                               $statuses = array();
-                               // Switch column to path for files and folders, used for determining statuses inside of folders
-                               if ($itemType == 'file' || $itemType == 'folder') {
-                                       $column = 'path';
-                               }
-                               foreach ($items as $item) {
-                                       if ($item['share_type'] == self::SHARE_TYPE_LINK) {
-                                               $statuses[$item[$column]] = true;
-                                       } else if (!isset($statuses[$item[$column]])) {
-                                               $statuses[$item[$column]] = false;
-                                       }
-                               }
-                               return $statuses;
-                       } else {
-                               return $backend->formatItems($items, $format, $parameters);
-                       }
-               } else if ($limit == 1 || (isset($uidOwner) && isset($item))) {
-                       return false;
-               }
-               return array();
-       }
-
-       /**
-       * @brief Put shared item into the database
-       * @param string Item type
-       * @param string Item source
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-       * @param string User or group the item is being shared with
-       * @param int CRUDS permissions
-       * @param bool|array Parent folder target (optional)
-       * @return bool Returns true on success or false on failure
-       */
-       private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null) {
-               $backend = self::getBackend($itemType);
-               // Check if this is a reshare
-               if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) {
-                       // Check if attempting to share back to owner
-                       if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) {
-                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       // Check if share permissions is granted
-                       if ((int)$checkReshare['permissions'] & self::PERMISSION_SHARE) {
-                               if (~(int)$checkReshare['permissions'] & $permissions) {
-                                       $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner;
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               } else {
-                                       // TODO Don't check if inside folder
-                                       $parent = $checkReshare['id'];
-                                       $itemSource = $checkReshare['item_source'];
-                                       $fileSource = $checkReshare['file_source'];
-                                       $suggestedItemTarget = $checkReshare['item_target'];
-                                       $suggestedFileTarget = $checkReshare['file_target'];
-                                       $filePath = $checkReshare['file_target'];
-                               }
-                       } else {
-                               $message = 'Sharing '.$itemSource.' failed, because resharing is not allowed';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-               } else {
-                       $parent = null;
-                       $suggestedItemTarget = null;
-                       $suggestedFileTarget = null;
-                       if (!$backend->isValidSource($itemSource, $uidOwner)) {
-                               $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source';
-                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                               throw new \Exception($message);
-                       }
-                       $parent = null;
-                       if ($backend instanceof Share_Backend_File_Dependent) {
-                               $filePath = $backend->getFilePath($itemSource, $uidOwner);
-                               if ($itemType == 'file' || $itemType == 'folder') {
-                                       $fileSource = $itemSource;
-                               } else {
-                                       $fileSource = \OC_FileCache::getId($filePath);
-                               }
-                               if ($fileSource == -1) {
-                                       $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache';
-                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-                                       throw new \Exception($message);
-                               }
-                       } else {
-                               $filePath = null;
-                               $fileSource = null;
-                       }
-               }
-               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');
-               // Share with a group
-               if ($shareType == self::SHARE_TYPE_GROUP) {
-                       $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget);
-                       if (isset($fileSource)) {
-                               if ($parentFolder) {
-                                       if ($parentFolder === true) {
-                                               $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget);
-                                               // Set group default file target for future use
-                                               $parentFolders[0]['folder'] = $groupFileTarget;
-                                       } else {
-                                               // Get group default file target
-                                               $groupFileTarget = $parentFolder[0]['folder'].$itemSource;
-                                               $parent = $parentFolder[0]['id'];
-                                       }
-                               } else {
-                                       $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget);
-                               }
-                       } else {
-                               $groupFileTarget = null;
-                       }
-                       $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget));
-                       // Save this id, any extra rows for this group share will need to reference it
-                       $parent = \OC_DB::insertid('*PREFIX*share');
-                       // Loop through all users of this group in case we need to add an extra row
-                       foreach ($shareWith['users'] as $uid) {
-                               $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent);
-                               if (isset($fileSource)) {
-                                       if ($parentFolder) {
-                                               if ($parentFolder === true) {
-                                                       $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent);
-                                                       if ($fileTarget != $groupFileTarget) {
-                                                               $parentFolders[$uid]['folder'] = $fileTarget;
-                                                       }
-                                               } else if (isset($parentFolder[$uid])) {
-                                                       $fileTarget = $parentFolder[$uid]['folder'].$itemSource;
-                                                       $parent = $parentFolder[$uid]['id'];
-                                               }
-                                       } else {
-                                               $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent);
-                                       }
-                               } else {
-                                       $fileTarget = null;
-                               }
-                               // Insert an extra row for the group share if the item or file target is unique for this user
-                               if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) {
-                                       $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget));
-                                       \OC_DB::insertid('*PREFIX*share');
-                               }
-                       }
-                       if ($parentFolder === true) {
-                               // Return parent folders to preserve file target paths for potential children
-                               return $parentFolders;
-                       }
-               } else {
-                       $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget);
-                       if (isset($fileSource)) {
-                               if ($parentFolder) {
-                                       if ($parentFolder === true) {
-                                               $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget);
-                                               $parentFolders['folder'] = $fileTarget;
-                                       } else {
-                                               $fileTarget = $parentFolder['folder'].$itemSource;
-                                               $parent = $parentFolder['id'];
-                                       }
-                               } else {
-                                       $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget);
-                               }
-                       } else {
-                               $fileTarget = null;
-                       }
-                       $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget));
-                       $id = \OC_DB::insertid('*PREFIX*share');
-                       if ($parentFolder === true) {
-                               $parentFolders['id'] = $id;
-                               // Return parent folder to preserve file target paths for potential children
-                               return $parentFolders;
-                       }
-               }
-               return true;
-       }
-
-       /**
-       * @brief Generate a unique target for the item
-       * @param string Item type
-       * @param string Item source
-       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-       * @param string User or group the item is being shared with
-       * @param string The suggested target originating from a reshare (optional)
-       * @param int The id of the parent group share (optional)
-       * @return string Item target
-       */
-       private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) {
-               $backend = self::getBackend($itemType);
-               if ($shareType == self::SHARE_TYPE_LINK) {
-                       if (isset($suggestedTarget)) {
-                               return $suggestedTarget;
-                       }
-                       return $backend->generateTarget($itemSource, false);
-               } else {
-                       if ($itemType == 'file' || $itemType == 'folder') {
-                               $column = 'file_target';
-                       } else {
-                               $column = 'item_target';
-                       }
-                       if ($shareType == self::SHARE_TYPE_USER) {
-                               // Share with is a user, so set share type to user and groups
-                               $shareType = self::$shareTypeUserAndGroups;
-                               $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));
-                       } else {
-                               $userAndGroups = false;
-                       }
-                       $exclude = null;
-                       // Backend has 3 opportunities to generate a unique target
-                       for ($i = 0; $i < 2; $i++) {
-                               // Check if suggested target exists first
-                               if ($i == 0 && isset($suggestedTarget)) {
-                                       $target = $suggestedTarget;
-                               } else {
-                                       if ($shareType == self::SHARE_TYPE_GROUP) {
-                                               $target = $backend->generateTarget($itemSource, false, $exclude);
-                                       } else {
-                                               $target = $backend->generateTarget($itemSource, $shareWith, $exclude);
-                                       }
-                                       if (is_array($exclude) && in_array($target, $exclude)) {
-                                               break;
-                                       }
-                               }
-                               // Check if target already exists
-                               $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith);
-
-                               if ( !empty($checkTarget) ) {
-                                       foreach ($checkTarget as $item) {
-                                               // Skip item if it is the group parent row
-                                               if (isset($groupParent) && $item['id'] == $groupParent) {
-                                                       if (count($checkTarget) == 1) {
-                                                               return $target;
-                                                       } else {
-                                                               continue;
-                                                       }
-                                               }
-                                               if ($item['uid_owner'] == $uidOwner && $item['item_source'] == \OC_FileCache::getId($itemSource) ) {
+<?php\r
+/**\r
+* ownCloud\r
+*\r
+* @author Michael Gapczynski\r
+* @copyright 2012 Michael Gapczynski mtgap@owncloud.com\r
+*\r
+* This library is free software; you can redistribute it and/or\r
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE\r
+* License as published by the Free Software Foundation; either\r
+* version 3 of the License, or any later version.\r
+*\r
+* This library is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.\r
+*\r
+* You should have received a copy of the GNU Affero General Public\r
+* License along with this library.  If not, see <http://www.gnu.org/licenses/>.\r
+*/\r
+namespace OCP;\r
+\r
+\OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser');\r
+\OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup');\r
+\OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup');\r
+\OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup');\r
+\r
+/**\r
+* This class provides the ability for apps to share their content between users.\r
+* Apps must create a backend class that implements OCP\Share_Backend and register it with this class.\r
+*/\r
+class Share {\r
+\r
+       const SHARE_TYPE_USER = 0;\r
+       const SHARE_TYPE_GROUP = 1;\r
+       const SHARE_TYPE_LINK = 3;\r
+       const SHARE_TYPE_EMAIL = 4;\r
+       const SHARE_TYPE_CONTACT = 5;\r
+       const SHARE_TYPE_REMOTE = 6;\r
+\r
+       /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask\r
+       * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE\r
+       * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE)\r
+       * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE\r
+       * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares\r
+       */\r
+       const PERMISSION_CREATE = 4;\r
+       const PERMISSION_READ = 1;\r
+       const PERMISSION_UPDATE = 2;\r
+       const PERMISSION_DELETE = 8;\r
+       const PERMISSION_SHARE = 16;\r
+\r
+       const FORMAT_NONE = -1;\r
+       const FORMAT_STATUSES = -2;\r
+       const FORMAT_SOURCES = -3;\r
+\r
+       private static $shareTypeUserAndGroups = -1;\r
+       private static $shareTypeGroupUserUnique = 2;\r
+       private static $backends = array();\r
+       private static $backendTypes = array();\r
+\r
+       /**\r
+       * @brief Register a sharing backend class that implements OCP\Share_Backend for an item type\r
+       * @param string Item type\r
+       * @param string Backend class\r
+       * @param string (optional) Depends on item type\r
+       * @param array (optional) List of supported file extensions if this item type depends on files\r
+       * @return Returns true if backend is registered or false if error\r
+       */\r
+       public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) {\r
+               if (self::isEnabled()) {\r
+                       if (!isset(self::$backendTypes[$itemType])) {\r
+                               self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions);\r
+                               if(count(self::$backendTypes) === 1) {\r
+                                       \OC_Util::addScript('core', 'share');\r
+                                       \OC_Util::addStyle('core', 'share');\r
+                               }\r
+                               return true;\r
+                       }\r
+                       \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN);\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Check if the Share API is enabled\r
+       * @return Returns true if enabled or false\r
+       *\r
+       * The Share API is enabled by default if not configured\r
+       *\r
+       */\r
+       public static function isEnabled() {\r
+               if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') {\r
+                       return true;\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Get the items of item type shared with the current user\r
+       * @param string Item type\r
+       * @param int Format (optional) Format type must be defined by the backend\r
+       * @param int Number of items to return (optional) Returns all by default\r
+       * @return Return depends on format\r
+       */\r
+       public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) {\r
+               return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections);\r
+       }\r
+\r
+       /**\r
+       * @brief Get the item of item type shared with the current user\r
+       * @param string Item type\r
+       * @param string Item target\r
+       * @param int Format (optional) Format type must be defined by the backend\r
+       * @return Return depends on format\r
+       */\r
+       public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {\r
+               return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections);\r
+       }\r
+\r
+       /**\r
+       * @brief Get the item of item type shared with the current user by source\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int Format (optional) Format type must be defined by the backend\r
+       * @return Return depends on format\r
+       */\r
+       public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {\r
+               return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true);\r
+       }\r
+\r
+       /**\r
+       * @brief Get the item of item type shared by a link\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param string Owner of link\r
+       * @return Item\r
+       */\r
+       public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) {\r
+               return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1);\r
+       }\r
+\r
+       /**\r
+       * @brief Get the shared items of item type owned by the current user\r
+       * @param string Item type\r
+       * @param int Format (optional) Format type must be defined by the backend\r
+       * @param int Number of items to return (optional) Returns all by default\r
+       * @return Return depends on format\r
+       */\r
+       public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) {\r
+               return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections);\r
+       }\r
+\r
+       /**\r
+       * @brief Get the shared item of item type owned by the current user\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int Format (optional) Format type must be defined by the backend\r
+       * @return Return depends on format\r
+       */\r
+       public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) {\r
+               return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections);\r
+       }\r
+\r
+       /**\r
+       * @brief Share an item with a user, group, or via private link\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK\r
+       * @param string User or group the item is being shared with\r
+       * @param int CRUDS permissions\r
+       * @return bool Returns true on success or false on failure\r
+       */\r
+       public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions) {\r
+               $uidOwner = \OC_User::getUser();\r
+               // Verify share type and sharing conditions are met\r
+               if ($shareType === self::SHARE_TYPE_USER) {\r
+                       if ($shareWith == $uidOwner) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the item owner';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       if (!\OC_User::userExists($shareWith)) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' does not exist';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       if (\OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global') == 'groups_only') {\r
+                               $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith));\r
+                               if (empty($inGroup)) {\r
+                                       $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of';\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                       }\r
+                       // Check if the item source is already shared with the user, either from the same owner or a different user\r
+                       if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) {\r
+                               // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user\r
+                               if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) {\r
+                                       $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith;\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                       }\r
+               } else if ($shareType === self::SHARE_TYPE_GROUP) {\r
+                       if (!\OC_Group::groupExists($shareWith)) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because the group '.$shareWith.' does not exist';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       if (!\OC_Group::inGroup($uidOwner, $shareWith)) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith;\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       // Check if the item source is already shared with the group, either from the same owner or a different user\r
+                       // The check for each user in the group is done inside the put() function\r
+                       if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) {\r
+                               // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user\r
+                               if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) {\r
+                                       $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith;\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                       }\r
+                       // Convert share with into an array with the keys group and users\r
+                       $group = $shareWith;\r
+                       $shareWith = array();\r
+                       $shareWith['group'] = $group;\r
+                       $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner));\r
+               } else if ($shareType === self::SHARE_TYPE_LINK) {\r
+                       if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') {\r
+                               if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) {\r
+                                       // If password is set delete the old link\r
+                                       if (isset($shareWith)) {\r
+                                               self::delete($checkExists['id']);\r
+                                       } else {\r
+                                               $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link';\r
+                                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                               throw new \Exception($message);\r
+                                       }\r
+                               }\r
+                               // Generate hash of password - same method as user passwords\r
+                               if (isset($shareWith)) {\r
+                                       $forcePortable = (CRYPT_BLOWFISH != 1);\r
+                                       $hasher = new \PasswordHash(8, $forcePortable);\r
+                                       $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', ''));\r
+                               }\r
+                               return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions);\r
+                       }\r
+                       $message = 'Sharing '.$itemSource.' failed, because sharing with links is not allowed';\r
+                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                       throw new \Exception($message);\r
+                       return false;\r
+//             } else if ($shareType === self::SHARE_TYPE_CONTACT) {\r
+//                     if (!\OC_App::isEnabled('contacts')) {\r
+//                             $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled';\r
+//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+//                             return false;\r
+//                     }\r
+//                     $vcard = \OC_Contacts_App::getContactVCard($shareWith);\r
+//                     if (!isset($vcard)) {\r
+//                             $message = 'Sharing '.$itemSource.' failed, because the contact does not exist';\r
+//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+//                             throw new \Exception($message);\r
+//                     }\r
+//                     $details = \OC_Contacts_VCard::structureContact($vcard);\r
+//                     // TODO Add ownCloud user to contacts vcard\r
+//                     if (!isset($details['EMAIL'])) {\r
+//                             $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact';\r
+//                             \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+//                             throw new \Exception($message);\r
+//                     }\r
+//                     return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions);\r
+               } else {\r
+                       // Future share types need to include their own conditions\r
+                       $message = 'Share type '.$shareType.' is not valid for '.$itemSource;\r
+                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                       throw new \Exception($message);\r
+               }\r
+               // If the item is a folder, scan through the folder looking for equivalent item types\r
+               if ($itemType == 'folder') {\r
+                       $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true);\r
+                       if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) {\r
+                               for ($i = 0; $i < count($files); $i++) {\r
+                                       $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource));\r
+                                       if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) {\r
+                                               // Continue scanning into child folders\r
+                                               array_push($files, $children);\r
+                                       } else {\r
+                                               // Check file extension for an equivalent item type to convert to\r
+                                               $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1));\r
+                                               foreach (self::$backends as $type => $backend) {\r
+                                                       if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) {\r
+                                                               $itemType = $type;\r
+                                                               break;\r
+                                                       }\r
+                                               }\r
+                                               // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted\r
+                                               self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder);\r
+                                       }\r
+                               }\r
+                               return true;\r
+                       }\r
+                       return false;\r
+               } else {\r
+                       // Put the item into the database\r
+                       return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions);\r
+               }\r
+       }\r
+\r
+       /**\r
+       * @brief Unshare an item from a user, group, or delete a private link\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK\r
+       * @param string User or group the item is being shared with\r
+       * @return Returns true on success or false on failure\r
+       */\r
+       public static function unshare($itemType, $itemSource, $shareType, $shareWith) {\r
+               if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) {\r
+                       self::delete($item['id']);\r
+                       return true;\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Unshare an item shared with the current user\r
+       * @param string Item type\r
+       * @param string Item target\r
+       * @return Returns true on success or false on failure\r
+       *\r
+       * Unsharing from self is not allowed for items inside collections\r
+       *\r
+       */\r
+       public static function unshareFromSelf($itemType, $itemTarget) {\r
+               if ($item = self::getItemSharedWith($itemType, $itemTarget)) {\r
+                       if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) {\r
+                               // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user\r
+                               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');\r
+                               $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target']));\r
+                               \OC_DB::insertid('*PREFIX*share');\r
+                               // Delete all reshares by this user of the group share\r
+                               self::delete($item['id'], true, \OC_User::getUser());\r
+                       } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) {\r
+                               // Set permission to 0 to prevent it from showing up for the user\r
+                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?');\r
+                               $query->execute(array(0, $item['id']));\r
+                               self::delete($item['id'], true);\r
+                       } else {\r
+                               self::delete($item['id']);\r
+                       }\r
+                       return true;\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Set the permissions of an item for a specific user or group\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK\r
+       * @param string User or group the item is being shared with\r
+       * @param int CRUDS permissions\r
+       * @return Returns true on success or false on failure\r
+       */\r
+       public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) {\r
+               if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) {\r
+                       // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item\r
+                       if (isset($item['parent'])) {\r
+                               $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1);\r
+                               $result = $query->execute(array($item['parent']))->fetchRow();\r
+                               if (~(int)$result['permissions'] & $permissions) {\r
+                                       $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser();\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                       }\r
+                       $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?');\r
+                       $query->execute(array($permissions, $item['id']));\r
+                       // Check if permissions were removed\r
+                       if ($item['permissions'] & ~$permissions) {\r
+                               // If share permission is removed all reshares must be deleted\r
+                               if (($item['permissions'] & self::PERMISSION_SHARE) && (~$permissions & self::PERMISSION_SHARE)) {\r
+                                       self::delete($item['id'], true);\r
+                               } else {\r
+                                       $ids = array();\r
+                                       $parents = array($item['id']);\r
+                                       while (!empty($parents)) {\r
+                                               $parents = "'".implode("','", $parents)."'";\r
+                                               $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')');\r
+                                               $result = $query->execute();\r
+                                               // Reset parents array, only go through loop again if items are found that need permissions removed\r
+                                               $parents = array();\r
+                                               while ($item = $result->fetchRow()) {\r
+                                                       // Check if permissions need to be removed\r
+                                                       if ($item['permissions'] & ~$permissions) {\r
+                                                               // Add to list of items that need permissions removed\r
+                                                               $ids[] = $item['id'];\r
+                                                               $parents[] = $item['id'];\r
+                                                       }\r
+                                               }\r
+                                       }\r
+                                       // Remove the permissions for all reshares of this item\r
+                                       if (!empty($ids)) {\r
+                                               $ids = "'".implode("','", $ids)."'";\r
+                                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')');\r
+                                               $query->execute(array($permissions));\r
+                                       }\r
+                               }\r
+                       }\r
+                       return true;\r
+               }\r
+               $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found';\r
+               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+               throw new \Exception($message);\r
+       }\r
+\r
+       public static function setExpirationDate($itemType, $itemSource, $date) {\r
+               if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) {\r
+                       if (!empty($items)) {\r
+                               if ($date == '') {\r
+                                       $date = null;\r
+                               } else {\r
+                                       $date = new \DateTime($date);\r
+                                       $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset());\r
+                               }\r
+                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?');\r
+                               foreach ($items as $item) {\r
+                                       $query->execute(array($date, $item['id']));\r
+                               }\r
+                               return true;\r
+                       }\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Get the backend class for the specified item type\r
+       * @param string Item type\r
+       * @return Sharing backend object\r
+       */\r
+       private static function getBackend($itemType) {\r
+               if (isset(self::$backends[$itemType])) {\r
+                       return self::$backends[$itemType];\r
+               } else if (isset(self::$backendTypes[$itemType]['class'])) {\r
+                       $class = self::$backendTypes[$itemType]['class'];\r
+                       if (class_exists($class)) {\r
+                               self::$backends[$itemType] = new $class;\r
+                               if (!(self::$backends[$itemType] instanceof Share_Backend)) {\r
+                                       $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend';\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                               return self::$backends[$itemType];\r
+                       } else {\r
+                               $message = 'Sharing backend '.$class.' not found';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+               }\r
+               $message = 'Sharing backend for '.$itemType.' not found';\r
+               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+               throw new \Exception($message);\r
+       }\r
+\r
+       /**\r
+       * @brief Get a list of collection item types for the specified item type\r
+       * @param string Item type\r
+       * @return array\r
+       */\r
+       private static function getCollectionItemTypes($itemType) {\r
+               $collectionTypes = array($itemType);\r
+               foreach (self::$backendTypes as $type => $backend) {\r
+                       if (in_array($backend['collectionOf'], $collectionTypes)) {\r
+                               $collectionTypes[] = $type;\r
+                       }\r
+               }\r
+               if (!self::getBackend($itemType) instanceof Share_Backend_Collection) {\r
+                       unset($collectionTypes[0]);\r
+               }\r
+               // Return array if collections were found or the item type is a collection itself - collections can be inside collections\r
+               if (count($collectionTypes) > 0) {\r
+                       return $collectionTypes;\r
+               }\r
+               return false;\r
+       }\r
+\r
+       /**\r
+       * @brief Get shared items from the database\r
+       * @param string Item type\r
+       * @param string Item source or target (optional)\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique\r
+       * @param string User or group the item is being shared with\r
+       * @param string User that is the owner of shared items (optional)\r
+       * @param int Format to convert items to with formatItems()\r
+       * @param mixed Parameters to pass to formatItems()\r
+       * @param int Number of items to return, -1 to return all matches (optional)\r
+       * @param bool Include collection item types (optional)\r
+       * @return mixed\r
+       *\r
+       * See public functions getItem(s)... for parameter usage\r
+       *\r
+       */\r
+       private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) {\r
+               if (!self::isEnabled()) {\r
+                       if ($limit == 1 || (isset($uidOwner) && isset($item))) {\r
+                               return false;\r
+                       } else {\r
+                               return array();\r
+                       }\r
+               }\r
+               $backend = self::getBackend($itemType);\r
+               // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache\r
+               if ($itemType == 'file' || $itemType == 'folder') {\r
+                       $root = \OC_Filesystem::getRoot();\r
+                       $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`';\r
+                       if (!isset($item)) {\r
+                               $where .= ' WHERE `file_target` IS NOT NULL';\r
+                       }\r
+                       $fileDependent = true;\r
+                       $queryArgs = array();\r
+               } else {\r
+                       $fileDependent = false;\r
+                       $root = '';\r
+                       if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) {\r
+                               // If includeCollections is true, find collections of this item type, e.g. a music album contains songs\r
+                               if (!in_array($itemType, $collectionTypes)) {\r
+                                       $itemTypes = array_merge(array($itemType), $collectionTypes);\r
+                               } else {\r
+                                       $itemTypes = $collectionTypes;\r
+                               }\r
+                               $placeholders = join(',', array_fill(0, count($itemTypes), '?'));\r
+                               $where .= ' WHERE item_type IN ('.$placeholders.'))';\r
+                               $queryArgs = $itemTypes;\r
+                       } else {\r
+                               $where = ' WHERE `item_type` = ?';\r
+                               $queryArgs = array($itemType);\r
+                       }\r
+               }\r
+               if (isset($shareType)) {\r
+                       // Include all user and group items\r
+                       if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) {\r
+                               $where .= ' AND `share_type` IN (?,?,?)';\r
+                               $queryArgs[] = self::SHARE_TYPE_USER;\r
+                               $queryArgs[] = self::SHARE_TYPE_GROUP;\r
+                               $queryArgs[] = self::$shareTypeGroupUserUnique;\r
+                               $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));\r
+                               $placeholders = join(',', array_fill(0, count($userAndGroups), '?'));\r
+                               $where .= ' AND `share_with` IN ('.$placeholders.')';\r
+                               $queryArgs = array_merge($queryArgs, $userAndGroups);\r
+                               // Don't include own group shares\r
+                               $where .= ' AND `uid_owner` != ?';\r
+                               $queryArgs[] = $shareWith;\r
+                       } else {\r
+                               $where .= ' AND `share_type` = ?';\r
+                               $queryArgs[] = $shareType;\r
+                               if (isset($shareWith)) {\r
+                                       $where .= ' AND `share_with` = ?';\r
+                                       $queryArgs[] = $shareWith;\r
+                               }\r
+                       }\r
+               }\r
+               if (isset($uidOwner)) {\r
+                       $where .= ' AND `uid_owner` = ?';\r
+                       $queryArgs[] = $uidOwner;\r
+                       if (!isset($shareType)) {\r
+                               // Prevent unique user targets for group shares from being selected\r
+                               $where .= ' AND `share_type` != ?';\r
+                               $queryArgs[] = self::$shareTypeGroupUserUnique;\r
+                       }\r
+                       if ($itemType == 'file' || $itemType == 'folder') {\r
+                               $column = 'file_source';\r
+                       } else {\r
+                               $column = 'item_source';\r
+                       }\r
+               } else {\r
+                       if ($itemType == 'file' || $itemType == 'folder') {\r
+                               $column = 'file_target';\r
+                       } else {\r
+                               $column = 'item_target';\r
+                       }\r
+               }\r
+               if (isset($item)) {\r
+                       if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) {\r
+                               $where .= ' AND (';\r
+                       } else {\r
+                               $where .= ' AND';\r
+                       }\r
+                       // If looking for own shared items, check item_source else check item_target\r
+                       if (isset($uidOwner) || $itemShareWithBySource) {\r
+                               // If item type is a file, file source needs to be checked in case the item was converted\r
+                               if ($itemType == 'file' || $itemType == 'folder') {\r
+                                       $where .= ' `file_source` = ?';\r
+                                       $column = 'file_source';\r
+                               } else {\r
+                                       $where .= ' `item_source` = ?';\r
+                                       $column = 'item_source';\r
+                               }\r
+                       } else {\r
+                               if ($itemType == 'file' || $itemType == 'folder') {\r
+                                       $where .= ' `file_target` = ?';\r
+                                       $item = \OC_Filesystem::normalizePath($item);\r
+                               } else {\r
+                                       $where .= ' `item_target` = ?';\r
+                               }\r
+                       }\r
+                       $queryArgs[] = $item;\r
+                       if ($includeCollections && $collectionTypes) {\r
+                               $placeholders = join(',', array_fill(0, count($collectionTypes), '?'));\r
+                               $where .= ' OR item_type IN ('.$placeholders.'))';\r
+                               $queryArgs = array_merge($queryArgs, $collectionTypes);\r
+                       }\r
+               }\r
+               if ($limit != -1 && !$includeCollections) {\r
+                       if ($shareType == self::$shareTypeUserAndGroups) {\r
+                               // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database\r
+                               // If the limit is not 1, the filtering can be done later\r
+                               $where .= ' ORDER BY `*PREFIX*share`.`id` DESC';\r
+                       }\r
+                       // The limit must be at least 3, because filtering needs to be done\r
+                       if ($limit < 3) {\r
+                               $queryLimit = 3;\r
+                       } else {\r
+                               $queryLimit = $limit;\r
+                       }\r
+               } else {\r
+                       $queryLimit = null;\r
+               }\r
+               // TODO Optimize selects\r
+               if ($format == self::FORMAT_STATUSES) {\r
+                       if ($itemType == 'file' || $itemType == 'folder') {\r
+                               $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`';\r
+                       } else {\r
+                               $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`';\r
+                       }\r
+               } else {\r
+                       if (isset($uidOwner)) {\r
+                               if ($itemType == 'file' || $itemType == 'folder') {\r
+                                       $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`';\r
+                               } else {\r
+                                       $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`';\r
+                               }\r
+                       } else {\r
+                               if ($fileDependent) {\r
+                                       if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) {\r
+                                               $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`';\r
+                                       } else {\r
+                                               $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`';\r
+                                       }\r
+                               } else {\r
+                                       $select = '*';\r
+                               }\r
+                       }\r
+               }\r
+               $root = strlen($root);\r
+               $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit);\r
+               $result = $query->execute($queryArgs);\r
+               $items = array();\r
+               $targets = array();\r
+               while ($row = $result->fetchRow()) {\r
+                       // Filter out duplicate group shares for users with unique targets\r
+                       if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) {\r
+                               $row['share_type'] = self::SHARE_TYPE_GROUP;\r
+                               $row['share_with'] = $items[$row['parent']]['share_with'];\r
+                               // Remove the parent group share\r
+                               unset($items[$row['parent']]);\r
+                               if ($row['permissions'] == 0) {\r
+                                       continue;\r
+                               }\r
+                       } else if (!isset($uidOwner)) {\r
+                               // Check if the same target already exists\r
+                               if (isset($targets[$row[$column]])) {\r
+                                       // Check if the same owner shared with the user twice through a group and user share - this is allowed\r
+                                       $id = $targets[$row[$column]];\r
+                                       if ($items[$id]['uid_owner'] == $row['uid_owner']) {\r
+                                               // Switch to group share type to ensure resharing conditions aren't bypassed\r
+                                               if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {\r
+                                                       $items[$id]['share_type'] = self::SHARE_TYPE_GROUP;\r
+                                                       $items[$id]['share_with'] = $row['share_with'];\r
+                                               }\r
+                                               // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing\r
+                                               if (~(int)$items[$id]['permissions'] & self::PERMISSION_SHARE && (int)$row['permissions'] & self::PERMISSION_SHARE) {\r
+                                                       $items[$row['id']] = $items[$id];\r
+                                                       unset($items[$id]);\r
+                                                       $id = $row['id'];\r
+                                               }\r
+                                               // Combine the permissions for the item\r
+                                               $items[$id]['permissions'] |= (int)$row['permissions'];\r
+                                               continue;\r
+                                       }\r
+                               } else {\r
+                                       $targets[$row[$column]] = $row['id'];\r
+                               }\r
+                       }\r
+                       // Remove root from file source paths if retrieving own shared items\r
+                       if (isset($uidOwner) && isset($row['path'])) {\r
+                               if (isset($row['parent'])) {\r
+                                       $row['path'] = '/Shared/'.basename($row['path']);\r
+                               } else {\r
+                                       $row['path'] = substr($row['path'], $root);\r
+                               }\r
+                       }\r
+                       if (isset($row['expiration'])) {\r
+                               $time = new \DateTime();\r
+                               if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) {\r
+                                       self::delete($row['id']);\r
+                                       continue;\r
+                               }\r
+                       }\r
+                       $items[$row['id']] = $row;\r
+               }\r
+               if (!empty($items)) {\r
+                       $collectionItems = array();\r
+                       foreach ($items as &$row) {\r
+                               // Return only the item instead of a 2-dimensional array\r
+                               if ($limit == 1 && $row['item_type'] == $itemType && $row[$column] == $item) {\r
+                                       if ($format == self::FORMAT_NONE) {\r
+                                               return $row;\r
+                                       } else {\r
+                                               break;\r
+                                       }\r
+                               }\r
+                               // Check if this is a collection of the requested item type\r
+                               if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) {\r
+                                       if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) {\r
+                                               // Collections can be inside collections, check if the item is a collection\r
+                                               if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) {\r
+                                                       $collectionItems[] = $row;\r
+                                               } else {\r
+                                                       $collection = array();\r
+                                                       $collection['item_type'] = $row['item_type'];\r
+                                                       if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {\r
+                                                               $collection['path'] = basename($row['path']);\r
+                                                       }\r
+                                                       $row['collection'] = $collection;\r
+                                                       // Fetch all of the children sources\r
+                                                       $children = $collectionBackend->getChildren($row[$column]);\r
+                                                       foreach ($children as $child) {\r
+                                                               $childItem = $row;\r
+                                                               $childItem['item_type'] = $itemType;\r
+                                                               if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') {\r
+                                                                       $childItem['item_source'] = $child['source'];\r
+                                                                       $childItem['item_target'] = $child['target'];\r
+                                                               }\r
+                                                               if ($backend instanceof Share_Backend_File_Dependent) {\r
+                                                                       if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {\r
+                                                                               $childItem['file_source'] = $child['source'];\r
+                                                                       } else {\r
+                                                                               $childItem['file_source'] = \OC_FileCache::getId($child['file_path']);\r
+                                                                       }\r
+                                                                       $childItem['file_target'] = \OC_Filesystem::normalizePath($child['file_path']);\r
+                                                               }\r
+                                                               if (isset($item)) {\r
+                                                                       if ($childItem[$column] == $item) {\r
+                                                                               // Return only the item instead of a 2-dimensional array\r
+                                                                               if ($limit == 1) {\r
+                                                                                       if ($format == self::FORMAT_NONE) {\r
+                                                                                               return $childItem;\r
+                                                                                       } else {\r
+                                                                                               // Unset the items array and break out of both loops\r
+                                                                                               $items = array();\r
+                                                                                               $items[] = $childItem;\r
+                                                                                               break 2;\r
+                                                                                       }\r
+                                                                               } else {\r
+                                                                                       $collectionItems[] = $childItem;\r
+                                                                               }\r
+                                                                       }\r
+                                                               } else {\r
+                                                                       $collectionItems[] = $childItem;\r
+                                                               }\r
+                                                       }\r
+                                               }\r
+                                       }\r
+                                       // Remove collection item\r
+                                       unset($items[$row['id']]);\r
+                               }\r
+                       }\r
+                       if (!empty($collectionItems)) {\r
+                               $items = array_merge($items, $collectionItems);\r
+                       }\r
+                       if ($format == self::FORMAT_NONE) {\r
+                               return $items;\r
+                       } else if ($format == self::FORMAT_STATUSES) {\r
+                               $statuses = array();\r
+                               // Switch column to path for files and folders, used for determining statuses inside of folders\r
+                               if ($itemType == 'file' || $itemType == 'folder') {\r
+                                       $column = 'path';\r
+                               }\r
+                               foreach ($items as $item) {\r
+                                       if ($item['share_type'] == self::SHARE_TYPE_LINK) {\r
+                                               $statuses[$item[$column]] = true;\r
+                                       } else if (!isset($statuses[$item[$column]])) {\r
+                                               $statuses[$item[$column]] = false;\r
+                                       }\r
+                               }\r
+                               return $statuses;\r
+                       } else {\r
+                               return $backend->formatItems($items, $format, $parameters);\r
+                       }\r
+               } else if ($limit == 1 || (isset($uidOwner) && isset($item))) {\r
+                       return false;\r
+               }\r
+               return array();\r
+       }\r
+\r
+       /**\r
+       * @brief Put shared item into the database\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK\r
+       * @param string User or group the item is being shared with\r
+       * @param int CRUDS permissions\r
+       * @param bool|array Parent folder target (optional)\r
+       * @return bool Returns true on success or false on failure\r
+       */\r
+       private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null) {\r
+               $backend = self::getBackend($itemType);\r
+               // Check if this is a reshare\r
+               if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) {\r
+                       // Check if attempting to share back to owner\r
+                       if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       // Check if share permissions is granted\r
+                       if ((int)$checkReshare['permissions'] & self::PERMISSION_SHARE) {\r
+                               if (~(int)$checkReshare['permissions'] & $permissions) {\r
+                                       $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner;\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               } else {\r
+                                       // TODO Don't check if inside folder\r
+                                       $parent = $checkReshare['id'];\r
+                                       $itemSource = $checkReshare['item_source'];\r
+                                       $fileSource = $checkReshare['file_source'];\r
+                                       $suggestedItemTarget = $checkReshare['item_target'];\r
+                                       $suggestedFileTarget = $checkReshare['file_target'];\r
+                                       $filePath = $checkReshare['file_target'];\r
+                               }\r
+                       } else {\r
+                               $message = 'Sharing '.$itemSource.' failed, because resharing is not allowed';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+               } else {\r
+                       $parent = null;\r
+                       $suggestedItemTarget = null;\r
+                       $suggestedFileTarget = null;\r
+                       if (!$backend->isValidSource($itemSource, $uidOwner)) {\r
+                               $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source';\r
+                               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                               throw new \Exception($message);\r
+                       }\r
+                       $parent = null;\r
+                       if ($backend instanceof Share_Backend_File_Dependent) {\r
+                               $filePath = $backend->getFilePath($itemSource, $uidOwner);\r
+                               if ($itemType == 'file' || $itemType == 'folder') {\r
+                                       $fileSource = $itemSource;\r
+                               } else {\r
+                                       $fileSource = \OC_FileCache::getId($filePath);\r
+                               }\r
+                               if ($fileSource == -1) {\r
+                                       $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache';\r
+                                       \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+                                       throw new \Exception($message);\r
+                               }\r
+                       } else {\r
+                               $filePath = null;\r
+                               $fileSource = null;\r
+                       }\r
+               }\r
+               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');\r
+               // Share with a group\r
+               if ($shareType == self::SHARE_TYPE_GROUP) {\r
+                       $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget);\r
+                       if (isset($fileSource)) {\r
+                               if ($parentFolder) {\r
+                                       if ($parentFolder === true) {\r
+                                               $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget);\r
+                                               // Set group default file target for future use\r
+                                               $parentFolders[0]['folder'] = $groupFileTarget;\r
+                                       } else {\r
+                                               // Get group default file target\r
+                                               $groupFileTarget = $parentFolder[0]['folder'].$itemSource;\r
+                                               $parent = $parentFolder[0]['id'];\r
+                                       }\r
+                               } else {\r
+                                       $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget);\r
+                               }\r
+                       } else {\r
+                               $groupFileTarget = null;\r
+                       }\r
+                       $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget));\r
+                       // Save this id, any extra rows for this group share will need to reference it\r
+                       $parent = \OC_DB::insertid('*PREFIX*share');\r
+                       // Loop through all users of this group in case we need to add an extra row\r
+                       foreach ($shareWith['users'] as $uid) {\r
+                               $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent);\r
+                               if (isset($fileSource)) {\r
+                                       if ($parentFolder) {\r
+                                               if ($parentFolder === true) {\r
+                                                       $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent);\r
+                                                       if ($fileTarget != $groupFileTarget) {\r
+                                                               $parentFolders[$uid]['folder'] = $fileTarget;\r
+                                                       }\r
+                                               } else if (isset($parentFolder[$uid])) {\r
+                                                       $fileTarget = $parentFolder[$uid]['folder'].$itemSource;\r
+                                                       $parent = $parentFolder[$uid]['id'];\r
+                                               }\r
+                                       } else {\r
+                                               $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent);\r
+                                       }\r
+                               } else {\r
+                                       $fileTarget = null;\r
+                               }\r
+                               // Insert an extra row for the group share if the item or file target is unique for this user\r
+                               if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) {\r
+                                       $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget));\r
+                                       \OC_DB::insertid('*PREFIX*share');\r
+                               }\r
+                       }\r
+                       if ($parentFolder === true) {\r
+                               // Return parent folders to preserve file target paths for potential children\r
+                               return $parentFolders;\r
+                       }\r
+               } else {\r
+                       $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget);\r
+                       if (isset($fileSource)) {\r
+                               if ($parentFolder) {\r
+                                       if ($parentFolder === true) {\r
+                                               $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget);\r
+                                               $parentFolders['folder'] = $fileTarget;\r
+                                       } else {\r
+                                               $fileTarget = $parentFolder['folder'].$itemSource;\r
+                                               $parent = $parentFolder['id'];\r
+                                       }\r
+                               } else {\r
+                                       $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget);\r
+                               }\r
+                       } else {\r
+                               $fileTarget = null;\r
+                       }\r
+                       $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget));\r
+                       $id = \OC_DB::insertid('*PREFIX*share');\r
+                       if ($parentFolder === true) {\r
+                               $parentFolders['id'] = $id;\r
+                               // Return parent folder to preserve file target paths for potential children\r
+                               return $parentFolders;\r
+                       }\r
+               }\r
+               return true;\r
+       }\r
+\r
+       /**\r
+       * @brief Generate a unique target for the item\r
+       * @param string Item type\r
+       * @param string Item source\r
+       * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK\r
+       * @param string User or group the item is being shared with\r
+       * @param string The suggested target originating from a reshare (optional)\r
+       * @param int The id of the parent group share (optional)\r
+       * @return string Item target\r
+       */\r
+       private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) {\r
+               $backend = self::getBackend($itemType);\r
+               if ($shareType == self::SHARE_TYPE_LINK) {\r
+                       if (isset($suggestedTarget)) {\r
+                               return $suggestedTarget;\r
+                       }\r
+                       return $backend->generateTarget($itemSource, false);\r
+               } else {\r
+                       if ($itemType == 'file' || $itemType == 'folder') {\r
+                               $column = 'file_target';\r
+                               $columnSource = 'file_source';\r
+                       } else {\r
+                               $column = 'item_target';\r
+                               $columnSource = 'item_source';\r
+                       }\r
+                       if ($shareType == self::SHARE_TYPE_USER) {\r
+                               // Share with is a user, so set share type to user and groups\r
+                               $shareType = self::$shareTypeUserAndGroups;\r
+                               $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));\r
+                       } else {\r
+                               $userAndGroups = false;\r
+                       }\r
+                       $exclude = null;\r
+                       // Backend has 3 opportunities to generate a unique target\r
+                       for ($i = 0; $i < 2; $i++) {\r
+                               // Check if suggested target exists first\r
+                               if ($i == 0 && isset($suggestedTarget)) {\r
+                                       $target = $suggestedTarget;\r
+                               } else {\r
+                                       if ($shareType == self::SHARE_TYPE_GROUP) {\r
+                                               $target = $backend->generateTarget($itemSource, false, $exclude);\r
+                                       } else {\r
+                                               $target = $backend->generateTarget($itemSource, $shareWith, $exclude);\r
+                                       }\r
+                                       if (is_array($exclude) && in_array($target, $exclude)) {\r
+                                               break;\r
+                                       }\r
+                               }\r
+                               // Check if target already exists\r
+                               $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith);\r
+                               if (!empty($checkTarget)) {\r
+                                       foreach ($checkTarget as $item) {\r
+                                               // Skip item if it is the group parent row\r
+                                               if (isset($groupParent) && $item['id'] == $groupParent) {\r
+                                                       if (count($checkTarget) == 1) {\r
+                                                               return $target;\r
+                                                       } else {\r
+                                                               continue;\r
+                                                       }\r
+                                               }\r
+                                               if ($item['uid_owner'] == $uidOwner && $item[$columnSource] == $itemSource) {\r
                                                        return $target;\r
-                                               }
-                                       }
-                                       if (!isset($exclude)) {
-                                               $exclude = array();
-                                       }
-                                       // Find similar targets to improve backend's chances to generate a unqiue target
-                                       if ($userAndGroups) {
-                                               if ($column == 'file_target') {
-                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')');
-                                                       $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique));
-                                               } else {
-                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')');
-                                                       $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique));
-                                               }
-                                       } else {
-                                               if ($column == 'file_target') {
+                                               }\r
+                                       }\r
+                                       if (!isset($exclude)) {\r
+                                               $exclude = array();\r
+                                       }\r
+                                       // Find similar targets to improve backend's chances to generate a unqiue target\r
+                                       if ($userAndGroups) {\r
+                                               if ($column == 'file_target') {\r
+                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')');\r
+                                                       $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique));\r
+                                               } else {\r
+                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')');\r
+                                                       $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique));\r
+                                               }\r
+                                       } else {\r
+                                               if ($column == 'file_target') {\r
                                                        $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` = ? AND `share_with` = ?');\r
-                                                       $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith));
-                                               } else {
-                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?');
-                                                       $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith));
-                                               }
-                                       }
-                                       while ($row = $result->fetchRow()) {
-                                               $exclude[] = $row[$column];
-                                       }
-                               } else {
-                                       return $target;
-                               }
-                       }
-               }
-               $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource;
-               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
-               throw new \Exception($message);
-       }
-
-       /**
-       * @brief Delete all reshares of an item
-       * @param int Id of item to delete
-       * @param bool If true, exclude the parent from the delete (optional)
-       * @param string The user that the parent was shared with (optinal)
-       */
-       private static function delete($parent, $excludeParent = false, $uidOwner = null) {
-               $ids = array($parent);
-               $parents = array($parent);
-               while (!empty($parents)) {
-                       $parents = "'".implode("','", $parents)."'";
-                       // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share
-                       if (count($ids) == 1 && isset($uidOwner)) {
-                               $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?');
-                               $result = $query->execute(array($uidOwner));
-                       } else {
-                               $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')');
-                               $result = $query->execute();
-                       }
-                       // Reset parents array, only go through loop again if items are found
-                       $parents = array();
-                       while ($item = $result->fetchRow()) {
-                               // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users
-                               $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner']));
-                               $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?');
-                               $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow();
-                               if ($duplicateParent) {
-                                       // Change the parent to the other item id if share permission is granted
-                                       if ($duplicateParent['permissions'] & self::PERMISSION_SHARE) {
-                                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?');
-                                               $query->execute(array($duplicateParent['id'], $item['id']));
-                                               continue;
-                                       }
-                               }
-                               $ids[] = $item['id'];
-                               $parents[] = $item['id'];
-                       }
-               }
-               if ($excludeParent) {
-                       unset($ids[0]);
-               }
-               if (!empty($ids)) {
-                       $ids = "'".implode("','", $ids)."'";
-                       $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')');
-                       $query->execute();
-               }
-       }
-
-       /**
-       * Hook Listeners
-       */
-
-       public static function post_deleteUser($arguments) {
-               // Delete any items shared with the deleted user
-               $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?');
-               $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique));
-               // Delete any items the deleted user shared
-               $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?');
-               $result = $query->execute(array($arguments['uid']));
-               while ($item = $result->fetchRow()) {
-                       self::delete($item['id']);
-               }
-       }
-
-       public static function post_addToGroup($arguments) {
-               // Find the group shares and check if the user needs a unique target
-               $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?');
-               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid']));
-               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');
-               while ($item = $result->fetchRow()) {
-                       if ($item['item_type'] == 'file' || $item['item_type'] == 'file') {
-                               $itemTarget = null;
-                       } else {
-                               $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']);
-                       }
-                       if (isset($item['file_source'])) {
-                               $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']);
-                       } else {
-                               $fileTarget = null;
-                       }
-                       // Insert an extra row for the group share if the item or file target is unique for this user
-                       if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) {
-                               $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget));
-                               \OC_DB::insertid('*PREFIX*share');
-                       }
-               }
-       }
-
-       public static function post_removeFromGroup($arguments) {
-               // TODO Don't call if user deleted?
-               $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)');
-               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid']));
-               while ($item = $result->fetchRow()) {
-                       if ($item['share_type'] == self::SHARE_TYPE_GROUP) {
-                               // Delete all reshares by this user of the group share
-                               self::delete($item['id'], true, $arguments['uid']);
-                       } else {
-                               self::delete($item['id']);
-                       }
-               }
-       }
-
-       public static function post_deleteGroup($arguments) {
-               $query = \OC_DB::prepare('SELECT id FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?');
-               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid']));
-               while ($item = $result->fetchRow()) {
-                       self::delete($item['id']);
-               }
-       }
-
-}
-
-/**
-* Interface that apps must implement to share content.
-*/
-interface Share_Backend {
-
-       /**
-       * @brief Get the source of the item to be stored in the database
-       * @param string Item source
-       * @param string Owner of the item
-       * @return mixed|array|false Source
-       *
-       * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file'
-       * Return false if the item does not exist for the user
-       *
-       * The formatItems() function will translate the source returned back into the item
-       */
-       public function isValidSource($itemSource, $uidOwner);
-
-       /**
-       * @brief Get a unique name of the item for the specified user
-       * @param string Item source
-       * @param string|false User the item is being shared with
-       * @param array|null List of similar item names already existing as shared items
-       * @return string Target name
-       *
-       * This function needs to verify that the user does not already have an item with this name.
-       * If it does generate a new name e.g. name_#
-       */
-       public function generateTarget($itemSource, $shareWith, $exclude = null);
-
-       /**
-       * @brief Converts the shared item sources back into the item in the specified format
-       * @param array Shared items
-       * @param int Format
-       * @return ?
-       *
-       * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info.
-       * The key/value pairs included in the share info depend on the function originally called:
-       * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source
-       * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target
-       * This function allows the backend to control the output of shared items with custom formats.
-       * It is only called through calls to the public getItem(s)Shared(With) functions.
-       */
-       public function formatItems($items, $format, $parameters = null);
-
-}
-
-/**
-* Interface for share backends that share content that is dependent on files.
-* Extends the Share_Backend interface.
-*/
-interface Share_Backend_File_Dependent extends Share_Backend {
-
-       /**
-       * @brief Get the file path of the item
-       * @param
-       * @param
-       * @return
-       */
-       public function getFilePath($itemSource, $uidOwner);
-
-}
-
-/**
-* Interface for collections of of items implemented by another share backend.
-* Extends the Share_Backend interface.
-*/
-interface Share_Backend_Collection extends Share_Backend {
-
-       /**
-       * @brief Get the sources of the children of the item
-       * @param string Item source
-       * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable
-       */
-       public function getChildren($itemSource);
-
-}
+                                                       $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith));\r
+                                               } else {\r
+                                                       $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?');\r
+                                                       $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith));\r
+                                               }\r
+                                       }\r
+                                       while ($row = $result->fetchRow()) {\r
+                                               $exclude[] = $row[$column];\r
+                                       }\r
+                               } else {\r
+                                       return $target;\r
+                               }\r
+                       }\r
+               }\r
+               $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource;\r
+               \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);\r
+               throw new \Exception($message);\r
+       }\r
+\r
+       /**\r
+       * @brief Delete all reshares of an item\r
+       * @param int Id of item to delete\r
+       * @param bool If true, exclude the parent from the delete (optional)\r
+       * @param string The user that the parent was shared with (optinal)\r
+       */\r
+       private static function delete($parent, $excludeParent = false, $uidOwner = null) {\r
+               $ids = array($parent);\r
+               $parents = array($parent);\r
+               while (!empty($parents)) {\r
+                       $parents = "'".implode("','", $parents)."'";\r
+                       // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share\r
+                       if (count($ids) == 1 && isset($uidOwner)) {\r
+                               $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?');\r
+                               $result = $query->execute(array($uidOwner));\r
+                       } else {\r
+                               $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')');\r
+                               $result = $query->execute();\r
+                       }\r
+                       // Reset parents array, only go through loop again if items are found\r
+                       $parents = array();\r
+                       while ($item = $result->fetchRow()) {\r
+                               // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users\r
+                               $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner']));\r
+                               $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?');\r
+                               $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow();\r
+                               if ($duplicateParent) {\r
+                                       // Change the parent to the other item id if share permission is granted\r
+                                       if ($duplicateParent['permissions'] & self::PERMISSION_SHARE) {\r
+                                               $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?');\r
+                                               $query->execute(array($duplicateParent['id'], $item['id']));\r
+                                               continue;\r
+                                       }\r
+                               }\r
+                               $ids[] = $item['id'];\r
+                               $parents[] = $item['id'];\r
+                       }\r
+               }\r
+               if ($excludeParent) {\r
+                       unset($ids[0]);\r
+               }\r
+               if (!empty($ids)) {\r
+                       $ids = "'".implode("','", $ids)."'";\r
+                       $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')');\r
+                       $query->execute();\r
+               }\r
+       }\r
+\r
+       /**\r
+       * Hook Listeners\r
+       */\r
+\r
+       public static function post_deleteUser($arguments) {\r
+               // Delete any items shared with the deleted user\r
+               $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?');\r
+               $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique));\r
+               // Delete any items the deleted user shared\r
+               $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?');\r
+               $result = $query->execute(array($arguments['uid']));\r
+               while ($item = $result->fetchRow()) {\r
+                       self::delete($item['id']);\r
+               }\r
+       }\r
+\r
+       public static function post_addToGroup($arguments) {\r
+               // Find the group shares and check if the user needs a unique target\r
+               $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?');\r
+               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid']));\r
+               $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)');\r
+               while ($item = $result->fetchRow()) {\r
+                       if ($item['item_type'] == 'file' || $item['item_type'] == 'file') {\r
+                               $itemTarget = null;\r
+                       } else {\r
+                               $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']);\r
+                       }\r
+                       if (isset($item['file_source'])) {\r
+                               $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']);\r
+                       } else {\r
+                               $fileTarget = null;\r
+                       }\r
+                       // Insert an extra row for the group share if the item or file target is unique for this user\r
+                       if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) {\r
+                               $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget));\r
+                               \OC_DB::insertid('*PREFIX*share');\r
+                       }\r
+               }\r
+       }\r
+\r
+       public static function post_removeFromGroup($arguments) {\r
+               // TODO Don't call if user deleted?\r
+               $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)');\r
+               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid']));\r
+               while ($item = $result->fetchRow()) {\r
+                       if ($item['share_type'] == self::SHARE_TYPE_GROUP) {\r
+                               // Delete all reshares by this user of the group share\r
+                               self::delete($item['id'], true, $arguments['uid']);\r
+                       } else {\r
+                               self::delete($item['id']);\r
+                       }\r
+               }\r
+       }\r
+\r
+       public static function post_deleteGroup($arguments) {\r
+               $query = \OC_DB::prepare('SELECT id FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?');\r
+               $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid']));\r
+               while ($item = $result->fetchRow()) {\r
+                       self::delete($item['id']);\r
+               }\r
+       }\r
+\r
+}\r
+\r
+/**\r
+* Interface that apps must implement to share content.\r
+*/\r
+interface Share_Backend {\r
+\r
+       /**\r
+       * @brief Get the source of the item to be stored in the database\r
+       * @param string Item source\r
+       * @param string Owner of the item\r
+       * @return mixed|array|false Source\r
+       *\r
+       * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file'\r
+       * Return false if the item does not exist for the user\r
+       *\r
+       * The formatItems() function will translate the source returned back into the item\r
+       */\r
+       public function isValidSource($itemSource, $uidOwner);\r
+\r
+       /**\r
+       * @brief Get a unique name of the item for the specified user\r
+       * @param string Item source\r
+       * @param string|false User the item is being shared with\r
+       * @param array|null List of similar item names already existing as shared items\r
+       * @return string Target name\r
+       *\r
+       * This function needs to verify that the user does not already have an item with this name.\r
+       * If it does generate a new name e.g. name_#\r
+       */\r
+       public function generateTarget($itemSource, $shareWith, $exclude = null);\r
+\r
+       /**\r
+       * @brief Converts the shared item sources back into the item in the specified format\r
+       * @param array Shared items\r
+       * @param int Format\r
+       * @return ?\r
+       *\r
+       * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info.\r
+       * The key/value pairs included in the share info depend on the function originally called:\r
+       * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source\r
+       * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target\r
+       * This function allows the backend to control the output of shared items with custom formats.\r
+       * It is only called through calls to the public getItem(s)Shared(With) functions.\r
+       */\r
+       public function formatItems($items, $format, $parameters = null);\r
+\r
+}\r
+\r
+/**\r
+* Interface for share backends that share content that is dependent on files.\r
+* Extends the Share_Backend interface.\r
+*/\r
+interface Share_Backend_File_Dependent extends Share_Backend {\r
+\r
+       /**\r
+       * @brief Get the file path of the item\r
+       * @param\r
+       * @param\r
+       * @return\r
+       */\r
+       public function getFilePath($itemSource, $uidOwner);\r
+\r
+}\r
+\r
+/**\r
+* Interface for collections of of items implemented by another share backend.\r
+* Extends the Share_Backend interface.\r
+*/\r
+interface Share_Backend_Collection extends Share_Backend {\r
+\r
+       /**\r
+       * @brief Get the sources of the children of the item\r
+       * @param string Item source\r
+       * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable\r
+       */\r
+       public function getChildren($itemSource);\r
+\r
+}\r