summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-12-10 14:14:54 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-11 11:40:58 +0100
commit300eb54c871cfe48165ee32ecdc5067226aa0b7b (patch)
tree4ed24210cce449f439ec1c30e5dced7f9e71b1e3 /apps/files_trashbin/lib
parentfd2e1086c69e2c4c237e8ceab06f8948983bbb17 (diff)
downloadnextcloud-server-300eb54c871cfe48165ee32ecdc5067226aa0b7b.tar.gz
nextcloud-server-300eb54c871cfe48165ee32ecdc5067226aa0b7b.zip
de-deplicate getUidAndFilename
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r--apps/files_trashbin/lib/trashbin.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php
index bd6798f0eff..874aceaad10 100644
--- a/apps/files_trashbin/lib/trashbin.php
+++ b/apps/files_trashbin/lib/trashbin.php
@@ -71,18 +71,7 @@ class Trashbin {
* @throws \OC\User\NoUserException
*/
public static function getUidAndFilename($filename) {
- $uid = \OC\Files\Filesystem::getOwner($filename);
- \OC\Files\Filesystem::initMountPoints($uid);
- if ($uid != \OCP\User::getUser()) {
- $info = \OC\Files\Filesystem::getFileInfo($filename);
- $ownerView = new \OC\Files\View('/' . $uid . '/files');
- try {
- $filename = $ownerView->getPath($info['fileid']);
- } catch (NotFoundException $e) {
- $filename = null;
- }
- }
- return [$uid, $filename];
+ return Filesystem::getView()->getUidAndFilename($filename);
}
/**