]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove sensible information from exception message 1830/head
authorMorris Jobke <hey@morrisjobke.de>
Mon, 24 Oct 2016 09:32:17 +0000 (11:32 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Mon, 24 Oct 2016 09:42:04 +0000 (11:42 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
lib/private/Files/Node/Folder.php

index a6165fa9636fdb2dc862a5c5580d393fed5bc0fe..288a02ef2071807962b520a6fc28167158101fa0 100644 (file)
@@ -42,7 +42,7 @@ class Folder extends Node implements \OCP\Files\Folder {
         */
        public function getFullPath($path) {
                if (!$this->isValidPath($path)) {
-                       throw new NotPermittedException('Invalid path: ' . $path);
+                       throw new NotPermittedException('Invalid path');
                }
                return $this->path . $this->normalizePath($path);
        }
@@ -152,7 +152,7 @@ class Folder extends Node implements \OCP\Files\Folder {
                        $this->root->emit('\OC\Files', 'postCreate', array($node));
                        return $node;
                } else {
-                       throw new NotPermittedException('No create permission for folder ' . $this->getFullPath($path));
+                       throw new NotPermittedException('No create permission for folder');
                }
        }
 
@@ -173,7 +173,7 @@ class Folder extends Node implements \OCP\Files\Folder {
                        $this->root->emit('\OC\Files', 'postCreate', array($node));
                        return $node;
                } else {
-                       throw new NotPermittedException('No create permission for path ' . $this->getFullPath($path));
+                       throw new NotPermittedException('No create permission for path');
                }
        }
 
@@ -321,7 +321,7 @@ class Folder extends Node implements \OCP\Files\Folder {
                        $this->root->emit('\OC\Files', 'postDelete', array($nonExisting));
                        $this->exists = false;
                } else {
-                       throw new NotPermittedException('No delete permission for path ' . $this->getFullPath($this->path));
+                       throw new NotPermittedException('No delete permission for path');
                }
        }
 
@@ -343,7 +343,7 @@ class Folder extends Node implements \OCP\Files\Folder {
                        $this->root->emit('\OC\Files', 'postWrite', array($targetNode));
                        return $targetNode;
                } else {
-                       throw new NotPermittedException('No permission to copy to path ' . $targetPath);
+                       throw new NotPermittedException('No permission to copy to path');
                }
        }
 
@@ -366,7 +366,7 @@ class Folder extends Node implements \OCP\Files\Folder {
                        $this->path = $targetPath;
                        return $targetNode;
                } else {
-                       throw new NotPermittedException('No permission to move to path ' . $targetPath);
+                       throw new NotPermittedException('No permission to move to path');
                }
        }