Merge pull request #8830 from nextcloud/node_emit_read
Emit read for nodes
This commit is contained in:
commit
fa886ef4eb
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue