mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: make core application bootstrapable by coordinator
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
0a982374ec
commit
c21e189850
8 changed files with 23 additions and 11 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
namespace OC\Core;
|
||||
namespace OC\Core\AppInfo;
|
||||
|
||||
use OC\Authentication\Events\RemoteWipeFinished;
|
||||
use OC\Authentication\Events\RemoteWipeStarted;
|
||||
|
|
@ -784,8 +784,8 @@ class OC {
|
|||
// Make sure that the application class is not loaded before the database is setup
|
||||
if ($systemConfig->getValue('installed', false)) {
|
||||
$appManager->loadApp('settings');
|
||||
/* Build core application to make sure that listeners are registered */
|
||||
Server::get(\OC\Core\Application::class);
|
||||
/* Run core application registration */
|
||||
$bootstrapCoordinator->runLazyRegistration('core');
|
||||
}
|
||||
|
||||
//make sure temporary files are cleaned up
|
||||
|
|
|
|||
|
|
@ -1202,7 +1202,7 @@ return array(
|
|||
'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',
|
||||
'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',
|
||||
'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',
|
||||
'OC\\Core\\Application' => $baseDir . '/core/Application.php',
|
||||
'OC\\Core\\AppInfo\\Application' => $baseDir . '/core/AppInfo/Application.php',
|
||||
'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => $baseDir . '/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',
|
||||
'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => $baseDir . '/core/BackgroundJobs/CheckForUserCertificates.php',
|
||||
'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => $baseDir . '/core/BackgroundJobs/CleanupLoginFlowV2.php',
|
||||
|
|
|
|||
|
|
@ -1243,7 +1243,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
|
|||
'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',
|
||||
'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',
|
||||
'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',
|
||||
'OC\\Core\\Application' => __DIR__ . '/../../..' . '/core/Application.php',
|
||||
'OC\\Core\\AppInfo\\Application' => __DIR__ . '/../../..' . '/core/AppInfo/Application.php',
|
||||
'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => __DIR__ . '/../../..' . '/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',
|
||||
'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => __DIR__ . '/../../..' . '/core/BackgroundJobs/CheckForUserCertificates.php',
|
||||
'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => __DIR__ . '/../../..' . '/core/BackgroundJobs/CleanupLoginFlowV2.php',
|
||||
|
|
|
|||
|
|
@ -812,6 +812,10 @@ class AppManager implements IAppManager {
|
|||
}
|
||||
|
||||
private function isAlwaysEnabled(string $appId): bool {
|
||||
if ($appId === 'core') {
|
||||
return true;
|
||||
}
|
||||
|
||||
$alwaysEnabled = $this->getAlwaysEnabledApps();
|
||||
return in_array($appId, $alwaysEnabled, true);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ use OCP\Dashboard\IManager;
|
|||
use OCP\Diagnostics\IEventLogger;
|
||||
use OCP\EventDispatcher\IEventDispatcher;
|
||||
use OCP\IServerContainer;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Throwable;
|
||||
use function class_exists;
|
||||
|
|
@ -69,19 +70,24 @@ class Coordinator {
|
|||
*/
|
||||
try {
|
||||
$path = $this->appManager->getAppPath($appId);
|
||||
OC_App::registerAutoloading($appId, $path);
|
||||
} catch (AppPathNotFoundException) {
|
||||
// Ignore
|
||||
continue;
|
||||
}
|
||||
OC_App::registerAutoloading($appId, $path);
|
||||
$this->eventLogger->end("bootstrap:register_app:$appId:autoloader");
|
||||
|
||||
/*
|
||||
* Next we check if there is an application class, and it implements
|
||||
* the \OCP\AppFramework\Bootstrap\IBootstrap interface
|
||||
*/
|
||||
$appNameSpace = App::buildAppNamespace($appId);
|
||||
if ($appId === 'core') {
|
||||
$appNameSpace = 'OC\\Core';
|
||||
} else {
|
||||
$appNameSpace = App::buildAppNamespace($appId);
|
||||
}
|
||||
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
|
||||
|
||||
try {
|
||||
if (class_exists($applicationClassName) && is_a($applicationClassName, IBootstrap::class, true)) {
|
||||
$this->eventLogger->start("bootstrap:register_app:$appId:application", "Load `Application` instance for $appId");
|
||||
|
|
@ -89,7 +95,7 @@ class Coordinator {
|
|||
/** @var IBootstrap&App $application */
|
||||
$application = $this->serverContainer->query($applicationClassName);
|
||||
$apps[$appId] = $application;
|
||||
} catch (QueryException $e) {
|
||||
} catch (ContainerExceptionInterface $e) {
|
||||
// Weird, but ok
|
||||
$this->eventLogger->end("bootstrap:register_app:$appId");
|
||||
continue;
|
||||
|
|
|
|||
|
|
@ -189,14 +189,14 @@ class URLGenerator implements IURLGenerator {
|
|||
$basename = substr(basename($file), 0, -4);
|
||||
|
||||
try {
|
||||
$appPath = $this->getAppManager()->getAppPath($appName);
|
||||
} catch (AppPathNotFoundException $e) {
|
||||
if ($appName === 'core' || $appName === '') {
|
||||
$appName = 'core';
|
||||
$appPath = false;
|
||||
} else {
|
||||
throw new RuntimeException('image not found: image: ' . $file . ' webroot: ' . \OC::$WEBROOT . ' serverroot: ' . \OC::$SERVERROOT);
|
||||
$appPath = $this->getAppManager()->getAppPath($appName);
|
||||
}
|
||||
} catch (AppPathNotFoundException $e) {
|
||||
throw new RuntimeException('image not found: image: ' . $file . ' webroot: ' . \OC::$WEBROOT . ' serverroot: ' . \OC::$SERVERROOT);
|
||||
}
|
||||
|
||||
// Check if the app is in the app folder
|
||||
|
|
|
|||
|
|
@ -316,6 +316,8 @@ class OC_App {
|
|||
$appId = self::cleanAppId($appId);
|
||||
if ($appId === '') {
|
||||
return false;
|
||||
} elseif ($appId === 'core') {
|
||||
return __DIR__ . '/../../../core';
|
||||
}
|
||||
|
||||
if (($dir = self::findAppInDirectories($appId, $refreshAppPath)) != false) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue