Merge pull request #8830 from nextcloud/node_emit_read

Emit read for nodes
This commit is contained in:
Roeland Jago Douma 2018-03-15 14:04:14 +01:00 committed by GitHub
commit fa886ef4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -72,6 +72,8 @@ class HookConnector {
Util::connectHook('OC_Filesystem', 'touch', $this, 'touch');
Util::connectHook('OC_Filesystem', 'post_touch', $this, 'postTouch');
Util::connectHook('OC_Filesystem', 'read', $this, 'read');
}
public function write($arguments) {
@ -140,6 +142,11 @@ class HookConnector {
$this->root->emit('\OC\Files', 'postCopy', [$source, $target]);
}
public function read($arguments) {
$node = $this->getNodeForPath($arguments['path']);
$this->root->emit('\OC\Files', 'read', [$node]);
}
private function getNodeForPath($path) {
$info = Filesystem::getView()->getFileInfo($path);
if (!$info) {