aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2024-09-18 17:09:49 +0200
committerRobin Appelman <robin@icewind.nl>2024-09-19 17:51:51 +0200
commitee9f3115d93768da65587559aa7e70830633c802 (patch)
treebc6e63fd3e13a10dc29946a2b264eef9ce963bf6
parentfafc93b08a50bcebba293d4cc515f0294ee6b45f (diff)
downloadnextcloud-server-ee9f3115d93768da65587559aa7e70830633c802.tar.gz
nextcloud-server-ee9f3115d93768da65587559aa7e70830633c802.zip
fix: Override start method of \Sabre\DAV\Server to remove exception output
Signed-off-by: Louis Chemineau <louis@chmn.me>
-rw-r--r--apps/dav/lib/Connector/Sabre/Server.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Server.php b/apps/dav/lib/Connector/Sabre/Server.php
index 6cf6fa954c8..0831a47b491 100644
--- a/apps/dav/lib/Connector/Sabre/Server.php
+++ b/apps/dav/lib/Connector/Sabre/Server.php
@@ -43,4 +43,27 @@ class Server extends \Sabre\DAV\Server {
self::$exposeVersion = false;
$this->enablePropfindDepthInfinity = true;
}
+
+ // Copied from 3rdparty/sabre/dav/lib/DAV/Server.php
+ // Should be them exact same without the exception output.
+ public function start(): void {
+ try {
+ // If nginx (pre-1.2) is used as a proxy server, and SabreDAV as an
+ // origin, we must make sure we send back HTTP/1.0 if this was
+ // requested.
+ // This is mainly because nginx doesn't support Chunked Transfer
+ // Encoding, and this forces the webserver SabreDAV is running on,
+ // to buffer entire responses to calculate Content-Length.
+ $this->httpResponse->setHTTPVersion($this->httpRequest->getHTTPVersion());
+
+ // Setting the base url
+ $this->httpRequest->setBaseUrl($this->getBaseUri());
+ $this->invokeMethod($this->httpRequest, $this->httpResponse);
+ } catch (\Throwable $e) {
+ try {
+ $this->emit('exception', [$e]);
+ } catch (\Exception $ignore) {
+ }
+ }
+ }
}