summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-05-06 14:46:11 +0200
committerJoas Schilling <coding@schilljs.com>2021-05-06 14:46:11 +0200
commit3d9abee6f0d03386e5764187c5dd5bf6df7a497a (patch)
tree5d0a478f0398deb8166c25fcfda34212963c2234
parent59752ce269dfb122ef9e3ae56c33464551aa74e1 (diff)
downloadnextcloud-server-3d9abee6f0d03386e5764187c5dd5bf6df7a497a.tar.gz
nextcloud-server-3d9abee6f0d03386e5764187c5dd5bf6df7a497a.zip
Don't break OCC if an app is breaking in it's Application class
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/private/AppFramework/Bootstrap/Coordinator.php30
-rw-r--r--lib/private/legacy/OC_App.php10
2 files changed, 25 insertions, 15 deletions
diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php
index 06a17e5242b..80ef24b5204 100644
--- a/lib/private/AppFramework/Bootstrap/Coordinator.php
+++ b/lib/private/AppFramework/Bootstrap/Coordinator.php
@@ -113,22 +113,24 @@ class Coordinator {
*/
$appNameSpace = App::buildAppNamespace($appId);
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
- if (class_exists($applicationClassName) && in_array(IBootstrap::class, class_implements($applicationClassName), true)) {
- try {
- /** @var IBootstrap|App $application */
- $apps[$appId] = $application = $this->serverContainer->query($applicationClassName);
- } catch (QueryException $e) {
- // Weird, but ok
- continue;
- }
- try {
+ try {
+ if (class_exists($applicationClassName) && in_array(IBootstrap::class, class_implements($applicationClassName), true)) {
+ try {
+ /** @var IBootstrap|App $application */
+ $apps[$appId] = $application = $this->serverContainer->query($applicationClassName);
+ } catch (QueryException $e) {
+ // Weird, but ok
+ continue;
+ }
$application->register($this->registrationContext->for($appId));
- } catch (Throwable $e) {
- $this->logger->logException($e, [
- 'message' => 'Error during app service registration: ' . $e->getMessage(),
- 'level' => ILogger::FATAL,
- ]);
}
+ } catch (Throwable $e) {
+ $this->logger->logException($e, [
+ 'message' => 'Error during app service registration: ' . $e->getMessage(),
+ 'level' => ILogger::FATAL,
+ 'app' => $appId,
+ ]);
+ continue;
}
}
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php
index a64b13f1e2c..6fecddba540 100644
--- a/lib/private/legacy/OC_App.php
+++ b/lib/private/legacy/OC_App.php
@@ -134,7 +134,15 @@ class OC_App {
ob_start();
foreach ($apps as $app) {
if (!isset(self::$loadedApps[$app]) && ($types === [] || self::isType($app, $types))) {
- self::loadApp($app);
+ try {
+ self::loadApp($app);
+ } catch (\Throwable $e) {
+ \OC::$server->getLogger()->logException($e, [
+ 'message' => 'Error during app loading: ' . $e->getMessage(),
+ 'level' => ILogger::FATAL,
+ 'app' => $app,
+ ]);
+ }
}
}
ob_end_clean();