]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix public preview creation if a user ios logged in
authorBjoern Schiessle <schiessle@owncloud.com>
Wed, 27 Nov 2013 17:35:52 +0000 (18:35 +0100)
committerBjoern Schiessle <schiessle@owncloud.com>
Wed, 27 Nov 2013 17:44:01 +0000 (18:44 +0100)
apps/files_sharing/ajax/publicpreview.php

index 41a1c178a48f64243343c41842cdcadfa64c82e7..8c3085f158955fa87517c6a2e520453fc491e3ef 100644 (file)
@@ -9,6 +9,8 @@ if(!\OC_App::isEnabled('files_sharing')){
        exit;
 }
 
+\OC_User::setIncognitoMode(true);
+
 $file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : '';
 $maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : '36';
 $maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : '36';
@@ -36,10 +38,12 @@ if(!isset($linkedItem['uid_owner']) || !isset($linkedItem['file_source'])) {
 
 $userId = $linkedItem['uid_owner'];
 \OC_Util::setupFS($userId);
+\OC\Files\Filesystem::initMountPoints($userId);
+$view = new \OC\Files\View('/' . $userId . '/files');
 
 $pathId = $linkedItem['file_source'];
-$path = \OC\Files\Filesystem::getPath($pathId);
-$pathInfo = \OC\Files\Filesystem::getFileInfo($path);
+$path = $view->getPath($pathId);
+$pathInfo = $view->getFileInfo($path);
 $sharedFile = null;
 
 if($linkedItem['item_type'] === 'folder') {
@@ -54,7 +58,7 @@ if($linkedItem['item_type'] === 'folder') {
 
 if($linkedItem['item_type'] === 'file') {
        $parent = $pathInfo['parent'];
-       $path = \OC\Files\Filesystem::getPath($parent);
+       $path = $view->getPath($parent);
        $sharedFile = $pathInfo['name'];
 }