Merge pull request #286 from owncloud/default-root-for-saving

Use default root when saving a session
This commit is contained in:
Vincent Petry 2014-06-30 16:35:00 +02:00
commit 733f20bdd8
2 changed files with 7 additions and 3 deletions

View File

@ -107,7 +107,7 @@ class SessionController extends Controller{
$file = new File($session->getFileId());
}
list($view, $path) = $file->getOwnerViewAndPath();
list($view, $path) = $file->getOwnerViewAndPath(true);
} catch (\Exception $e){
//File was deleted or unshared. We need to save content as new file anyway
//Sorry, but for guests it would be lost :(

View File

@ -148,7 +148,7 @@ class File {
* @return string owner of the current file item
* @throws \Exception
*/
public function getOwnerViewAndPath(){
public function getOwnerViewAndPath($useDefaultRoot = false){
if ($this->isPublicShare()){
$rootLinkItem = \OCP\Share::resolveReShare($this->sharing[0]);
if (isset($rootLinkItem['uid_owner'])){
@ -160,7 +160,11 @@ class File {
$path = $rootLinkItem['file_target'];
} else {
$owner = \OCP\User::getUser();
$view = new View('/' . $this->owner);
$root = '/' . $owner;
if ($useDefaultRoot){
$root .= '/' . 'files';
}
$view = new View($root);
$path = $view->getPath($this->fileId);
}