123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\AdminAudit\Actions;
- use OCP\Files\Events\Node\BeforeNodeReadEvent;
- use OCP\Files\Events\Node\BeforeNodeWrittenEvent;
- use OCP\Files\Events\Node\NodeCopiedEvent;
- use OCP\Files\Events\Node\NodeCreatedEvent;
- use OCP\Files\Events\Node\NodeDeletedEvent;
- use OCP\Files\Events\Node\NodeRenamedEvent;
- use OCP\Files\Events\Node\NodeWrittenEvent;
- use OCP\Files\InvalidPathException;
- use OCP\Files\NotFoundException;
- use OCP\Preview\BeforePreviewFetchedEvent;
- use Psr\Log\LoggerInterface;
- /**
- * Class Files logs the actions to files
- *
- * @package OCA\AdminAudit\Actions
- */
- class Files extends Action {
- /**
- * Logs file read actions
- *
- * @param BeforeNodeReadEvent $event
- */
- public function read(BeforeNodeReadEvent $event): void {
- try {
- $params = [
- 'id' => $event->getNode()->getId(),
- 'path' => mb_substr($event->getNode()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file read: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'File with id "%s" accessed: "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs rename actions of files
- *
- * @param NodeRenamedEvent $event
- */
- public function rename(NodeRenamedEvent $event): void {
- try {
- $source = $event->getSource();
- $target = $event->getTarget();
- $params = [
- 'newid' => $target->getId(),
- 'oldpath' => mb_substr($source->getPath(), 5),
- 'newpath' => mb_substr($target->getPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file rename: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'File renamed with id "%s" from "%s" to "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs creation of files
- *
- * @param NodeCreatedEvent $event
- */
- public function create(NodeCreatedEvent $event): void {
- try {
- $params = [
- 'id' => $event->getNode()->getId(),
- 'path' => mb_substr($event->getNode()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file create: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- if ($params['path'] === '/' || $params['path'] === '') {
- return;
- }
- $this->log(
- 'File with id "%s" created: "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs copying of files
- *
- * @param NodeCopiedEvent $event
- */
- public function copy(NodeCopiedEvent $event): void {
- try {
- $params = [
- 'oldid' => $event->getSource()->getId(),
- 'newid' => $event->getTarget()->getId(),
- 'oldpath' => mb_substr($event->getSource()->getInternalPath(), 5),
- 'newpath' => mb_substr($event->getTarget()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file copy: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'File id copied from: "%s" to "%s", path from "%s" to "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs writing of files
- *
- * @param BeforeNodeWrittenEvent $event
- */
- public function write(BeforeNodeWrittenEvent $event): void {
- try {
- $params = [
- 'id' => $event->getNode()->getId(),
- 'path' => mb_substr($event->getNode()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file write: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- if ($params['path'] === '/' || $params['path'] === '') {
- return;
- }
- $this->log(
- 'File with id "%s" written to: "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs update of files
- *
- * @param NodeWrittenEvent $event
- */
- public function update(NodeWrittenEvent $event): void {
- try {
- $params = [
- 'id' => $event->getNode()->getId(),
- 'path' => mb_substr($event->getNode()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file update: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'File with id "%s" updated: "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs deletions of files
- *
- * @param NodeDeletedEvent $event
- */
- public function delete(NodeDeletedEvent $event): void {
- try {
- $params = [
- 'id' => $event->getNode()->getId(),
- 'path' => mb_substr($event->getNode()->getInternalPath(), 5),
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file delete: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'File with id "%s" deleted: "%s"',
- $params,
- array_keys($params)
- );
- }
- /**
- * Logs preview access to a file
- *
- * @param BeforePreviewFetchedEvent $event
- */
- public function preview(BeforePreviewFetchedEvent $event): void {
- try {
- $file = $event->getNode();
- $params = [
- 'id' => $file->getId(),
- 'width' => $event->getWidth(),
- 'height' => $event->getHeight(),
- 'crop' => $event->isCrop(),
- 'mode' => $event->getMode(),
- 'path' => mb_substr($file->getInternalPath(), 5)
- ];
- } catch (InvalidPathException|NotFoundException $e) {
- \OCP\Server::get(LoggerInterface::class)->error(
- "Exception thrown in file preview: ".$e->getMessage(), ['app' => 'admin_audit', 'exception' => $e]
- );
- return;
- }
- $this->log(
- 'Preview accessed: (id: "%s", width: "%s", height: "%s" crop: "%s", mode: "%s", path: "%s")',
- $params,
- array_keys($params)
- );
- }
- }
|