summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorscambra <sergio@entrecables.com>2012-07-06 12:22:21 +0200
committervirtual <virtual@o-hal.entrecables.com>2012-09-19 21:31:29 +0200
commit2b5133a1c443512dcf87d59cc84425bc8400df84 (patch)
treed266aed4e690fdd4393e42431984d43320926dde /apps/files_sharing
parent518ca0ac58c7cf762d0fc51f75cc886cedd495b0 (diff)
downloadnextcloud-server-2b5133a1c443512dcf87d59cc84425bc8400df84.tar.gz
nextcloud-server-2b5133a1c443512dcf87d59cc84425bc8400df84.zip
check free space using folder's owner
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/lib/sharedstorage.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php
index 6dba76955a0..7271dcc930b 100644
--- a/apps/files_sharing/lib/sharedstorage.php
+++ b/apps/files_sharing/lib/sharedstorage.php
@@ -108,6 +108,14 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common {
return $internalPath;
}
+ public function getOwner($target) {
+ $shared_item = OCP\Share::getItemSharedWith('folder', $target, OC_Share_Backend_File::FORMAT_SHARED_STORAGE);
+ if ($shared_item) {
+ return $shared_item[0]["uid_owner"];
+ }
+ return null;
+ }
+
public function mkdir($path) {
if ($path == '' || $path == '/' || !$this->isCreatable(dirname($path))) {
return false;