summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2016-12-21 15:42:57 +0100
committerBjoern Schiessle <bjoern@schiessle.org>2016-12-21 17:28:47 +0100
commit0e4eeab3c138a867399ed02cc3b2480667156e91 (patch)
tree1c3d83bb2c2d67d15d48d315ac32da89ed116fbe /apps/files_trashbin
parentd5036fd4af9cf29c666a526dfb03f7e261cbc951 (diff)
downloadnextcloud-server-0e4eeab3c138a867399ed02cc3b2480667156e91.tar.gz
nextcloud-server-0e4eeab3c138a867399ed02cc3b2480667156e91.zip
add a copy to the owners trash bin if another user moves a file out of a shared folder
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/Storage.php69
-rw-r--r--apps/files_trashbin/lib/Trashbin.php8
2 files changed, 67 insertions, 10 deletions
diff --git a/apps/files_trashbin/lib/Storage.php b/apps/files_trashbin/lib/Storage.php
index a6672dbf63a..7f44ef3ea32 100644
--- a/apps/files_trashbin/lib/Storage.php
+++ b/apps/files_trashbin/lib/Storage.php
@@ -28,6 +28,7 @@ namespace OCA\Files_Trashbin;
use OC\Files\Filesystem;
use OC\Files\Storage\Wrapper\Wrapper;
use OC\Files\View;
+use OCA\Files_Sharing\SharedStorage;
use OCP\IUserManager;
class Storage extends Wrapper {
@@ -44,10 +45,18 @@ class Storage extends Wrapper {
*/
private static $disableTrash = false;
+ private static $moveOutOfSharedFolder = [];
+
/** @var IUserManager */
private $userManager;
- function __construct($parameters, IUserManager $userManager = null) {
+ /**
+ * Storage constructor.
+ *
+ * @param array $parameters
+ * @param IUserManager|null $userManager
+ */
+ public function __construct($parameters, IUserManager $userManager = null) {
$this->mountPoint = $parameters['mountPoint'];
$this->userManager = $userManager;
parent::__construct($parameters);
@@ -58,8 +67,38 @@ class Storage extends Wrapper {
*/
public static function preRenameHook($params) {
// in cross-storage cases, a rename is a copy + unlink,
- // that last unlink must not go to trash
- self::$disableTrash = true;
+ // that last unlink must not go to trash, only exception:
+ // if the file was moved from a shared storage to a local folder,
+ // in this case the owner should get a copy in his trash bin so that
+ // they can restore the files again
+
+ $oldPath = $params['oldpath'];
+ $newPath = dirname($params['newpath']);
+ $currentUser = \OC::$server->getUserSession()->getUser();
+
+ $fileMovedOutOfSharedFolder = false;
+
+ if ($currentUser) {
+ $currentUserId = $currentUser->getUID();
+
+ $view = new View($currentUserId . '/files');
+ $sourceStorage = $view->getFileInfo($oldPath)->getStorage();
+ $sourceOwner = $view->getOwner($oldPath);
+ $targetOwner = $view->getOwner($newPath);
+
+ if($sourceOwner !== $targetOwner
+ && $sourceStorage->instanceOfStorage(SharedStorage::class)
+ ) {
+ $fileMovedOutOfSharedFolder = true;
+ }
+ }
+
+ if($fileMovedOutOfSharedFolder) {
+ self::$moveOutOfSharedFolder['/' . $currentUserId . '/files' . $oldPath] = true;
+ } else {
+ self::$disableTrash = true;
+ }
+
}
/**
@@ -74,6 +113,7 @@ class Storage extends Wrapper {
*
* @param string $path1 first path
* @param string $path2 second path
+ * @return bool
*/
public function rename($path1, $path2) {
$result = $this->storage->rename($path1, $path2);
@@ -93,7 +133,14 @@ class Storage extends Wrapper {
* @return bool true if the operation succeeded, false otherwise
*/
public function unlink($path) {
- return $this->doDelete($path, 'unlink');
+ if (isset(self::$moveOutOfSharedFolder[$this->mountPoint . $path])) {
+ $result = $this->doDelete($path, 'unlink', true);
+ unset(self::$moveOutOfSharedFolder[$this->mountPoint . $path]);
+ } else {
+ $result = $this->doDelete($path, 'unlink');
+ }
+
+ return $result;
}
/**
@@ -104,7 +151,14 @@ class Storage extends Wrapper {
* @return bool true if the operation succeeded, false otherwise
*/
public function rmdir($path) {
- return $this->doDelete($path, 'rmdir');
+ if (isset(self::$moveOutOfSharedFolder[$this->mountPoint . $path])) {
+ $result = $this->doDelete($path, 'rmdir', true);
+ unset(self::$moveOutOfSharedFolder[$this->mountPoint . $path]);
+ } else {
+ $result = $this->doDelete($path, 'rmdir');
+ }
+
+ return $result;
}
/**
@@ -133,10 +187,11 @@ class Storage extends Wrapper {
*
* @param string $path path of file or folder to delete
* @param string $method either "unlink" or "rmdir"
+ * @param bool $ownerOnly delete for owner only (if file gets moved out of a shared folder)
*
* @return bool true if the operation succeeded, false otherwise
*/
- private function doDelete($path, $method) {
+ private function doDelete($path, $method, $ownerOnly = false) {
if (self::$disableTrash
|| !\OC_App::isEnabled('files_trashbin')
|| (pathinfo($path, PATHINFO_EXTENSION) === 'part')
@@ -158,7 +213,7 @@ class Storage extends Wrapper {
$this->deletedFiles[$normalized] = $normalized;
if ($filesPath = $view->getRelativePath($normalized)) {
$filesPath = trim($filesPath, '/');
- $result = \OCA\Files_Trashbin\Trashbin::move2trash($filesPath);
+ $result = \OCA\Files_Trashbin\Trashbin::move2trash($filesPath, $ownerOnly);
// in cross-storage cases the file will be copied
// but not deleted, so we delete it here
if ($result) {
diff --git a/apps/files_trashbin/lib/Trashbin.php b/apps/files_trashbin/lib/Trashbin.php
index bf2fa57453f..e9376e8a3af 100644
--- a/apps/files_trashbin/lib/Trashbin.php
+++ b/apps/files_trashbin/lib/Trashbin.php
@@ -196,9 +196,11 @@ class Trashbin {
* move file to the trash bin
*
* @param string $file_path path to the deleted file/directory relative to the files root directory
+ * @param bool $ownerOnly delete for owner only (if file gets moved out of a shared folder)
+ *
* @return bool
*/
- public static function move2trash($file_path) {
+ public static function move2trash($file_path, $ownerOnly = false) {
// get the user for which the filesystem is setup
$root = Filesystem::getRoot();
list(, $user) = explode('/', $root);
@@ -261,8 +263,8 @@ class Trashbin {
self::retainVersions($filename, $owner, $ownerPath, $timestamp);
- // if owner !== user we need to also add a copy to the owners trash
- if ($user !== $owner) {
+ // if owner !== user we need to also add a copy to the users trash
+ if ($user !== $owner && $ownerOnly === false) {
self::copyFilesToUser($ownerPath, $owner, $file_path, $user, $timestamp);
}
}