Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-10-27 13:08:03 +0300
committerGitHub <noreply@github.com>2022-10-27 13:08:03 +0300
commit33689b7123391380a7e1cdf315e4b654c9ea8f3a (patch)
treee427f9ca52695fe43d676438ce9bd45502665b1b
parent8381bed6128c9f49acd40ac59170d4d3fa6ad4be (diff)
parent02624618bf7716ad134ac49aaafc488029eb2236 (diff)
Merge pull request #34585 from nextcloud/backport/34438/stable23
[stable23] return proper error code when reporting exception fails in remote.php
-rw-r--r--remote.php70
1 files changed, 37 insertions, 33 deletions
diff --git a/remote.php b/remote.php
index 69e3a53eeec..5254b2b7419 100644
--- a/remote.php
+++ b/remote.php
@@ -49,42 +49,46 @@ class RemoteException extends Exception {
* @param Exception|Error $e
*/
function handleException($e) {
- $request = \OC::$server->getRequest();
- // in case the request content type is text/xml - we assume it's a WebDAV request
- $isXmlContentType = strpos($request->getHeader('Content-Type'), 'text/xml');
- if ($isXmlContentType === 0) {
- // fire up a simple server to properly process the exception
- $server = new Server();
- if (!($e instanceof RemoteException)) {
- // we shall not log on RemoteException
- $server->addPlugin(new ExceptionLoggerPlugin('webdav', \OC::$server->getLogger()));
- }
- $server->on('beforeMethod:*', function () use ($e) {
- if ($e instanceof RemoteException) {
- switch ($e->getCode()) {
- case 503:
- throw new ServiceUnavailable($e->getMessage());
- case 404:
- throw new \Sabre\DAV\Exception\NotFound($e->getMessage());
- }
+ try {
+ $request = \OC::$server->getRequest();
+ // in case the request content type is text/xml - we assume it's a WebDAV request
+ $isXmlContentType = strpos($request->getHeader('Content-Type'), 'text/xml');
+ if ($isXmlContentType === 0) {
+ // fire up a simple server to properly process the exception
+ $server = new Server();
+ if (!($e instanceof RemoteException)) {
+ // we shall not log on RemoteException
+ $server->addPlugin(new ExceptionLoggerPlugin('webdav', \OC::$server->getLogger()));
}
- $class = get_class($e);
- $msg = $e->getMessage();
- throw new ServiceUnavailable("$class: $msg");
- });
- $server->exec();
- } else {
- $statusCode = 500;
- if ($e instanceof \OC\ServiceUnavailableException) {
- $statusCode = 503;
- }
- if ($e instanceof RemoteException) {
- // we shall not log on RemoteException
- OC_Template::printErrorPage($e->getMessage(), '', $e->getCode());
+ $server->on('beforeMethod:*', function () use ($e) {
+ if ($e instanceof RemoteException) {
+ switch ($e->getCode()) {
+ case 503:
+ throw new ServiceUnavailable($e->getMessage());
+ case 404:
+ throw new \Sabre\DAV\Exception\NotFound($e->getMessage());
+ }
+ }
+ $class = get_class($e);
+ $msg = $e->getMessage();
+ throw new ServiceUnavailable("$class: $msg");
+ });
+ $server->exec();
} else {
- \OC::$server->getLogger()->logException($e, ['app' => 'remote']);
- OC_Template::printExceptionErrorPage($e, $statusCode);
+ $statusCode = 500;
+ if ($e instanceof \OC\ServiceUnavailableException) {
+ $statusCode = 503;
+ }
+ if ($e instanceof RemoteException) {
+ // we shall not log on RemoteException
+ OC_Template::printErrorPage($e->getMessage(), '', $e->getCode());
+ } else {
+ \OC::$server->getLogger()->logException($e, ['app' => 'remote']);
+ OC_Template::printExceptionErrorPage($e, $statusCode);
+ }
}
+ } catch (\Exception $e) {
+ OC_Template::printExceptionErrorPage($e, 500);
}
}