Browse Source

Cache shareManager

There is no need to call \OC::$server->getShareManager for each Node.
We have it available so better pass it around.
remotes/origin/introduce-core-app
Roeland Jago Douma 10 years ago
parent
commit
3c2fee8775
No known key found for this signature in database GPG Key ID: 1E152838F164D13B
  1. 9
      apps/dav/lib/connector/sabre/directory.php

9
apps/dav/lib/connector/sabre/directory.php

@ -64,9 +64,10 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node
* @param \OC\Files\View $view
* @param \OCP\Files\FileInfo $info
* @param ObjectTree|null $tree
* @param \OCP\Share\IManager $shareManager
*/
public function __construct($view, $info, $tree = null) {
parent::__construct($view, $info);
public function __construct($view, $info, $tree = null, $shareManager = null) {
parent::__construct($view, $info, $shareManager);
$this->tree = $tree;
}
@ -202,9 +203,9 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node
}
if ($info['mimetype'] == 'httpd/unix-directory') {
$node = new \OCA\DAV\Connector\Sabre\Directory($this->fileView, $info, $this->tree);
$node = new \OCA\DAV\Connector\Sabre\Directory($this->fileView, $info, $this->tree, $this->shareManager);
} else {
$node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info, $this->shareManager);
}
if ($this->tree) {
$this->tree->cacheNode($node);

Loading…
Cancel
Save