diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-21 11:32:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-21 11:32:30 +0100 |
commit | 23a4d0d44ef8b918f054e7ad608d04b2e9a68995 (patch) | |
tree | 97e921688f32f8b5a707e4d81d5486d9793a3558 /apps/files | |
parent | 0f794b6889d05508c86449dacdee3e05bd47d071 (diff) | |
download | nextcloud-server-23a4d0d44ef8b918f054e7ad608d04b2e9a68995.tar.gz nextcloud-server-23a4d0d44ef8b918f054e7ad608d04b2e9a68995.zip |
OC_Util::setupFS($user) will create a data dir for the given string - no matter if the user really exists - OCP\JSON::checkUserExists($owner); introduces a ready to use check which will bail out with an JSON error
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/ajax/upload.php | 1 | ||||
-rw-r--r-- | apps/files/triggerupdate.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0e905f993ac..bdaf6a77d14 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -34,6 +34,7 @@ if (empty($_POST['dirToken'])) { // resolve reshares $rootLinkItem = OCP\Share::resolveReShare($linkItem); + OCP\JSON::checkUserExists($rootLinkItem['uid_owner']); // Setup FS with owner OC_Util::tearDownFS(); OC_Util::setupFS($rootLinkItem['uid_owner']); diff --git a/apps/files/triggerupdate.php b/apps/files/triggerupdate.php index 0e29edbba35..a37b9823add 100644 --- a/apps/files/triggerupdate.php +++ b/apps/files/triggerupdate.php @@ -6,6 +6,7 @@ if (OC::$CLI) { if (count($argv) === 2) { $file = $argv[1]; list(, $user) = explode('/', $file); + OCP\JSON::checkUserExists($owner); OC_Util::setupFS($user); $view = new \OC\Files\View(''); /** |