123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\DAV\Connector\Sabre;
- use OCA\DAV\Connector\Sabre\Exception\FileLocked;
- use OCA\DAV\Connector\Sabre\Exception\PasswordLoginForbidden;
- use OCA\DAV\Exception\ServerMaintenanceMode;
- use OCP\Files\StorageNotAvailableException;
- use Psr\Log\LoggerInterface;
- use Sabre\DAV\Exception\BadRequest;
- use Sabre\DAV\Exception\Conflict;
- use Sabre\DAV\Exception\Forbidden;
- use Sabre\DAV\Exception\InvalidSyncToken;
- use Sabre\DAV\Exception\MethodNotAllowed;
- use Sabre\DAV\Exception\NotAuthenticated;
- use Sabre\DAV\Exception\NotFound;
- use Sabre\DAV\Exception\NotImplemented;
- use Sabre\DAV\Exception\PreconditionFailed;
- use Sabre\DAV\Exception\RequestedRangeNotSatisfiable;
- class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
- protected $nonFatalExceptions = [
- NotAuthenticated::class => true,
- // If tokenauth can throw this exception (which is basically as
- // NotAuthenticated. So not fatal.
- PasswordLoginForbidden::class => true,
- // basically a NotAuthenticated
- InvalidSyncToken::class => true,
- // the sync client uses this to find out whether files exist,
- // so it is not always an error, log it as debug
- NotFound::class => true,
- // the sync client messed up their request
- // (e.g. propfind for tags with string instead of int)
- // so it is not always an error, log it as debug
- BadRequest::class => true,
- // this one mostly happens when the same file is uploaded at
- // exactly the same time from two clients, only one client
- // wins, the second one gets "Precondition failed"
- PreconditionFailed::class => true,
- // forbidden can be expected when trying to upload to
- // read-only folders for example
- Forbidden::class => true,
- // our forbidden is expected when access control is blocking
- // an item in a folder
- \OCA\DAV\Connector\Sabre\Exception\Forbidden::class => true,
- // Happens when an external storage or federated share is temporarily
- // not available
- StorageNotAvailableException::class => true,
- // happens if some a client uses the wrong method for a given URL
- // the error message itself is visible on the client side anyways
- NotImplemented::class => true,
- // happens when the parent directory is not present (for example when a
- // move is done to a non-existent directory)
- Conflict::class => true,
- // happens when a certain method is not allowed to be called
- // for example creating a folder that already exists
- MethodNotAllowed::class => true,
- // A locked file is perfectly valid and can happen in various cases
- FileLocked::class => true,
- // An invalid range is requested
- RequestedRangeNotSatisfiable::class => true,
- ServerMaintenanceMode::class => true,
- ];
- private string $appName;
- private LoggerInterface $logger;
- /**
- * @param string $loggerAppName app name to use when logging
- */
- public function __construct(string $loggerAppName, LoggerInterface $logger) {
- $this->appName = $loggerAppName;
- $this->logger = $logger;
- }
- /**
- * This initializes the plugin.
- *
- * This function is called by \Sabre\DAV\Server, after
- * addPlugin is called.
- *
- * This method should set up the required event subscriptions.
- *
- * @param \Sabre\DAV\Server $server
- * @return void
- */
- public function initialize(\Sabre\DAV\Server $server) {
- $server->on('exception', [$this, 'logException'], 10);
- }
- /**
- * Log exception
- */
- public function logException(\Throwable $ex) {
- $exceptionClass = get_class($ex);
- if (isset($this->nonFatalExceptions[$exceptionClass])) {
- $this->logger->debug($ex->getMessage(), [
- 'app' => $this->appName,
- 'exception' => $ex,
- ]);
- return;
- }
- $this->logger->critical($ex->getMessage(), [
- 'app' => $this->appName,
- 'exception' => $ex,
- ]);
- }
- }
|