nextcloud/lib/private/Preview/WatcherConnector.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.2 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Preview;
use OC\SystemConfig;
use OCA\Files_Versions\Events\VersionRestoredEvent;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Files\IRootFolder;
use OCP\Files\Node;
use OCP\Server;
class WatcherConnector {
private ?Watcher $watcher = null;
public function __construct(
private IRootFolder $root,
private SystemConfig $config,
private IEventDispatcher $dispatcher,
) {
}
private function getWatcher(): Watcher {
if ($this->watcher !== null) {
return $this->watcher;
}
$this->watcher = Server::get(Watcher::class);
return $this->watcher;
}
public function connectWatcher(): void {
// Do not connect if we are not setup yet!
if ($this->config->getValue('instanceid', null) !== null) {
$this->root->listen('\OC\Files', 'postWrite', function (Node $node): void {
$this->getWatcher()->postWrite($node);
});
$this->dispatcher->addListener(VersionRestoredEvent::class, function (VersionRestoredEvent $event): void {
$this->getWatcher()->versionRollback(['node' => $event->getVersion()->getSourceFile()]);
});
}
}
}