group shares and combine permissions
This commit is contained in:
parent
0d37e16499
commit
89c3b650e6
|
@ -38,7 +38,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent {
|
||||||
// FIXME: attributes should not be set here,
|
// FIXME: attributes should not be set here,
|
||||||
// keeping this pattern for now to avoid unexpected
|
// keeping this pattern for now to avoid unexpected
|
||||||
// regressions
|
// regressions
|
||||||
$this->path = basename($path);
|
$this->path = \OC\Files\Filesystem::normalizePath(basename($path));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -121,7 +121,15 @@ class SharedMount extends Mount implements MoveableMount {
|
||||||
$relTargetPath = $this->stripUserFilesPath($target);
|
$relTargetPath = $this->stripUserFilesPath($target);
|
||||||
$share = $this->storage->getShare();
|
$share = $this->storage->getShare();
|
||||||
|
|
||||||
$result = $this->updateFileTarget($relTargetPath, $share);
|
$result = true;
|
||||||
|
|
||||||
|
if (!empty($share['grouped'])) {
|
||||||
|
foreach ($share['grouped'] as $s) {
|
||||||
|
$result = $this->updateFileTarget($relTargetPath, $s) && $result;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$result = $this->updateFileTarget($relTargetPath, $share) && $result;
|
||||||
|
}
|
||||||
|
|
||||||
if ($result) {
|
if ($result) {
|
||||||
$this->setMountPoint($target);
|
$this->setMountPoint($target);
|
||||||
|
@ -144,8 +152,11 @@ class SharedMount extends Mount implements MoveableMount {
|
||||||
*/
|
*/
|
||||||
public function removeMount() {
|
public function removeMount() {
|
||||||
$mountManager = \OC\Files\Filesystem::getMountManager();
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
||||||
|
/**
|
||||||
|
* @var \OC\Files\Storage\Shared
|
||||||
|
*/
|
||||||
$storage = $this->getStorage();
|
$storage = $this->getStorage();
|
||||||
$result = \OCP\Share::unshareFromSelf($storage->getItemType(), $storage->getMountPoint());
|
$result = $storage->unshareStorage();
|
||||||
$mountManager->removeMount($this->mountPoint);
|
$mountManager->removeMount($this->mountPoint);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
|
|
|
@ -532,4 +532,19 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* unshare complete storage, also the grouped shares
|
||||||
|
*/
|
||||||
|
public function unshareStorage() {
|
||||||
|
$result = true;
|
||||||
|
if (!empty($this->share['grouped'])) {
|
||||||
|
foreach ($this->share['grouped'] as $share) {
|
||||||
|
$result = $result && \OCP\Share::unshareFromSelf($share['item_type'], $share['file_target']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$result = $result && \OCP\Share::unshareFromSelf($this->getItemType(), $this->getMountPoint());
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -339,11 +339,13 @@ class Share extends \OC\Share\Constants {
|
||||||
* @param int $format (optional) Format type must be defined by the backend
|
* @param int $format (optional) Format type must be defined by the backend
|
||||||
* @param mixed $parameters
|
* @param mixed $parameters
|
||||||
* @param boolean $includeCollections
|
* @param boolean $includeCollections
|
||||||
|
* @param string $shareWith (optional) define against which user should be checked, default: current user
|
||||||
* @return mixed Return depends on format
|
* @return mixed Return depends on format
|
||||||
*/
|
*/
|
||||||
public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE,
|
public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE,
|
||||||
$parameters = null, $includeCollections = false) {
|
$parameters = null, $includeCollections = false, $shareWith = null) {
|
||||||
return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format,
|
$shareWith = ($shareWith === null) ? \OC_User::getUser() : $shareWith;
|
||||||
|
return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, $format,
|
||||||
$parameters, 1, $includeCollections, true);
|
$parameters, 1, $includeCollections, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1297,7 +1299,7 @@ class Share extends \OC\Share\Constants {
|
||||||
// Make sure the unique user target is returned if it exists,
|
// Make sure the unique user target is returned if it exists,
|
||||||
// unique targets should follow the group share in the database
|
// unique targets should follow the group share in the database
|
||||||
// If the limit is not 1, the filtering can be done later
|
// If the limit is not 1, the filtering can be done later
|
||||||
$where .= ' ORDER BY `*PREFIX*share`.`id` DESC';
|
$where .= ' ORDER BY `*PREFIX*share`.`id` ASC';
|
||||||
}
|
}
|
||||||
// The limit must be at least 3, because filtering needs to be done
|
// The limit must be at least 3, because filtering needs to be done
|
||||||
if ($limit < 3) {
|
if ($limit < 3) {
|
||||||
|
@ -1315,7 +1317,7 @@ class Share extends \OC\Share\Constants {
|
||||||
$result = $query->execute($queryArgs);
|
$result = $query->execute($queryArgs);
|
||||||
if (\OC_DB::isError($result)) {
|
if (\OC_DB::isError($result)) {
|
||||||
\OC_Log::write('OCP\Share',
|
\OC_Log::write('OCP\Share',
|
||||||
\OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where,
|
\OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=',
|
||||||
\OC_Log::ERROR);
|
\OC_Log::ERROR);
|
||||||
}
|
}
|
||||||
$items = array();
|
$items = array();
|
||||||
|
@ -1416,7 +1418,13 @@ class Share extends \OC\Share\Constants {
|
||||||
}
|
}
|
||||||
|
|
||||||
$items[$row['id']] = $row;
|
$items[$row['id']] = $row;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($shareWith) && $shareWith === \OCP\User::getUser()) {
|
||||||
|
$items = self::groupItems($items, $itemType);
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($items)) {
|
if (!empty($items)) {
|
||||||
$collectionItems = array();
|
$collectionItems = array();
|
||||||
foreach ($items as &$row) {
|
foreach ($items as &$row) {
|
||||||
|
@ -1501,6 +1509,47 @@ class Share extends \OC\Share\Constants {
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* group items with link to the same source
|
||||||
|
*
|
||||||
|
* @param array $items
|
||||||
|
* @param string $itemType
|
||||||
|
* @return array of grouped items
|
||||||
|
*/
|
||||||
|
private static function groupItems($items, $itemType) {
|
||||||
|
|
||||||
|
$fileSharing = ($itemType === 'file' || $itemType === 'folder') ? true : false;
|
||||||
|
|
||||||
|
$result = array();
|
||||||
|
|
||||||
|
foreach ($items as $item) {
|
||||||
|
$grouped = false;
|
||||||
|
foreach ($result as $key => $r) {
|
||||||
|
// for file/folder shares we need to compare file_source, otherwise we compare item_source
|
||||||
|
// only group shares if they already point to the same target, otherwise the file where shared
|
||||||
|
// before grouping of shares was added. In this case we don't group them toi avoid confusions
|
||||||
|
if (( $fileSharing && $item['file_source'] === $r['file_source'] && $item['file_target'] === $r['file_target']) ||
|
||||||
|
(!$fileSharing && $item['item_source'] === $r['item_source'] && $item['item_target'] === $r['item_target'])) {
|
||||||
|
// add the first item to the list of grouped shares
|
||||||
|
if (!isset($result[$key]['grouped'])) {
|
||||||
|
$result[$key]['grouped'][] = $result[$key];
|
||||||
|
}
|
||||||
|
$result[$key]['permissions'] = (int) $item['permissions'] | (int) $r['permissions'];
|
||||||
|
$result[$key]['grouped'][] = $item;
|
||||||
|
$grouped = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$grouped) {
|
||||||
|
$result[] = $item;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Put shared item into the database
|
* Put shared item into the database
|
||||||
* @param string $itemType Item type
|
* @param string $itemType Item type
|
||||||
|
@ -1518,121 +1567,38 @@ class Share extends \OC\Share\Constants {
|
||||||
*/
|
*/
|
||||||
private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner,
|
private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner,
|
||||||
$permissions, $parentFolder = null, $token = null, $itemSourceName = null, \DateTime $expirationDate = null) {
|
$permissions, $parentFolder = null, $token = null, $itemSourceName = null, \DateTime $expirationDate = null) {
|
||||||
$backend = self::getBackend($itemType);
|
|
||||||
$l = \OC::$server->getL10N('lib');
|
|
||||||
// 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
|
$queriesToExecute = array();
|
||||||
if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) {
|
|
||||||
$message = 'Sharing %s failed, because the user %s is the original sharer';
|
|
||||||
$message_t = $l->t('Sharing %s failed, because the user %s is the original sharer', array($itemSourceName, $shareWith));
|
|
||||||
|
|
||||||
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR);
|
$fileShare = false;
|
||||||
throw new \Exception($message_t);
|
if ($itemType === 'file' || $itemType === 'folder') {
|
||||||
}
|
$fileShare = true;
|
||||||
// Check if share permissions is granted
|
|
||||||
if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) {
|
|
||||||
if (~(int)$checkReshare['permissions'] & $permissions) {
|
|
||||||
$message = 'Sharing %s failed, because the permissions exceed permissions granted to %s';
|
|
||||||
$message_t = $l->t('Sharing %s failed, because the permissions exceed permissions granted to %s', array($itemSourceName, $uidOwner));
|
|
||||||
|
|
||||||
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner), \OC_Log::ERROR);
|
|
||||||
throw new \Exception($message_t);
|
|
||||||
} 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'];
|
|
||||||
$expirationDate = min($expirationDate, $checkReshare['expiration']);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$message = 'Sharing %s failed, because resharing is not allowed';
|
|
||||||
$message_t = $l->t('Sharing %s failed, because resharing is not allowed', array($itemSourceName));
|
|
||||||
|
|
||||||
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR);
|
|
||||||
throw new \Exception($message_t);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$parent = null;
|
|
||||||
$suggestedItemTarget = null;
|
|
||||||
$suggestedFileTarget = null;
|
|
||||||
if (!$backend->isValidSource($itemSource, $uidOwner)) {
|
|
||||||
$message = 'Sharing %s failed, because the sharing backend for '
|
|
||||||
.'%s could not find its source';
|
|
||||||
$message_t = $l->t('Sharing %s failed, because the sharing backend for %s could not find its source', array($itemSource, $itemType));
|
|
||||||
\OC_Log::write('OCP\Share', sprintf($message, $itemSource, $itemType), \OC_Log::ERROR);
|
|
||||||
throw new \Exception($message_t);
|
|
||||||
}
|
|
||||||
if ($backend instanceof \OCP\Share_Backend_File_Dependent) {
|
|
||||||
$filePath = $backend->getFilePath($itemSource, $uidOwner);
|
|
||||||
if ($itemType == 'file' || $itemType == 'folder') {
|
|
||||||
$fileSource = $itemSource;
|
|
||||||
} else {
|
|
||||||
$meta = \OC\Files\Filesystem::getFileInfo($filePath);
|
|
||||||
$fileSource = $meta['fileid'];
|
|
||||||
}
|
|
||||||
if ($fileSource == -1) {
|
|
||||||
$message = 'Sharing %s failed, because the file could not be found in the file cache';
|
|
||||||
$message_t = $l->t('Sharing %s failed, because the file could not be found in the file cache', array($itemSource));
|
|
||||||
|
|
||||||
\OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR);
|
|
||||||
throw new \Exception($message_t);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$filePath = null;
|
|
||||||
$fileSource = null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Share with a group
|
$result = self::checkReshare($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $itemSourceName, $expirationDate);
|
||||||
|
if(!empty($result)) {
|
||||||
|
$parent = $result['parent'];
|
||||||
|
$itemSource = $result['itemSource'];
|
||||||
|
$fileSource = $result['fileSource'];
|
||||||
|
$suggestedItemTarget = $result['suggestedItemTarget'];
|
||||||
|
$suggestedFileTarget = $result['suggestedFileTarget'];
|
||||||
|
$filePath = $result['filePath'];
|
||||||
|
$expirationDate = $result['expirationDate'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$isGroupShare = false;
|
||||||
if ($shareType == self::SHARE_TYPE_GROUP) {
|
if ($shareType == self::SHARE_TYPE_GROUP) {
|
||||||
|
$isGroupShare = true;
|
||||||
|
$users = \OC_Group::usersInGroup($shareWith['group']);
|
||||||
|
// remove current user from list
|
||||||
|
if (in_array(\OCP\User::getUser(), $users)) {
|
||||||
|
unset($users[array_search(\OCP\User::getUser(), $users)]);
|
||||||
|
}
|
||||||
$groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'],
|
$groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'],
|
||||||
$uidOwner, $suggestedItemTarget);
|
$uidOwner, $suggestedItemTarget);
|
||||||
$run = true;
|
$groupFileTarget = $filePath;
|
||||||
$error = '';
|
|
||||||
\OC_Hook::emit('OCP\Share', 'pre_shared', array(
|
|
||||||
'itemType' => $itemType,
|
|
||||||
'itemSource' => $itemSource,
|
|
||||||
'itemTarget' => $groupItemTarget,
|
|
||||||
'shareType' => $shareType,
|
|
||||||
'shareWith' => $shareWith['group'],
|
|
||||||
'uidOwner' => $uidOwner,
|
|
||||||
'permissions' => $permissions,
|
|
||||||
'fileSource' => $fileSource,
|
|
||||||
'expiration' => $expirationDate,
|
|
||||||
'token' => $token,
|
|
||||||
'run' => &$run,
|
|
||||||
'error' => &$error
|
|
||||||
));
|
|
||||||
|
|
||||||
if ($run === false) {
|
// add group share to table and remember the id as parent
|
||||||
throw new \Exception($error);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($fileSource)) {
|
|
||||||
if ($parentFolder) {
|
|
||||||
if ($parentFolder === true) {
|
|
||||||
$groupFileTarget = Helper::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 = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'],
|
|
||||||
$uidOwner, $suggestedFileTarget);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$groupFileTarget = null;
|
|
||||||
}
|
|
||||||
$queriesToExecute = array();
|
|
||||||
$queriesToExecute['groupShare'] = array(
|
$queriesToExecute['groupShare'] = array(
|
||||||
'itemType' => $itemType,
|
'itemType' => $itemType,
|
||||||
'itemSource' => $itemSource,
|
'itemSource' => $itemSource,
|
||||||
|
@ -1643,167 +1609,213 @@ class Share extends \OC\Share\Constants {
|
||||||
'permissions' => $permissions,
|
'permissions' => $permissions,
|
||||||
'shareTime' => time(),
|
'shareTime' => time(),
|
||||||
'fileSource' => $fileSource,
|
'fileSource' => $fileSource,
|
||||||
'fileTarget' => $groupFileTarget,
|
'fileTarget' => $filePath,
|
||||||
'token' => $token,
|
'token' => $token,
|
||||||
'parent' => $parent,
|
'parent' => $parent,
|
||||||
'expiration' => $expirationDate,
|
'expiration' => $expirationDate,
|
||||||
);
|
);
|
||||||
// Loop through all users of this group in case we need to add an extra row
|
|
||||||
foreach ($shareWith['users'] as $uid) {
|
} else {
|
||||||
$itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid,
|
$users = array($shareWith);
|
||||||
|
$itemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner,
|
||||||
|
$suggestedItemTarget);
|
||||||
|
}
|
||||||
|
|
||||||
|
$run = true;
|
||||||
|
$error = '';
|
||||||
|
$preHookData = array(
|
||||||
|
'itemType' => $itemType,
|
||||||
|
'itemSource' => $itemSource,
|
||||||
|
'shareType' => $shareType,
|
||||||
|
'uidOwner' => $uidOwner,
|
||||||
|
'permissions' => $permissions,
|
||||||
|
'fileSource' => $fileSource,
|
||||||
|
'expiration' => $expirationDate,
|
||||||
|
'token' => $token,
|
||||||
|
'run' => &$run,
|
||||||
|
'error' => &$error
|
||||||
|
);
|
||||||
|
|
||||||
|
$preHookData['itemTarget'] = ($isGroupShare) ? $groupItemTarget : $itemTarget;
|
||||||
|
$preHookData['shareWith'] = ($isGroupShare) ? $shareWith['group'] : $shareWith;
|
||||||
|
|
||||||
|
\OC_Hook::emit('OCP\Share', 'pre_shared', $preHookData);
|
||||||
|
|
||||||
|
if ($run === false) {
|
||||||
|
throw new \Exception($error);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($users as $user) {
|
||||||
|
$sourceExists = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true, $user);
|
||||||
|
|
||||||
|
$shareType = ($isGroupShare) ? self::$shareTypeGroupUserUnique : $shareType;
|
||||||
|
|
||||||
|
if ($sourceExists) {
|
||||||
|
$fileTarget = $sourceExists['file_target'];
|
||||||
|
$itemTarget = $sourceExists['item_target'];
|
||||||
|
|
||||||
|
} elseif(!$sourceExists && !$isGroupShare) {
|
||||||
|
|
||||||
|
$itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $user,
|
||||||
$uidOwner, $suggestedItemTarget, $parent);
|
$uidOwner, $suggestedItemTarget, $parent);
|
||||||
if (isset($fileSource)) {
|
if (isset($fileSource)) {
|
||||||
if ($parentFolder) {
|
if ($parentFolder) {
|
||||||
if ($parentFolder === true) {
|
if ($parentFolder === true) {
|
||||||
$fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid,
|
$fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $user,
|
||||||
$uidOwner, $suggestedFileTarget, $parent);
|
$uidOwner, $suggestedFileTarget, $parent);
|
||||||
if ($fileTarget != $groupFileTarget) {
|
if ($fileTarget != $groupFileTarget) {
|
||||||
$parentFolders[$uid]['folder'] = $fileTarget;
|
$parentFolders[$user]['folder'] = $fileTarget;
|
||||||
}
|
}
|
||||||
} else if (isset($parentFolder[$uid])) {
|
} else if (isset($parentFolder[$user])) {
|
||||||
$fileTarget = $parentFolder[$uid]['folder'].$itemSource;
|
$fileTarget = $parentFolder[$user]['folder'].$itemSource;
|
||||||
$parent = $parentFolder[$uid]['id'];
|
$parent = $parentFolder[$user]['id'];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER,
|
$fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER,
|
||||||
$uid, $uidOwner, $suggestedFileTarget, $parent);
|
$user, $uidOwner, $suggestedFileTarget, $parent);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$fileTarget = null;
|
$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)) {
|
} else {
|
||||||
|
// move to the next user if it is neither a unique group share
|
||||||
|
// nor a single share without adding it to the share table
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$queriesToExecute[] = array(
|
$queriesToExecute[] = array(
|
||||||
'itemType' => $itemType,
|
'itemType' => $itemType,
|
||||||
'itemSource' => $itemSource,
|
'itemSource' => $itemSource,
|
||||||
'itemTarget' => $itemTarget,
|
'itemTarget' => $itemTarget,
|
||||||
'shareType' => self::$shareTypeGroupUserUnique,
|
'shareType' => $shareType,
|
||||||
'shareWith' => $uid,
|
'shareWith' => $user,
|
||||||
'uidOwner' => $uidOwner,
|
'uidOwner' => $uidOwner,
|
||||||
'permissions' => $permissions,
|
'permissions' => $permissions,
|
||||||
'shareTime' => time(),
|
'shareTime' => time(),
|
||||||
'fileSource' => $fileSource,
|
'fileSource' => $fileSource,
|
||||||
'fileTarget' => $fileTarget,
|
'fileTarget' => $fileTarget,
|
||||||
'token' => $token,
|
'token' => $token,
|
||||||
//'parent' => $parent,
|
'parent' => $parent,
|
||||||
'expiration' => $expirationDate,
|
'expiration' => $expirationDate,
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($isGroupShare) {
|
||||||
self::insertShare($queriesToExecute['groupShare']);
|
self::insertShare($queriesToExecute['groupShare']);
|
||||||
// Save this id, any extra rows for this group share will need to reference it
|
// Save this id, any extra rows for this group share will need to reference it
|
||||||
$parent = \OC_DB::insertid('*PREFIX*share');
|
$parent = \OC_DB::insertid('*PREFIX*share');
|
||||||
unset($queriesToExecute['groupShare']);
|
unset($queriesToExecute['groupShare']);
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($queriesToExecute as $shareQuery) {
|
foreach ($queriesToExecute as $shareQuery) {
|
||||||
$shareQuery['parent'] = $parent;
|
$shareQuery['parent'] = $parent;
|
||||||
self::insertShare($shareQuery);
|
self::insertShare($shareQuery);
|
||||||
}
|
}
|
||||||
|
|
||||||
\OC_Hook::emit('OCP\Share', 'post_shared', array(
|
$postHookData = array(
|
||||||
'itemType' => $itemType,
|
'itemType' => $itemType,
|
||||||
'itemSource' => $itemSource,
|
'itemSource' => $itemSource,
|
||||||
'itemTarget' => $groupItemTarget,
|
|
||||||
'parent' => $parent,
|
'parent' => $parent,
|
||||||
'shareType' => $shareType,
|
'shareType' => $shareType,
|
||||||
'shareWith' => $shareWith['group'],
|
|
||||||
'uidOwner' => $uidOwner,
|
'uidOwner' => $uidOwner,
|
||||||
'permissions' => $permissions,
|
'permissions' => $permissions,
|
||||||
'fileSource' => $fileSource,
|
'fileSource' => $fileSource,
|
||||||
'fileTarget' => $groupFileTarget,
|
|
||||||
'id' => $parent,
|
'id' => $parent,
|
||||||
'token' => $token,
|
'token' => $token,
|
||||||
'expirationDate' => $expirationDate,
|
'expirationDate' => $expirationDate,
|
||||||
));
|
);
|
||||||
|
|
||||||
if ($parentFolder === true) {
|
$postHookData['shareWith'] = ($isGroupShare) ? $shareWith['group'] : $shareWith;
|
||||||
// Return parent folders to preserve file target paths for potential children
|
$postHookData['itemTarget'] = ($isGroupShare) ? $groupItemTarget : $itemTarget;
|
||||||
return $parentFolders;
|
$postHookData['fileTarget'] = ($isGroupShare) ? $groupFileTarget : $fileTarget;
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$itemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner,
|
|
||||||
$suggestedItemTarget);
|
|
||||||
$run = true;
|
|
||||||
$error = '';
|
|
||||||
\OC_Hook::emit('OCP\Share', 'pre_shared', array(
|
|
||||||
'itemType' => $itemType,
|
|
||||||
'itemSource' => $itemSource,
|
|
||||||
'itemTarget' => $itemTarget,
|
|
||||||
'shareType' => $shareType,
|
|
||||||
'shareWith' => $shareWith,
|
|
||||||
'uidOwner' => $uidOwner,
|
|
||||||
'permissions' => $permissions,
|
|
||||||
'fileSource' => $fileSource,
|
|
||||||
'token' => $token,
|
|
||||||
'expirationDate' => $expirationDate,
|
|
||||||
'run' => &$run,
|
|
||||||
'error' => &$error,
|
|
||||||
));
|
|
||||||
|
|
||||||
if ($run === false) {
|
\OC_Hook::emit('OCP\Share', 'post_shared', $postHookData);
|
||||||
throw new \Exception($error);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($fileSource)) {
|
|
||||||
if ($parentFolder) {
|
|
||||||
if ($parentFolder === true) {
|
|
||||||
$fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith,
|
|
||||||
$uidOwner, $suggestedFileTarget);
|
|
||||||
$parentFolders['folder'] = $fileTarget;
|
|
||||||
} else {
|
|
||||||
$fileTarget = $parentFolder['folder'].$itemSource;
|
|
||||||
$parent = $parentFolder['id'];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner,
|
|
||||||
$suggestedFileTarget);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$fileTarget = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
self::insertShare(array(
|
|
||||||
'itemType' => $itemType,
|
|
||||||
'itemSource' => $itemSource,
|
|
||||||
'itemTarget' => $itemTarget,
|
|
||||||
'shareType' => $shareType,
|
|
||||||
'shareWith' => $shareWith,
|
|
||||||
'uidOwner' => $uidOwner,
|
|
||||||
'permissions' => $permissions,
|
|
||||||
'shareTime' => time(),
|
|
||||||
'fileSource' => $fileSource,
|
|
||||||
'fileTarget' => $fileTarget,
|
|
||||||
'token' => $token,
|
|
||||||
'parent' => $parent,
|
|
||||||
'expiration' => $expirationDate,
|
|
||||||
));
|
|
||||||
|
|
||||||
$id = \OC_DB::insertid('*PREFIX*share');
|
|
||||||
\OC_Hook::emit('OCP\Share', 'post_shared', array(
|
|
||||||
'itemType' => $itemType,
|
|
||||||
'itemSource' => $itemSource,
|
|
||||||
'itemTarget' => $itemTarget,
|
|
||||||
'parent' => $parent,
|
|
||||||
'shareType' => $shareType,
|
|
||||||
'shareWith' => $shareWith,
|
|
||||||
'uidOwner' => $uidOwner,
|
|
||||||
'permissions' => $permissions,
|
|
||||||
'fileSource' => $fileSource,
|
|
||||||
'fileTarget' => $fileTarget,
|
|
||||||
'id' => $id,
|
|
||||||
'token' => $token,
|
|
||||||
'expirationDate' => $expirationDate,
|
|
||||||
));
|
|
||||||
if ($parentFolder === true) {
|
|
||||||
$parentFolders['id'] = $id;
|
|
||||||
// Return parent folder to preserve file target paths for potential children
|
|
||||||
return $parentFolders;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static function checkReshare($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $itemSourceName, $expirationDate) {
|
||||||
|
$backend = self::getBackend($itemType);
|
||||||
|
|
||||||
|
$l = \OC::$server->getL10N('lib');
|
||||||
|
$result = array();
|
||||||
|
|
||||||
|
$checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true);
|
||||||
|
if ($checkReshare) {
|
||||||
|
// Check if attempting to share back to owner
|
||||||
|
if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) {
|
||||||
|
$message = 'Sharing %s failed, because the user %s is the original sharer';
|
||||||
|
$message_t = $l->t('Sharing %s failed, because the user %s is the original sharer', array($itemSourceName, $shareWith));
|
||||||
|
|
||||||
|
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR);
|
||||||
|
throw new \Exception($message_t);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if share permissions is granted
|
||||||
|
if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) {
|
||||||
|
if (~(int)$checkReshare['permissions'] & $permissions) {
|
||||||
|
$message = 'Sharing %s failed, because the permissions exceed permissions granted to %s';
|
||||||
|
$message_t = $l->t('Sharing %s failed, because the permissions exceed permissions granted to %s', array($itemSourceName, $uidOwner));
|
||||||
|
|
||||||
|
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner), \OC_Log::ERROR);
|
||||||
|
throw new \Exception($message_t);
|
||||||
|
} else {
|
||||||
|
// TODO Don't check if inside folder
|
||||||
|
$result['parent'] = $checkReshare['id'];
|
||||||
|
$result['itemSource'] = $checkReshare['item_source'];
|
||||||
|
$result['fileSource'] = $checkReshare['file_source'];
|
||||||
|
$result['suggestedItemTarget'] = $checkReshare['item_target'];
|
||||||
|
$result['suggestedFileTarget'] = $checkReshare['file_target'];
|
||||||
|
$result['filePath'] = $checkReshare['file_target'];
|
||||||
|
$result['expirationDate'] = min($expirationDate, $checkReshare['expiration']);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$message = 'Sharing %s failed, because resharing is not allowed';
|
||||||
|
$message_t = $l->t('Sharing %s failed, because resharing is not allowed', array($itemSourceName));
|
||||||
|
|
||||||
|
\OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR);
|
||||||
|
throw new \Exception($message_t);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$result['parent'] = null;
|
||||||
|
$result['suggestedItemTarget'] = null;
|
||||||
|
$result['suggestedFileTarget'] = null;
|
||||||
|
$result['itemSource'] = $itemSource;
|
||||||
|
$result['expirationDate'] = $expirationDate;
|
||||||
|
if (!$backend->isValidSource($itemSource, $uidOwner)) {
|
||||||
|
$message = 'Sharing %s failed, because the sharing backend for '
|
||||||
|
.'%s could not find its source';
|
||||||
|
$message_t = $l->t('Sharing %s failed, because the sharing backend for %s could not find its source', array($itemSource, $itemType));
|
||||||
|
\OC_Log::write('OCP\Share', sprintf($message, $itemSource, $itemType), \OC_Log::ERROR);
|
||||||
|
throw new \Exception($message_t);
|
||||||
|
}
|
||||||
|
if ($backend instanceof \OCP\Share_Backend_File_Dependent) {
|
||||||
|
$result['filePath'] = $backend->getFilePath($itemSource, $uidOwner);
|
||||||
|
if ($itemType == 'file' || $itemType == 'folder') {
|
||||||
|
$result['fileSource'] = $itemSource;
|
||||||
|
} else {
|
||||||
|
$meta = \OC\Files\Filesystem::getFileInfo($result['filePath']);
|
||||||
|
$result['fileSource'] = $meta['fileid'];
|
||||||
|
}
|
||||||
|
if ($result['fileSource'] == -1) {
|
||||||
|
$message = 'Sharing %s failed, because the file could not be found in the file cache';
|
||||||
|
$message_t = $l->t('Sharing %s failed, because the file could not be found in the file cache', array($itemSource));
|
||||||
|
|
||||||
|
\OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR);
|
||||||
|
throw new \Exception($message_t);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$result['filePath'] = null;
|
||||||
|
$result['fileSource'] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
private static function insertShare(array $shareData)
|
private static function insertShare(array $shareData)
|
||||||
{
|
{
|
||||||
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` ('
|
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` ('
|
||||||
|
|
Loading…
Reference in New Issue