2020-05-07 22:10:30 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2020-05-07 22:10:30 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2020-08-24 15:54:25 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-05-07 22:10:30 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\AppFramework\Bootstrap;
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
use OC\Support\CrashReport\Registry;
|
2020-05-07 22:10:30 +03:00
|
|
|
use OC_App;
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
use OCP\AppFramework\QueryException;
|
2020-06-23 16:23:28 +03:00
|
|
|
use OCP\Dashboard\IManager;
|
2020-05-07 22:10:30 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IServerContainer;
|
2020-07-14 11:21:39 +03:00
|
|
|
use RuntimeException;
|
2020-06-17 22:07:42 +03:00
|
|
|
use Throwable;
|
2020-05-07 22:10:30 +03:00
|
|
|
use function class_exists;
|
|
|
|
use function class_implements;
|
|
|
|
use function in_array;
|
|
|
|
|
|
|
|
class Coordinator {
|
|
|
|
|
|
|
|
/** @var IServerContainer */
|
|
|
|
private $serverContainer;
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
/** @var Registry */
|
|
|
|
private $registry;
|
|
|
|
|
2020-06-23 16:23:28 +03:00
|
|
|
/** @var IManager */
|
|
|
|
private $dashboardManager;
|
|
|
|
|
2020-05-07 22:10:30 +03:00
|
|
|
/** @var IEventDispatcher */
|
|
|
|
private $eventDispatcher;
|
|
|
|
|
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
|
|
|
|
2020-07-14 11:21:39 +03:00
|
|
|
/** @var RegistrationContext|null */
|
|
|
|
private $registrationContext;
|
|
|
|
|
2020-08-06 17:48:06 +03:00
|
|
|
/** @var string[] */
|
|
|
|
private $bootedApps = [];
|
|
|
|
|
2020-05-07 22:10:30 +03:00
|
|
|
public function __construct(IServerContainer $container,
|
2020-06-17 16:17:59 +03:00
|
|
|
Registry $registry,
|
2020-06-23 16:23:28 +03:00
|
|
|
IManager $dashboardManager,
|
2020-05-07 22:10:30 +03:00
|
|
|
IEventDispatcher $eventListener,
|
|
|
|
ILogger $logger) {
|
|
|
|
$this->serverContainer = $container;
|
2020-06-17 16:17:59 +03:00
|
|
|
$this->registry = $registry;
|
2020-06-23 16:23:28 +03:00
|
|
|
$this->dashboardManager = $dashboardManager;
|
2020-05-07 22:10:30 +03:00
|
|
|
$this->eventDispatcher = $eventListener;
|
|
|
|
$this->logger = $logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function runRegistration(): void {
|
2020-07-14 11:21:39 +03:00
|
|
|
if ($this->registrationContext !== null) {
|
|
|
|
throw new RuntimeException('Registration has already been run');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->registrationContext = new RegistrationContext($this->logger);
|
2020-05-07 22:10:30 +03:00
|
|
|
$apps = [];
|
|
|
|
foreach (OC_App::getEnabledApps() as $appId) {
|
|
|
|
/*
|
|
|
|
* First, we have to enable the app's autoloader
|
|
|
|
*
|
|
|
|
* @todo use $this->appManager->getAppPath($appId) here
|
|
|
|
*/
|
|
|
|
$path = OC_App::getAppPath($appId);
|
|
|
|
if ($path === false) {
|
|
|
|
// Ignore
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
OC_App::registerAutoloading($appId, $path);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Next we check if there is an application class and it implements
|
|
|
|
* the \OCP\AppFramework\Bootstrap\IBootstrap interface
|
|
|
|
*/
|
|
|
|
$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
|
2020-06-18 10:17:00 +03:00
|
|
|
continue;
|
2020-06-17 22:07:42 +03:00
|
|
|
}
|
|
|
|
try {
|
2020-07-14 11:21:39 +03:00
|
|
|
$application->register($this->registrationContext->for($appId));
|
2020-06-17 22:07:42 +03:00
|
|
|
} catch (Throwable $e) {
|
|
|
|
$this->logger->logException($e, [
|
|
|
|
'message' => 'Error during app service registration: ' . $e->getMessage(),
|
|
|
|
'level' => ILogger::FATAL,
|
|
|
|
]);
|
2020-05-07 22:10:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Now that all register methods have been called, we can delegate the registrations
|
|
|
|
* to the actual services
|
|
|
|
*/
|
2020-07-14 11:21:39 +03:00
|
|
|
$this->registrationContext->delegateCapabilityRegistrations($apps);
|
|
|
|
$this->registrationContext->delegateCrashReporterRegistrations($apps, $this->registry);
|
2020-06-23 16:23:28 +03:00
|
|
|
$this->registrationContext->delegateDashboardPanelRegistrations($apps, $this->dashboardManager);
|
2020-07-14 11:21:39 +03:00
|
|
|
$this->registrationContext->delegateEventListenerRegistrations($this->eventDispatcher);
|
|
|
|
$this->registrationContext->delegateContainerRegistrations($apps);
|
|
|
|
$this->registrationContext->delegateMiddlewareRegistrations($apps);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getRegistrationContext(): ?RegistrationContext {
|
|
|
|
return $this->registrationContext;
|
2020-05-07 22:10:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function bootApp(string $appId): void {
|
2020-08-06 17:48:06 +03:00
|
|
|
if (isset($this->bootedApps[$appId])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->bootedApps[$appId] = true;
|
|
|
|
|
2020-05-07 22:10:30 +03:00
|
|
|
$appNameSpace = App::buildAppNamespace($appId);
|
|
|
|
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
|
|
|
|
if (!class_exists($applicationClassName)) {
|
|
|
|
// Nothing to boot
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now it is time to fetch an instance of the App class. For classes
|
|
|
|
* that implement \OCP\AppFramework\Bootstrap\IBootstrap this means
|
|
|
|
* the instance was already created for register, but any other
|
|
|
|
* (legacy) code will now do their magic via the constructor.
|
|
|
|
*/
|
|
|
|
try {
|
|
|
|
/** @var App $application */
|
|
|
|
$application = $this->serverContainer->query($applicationClassName);
|
|
|
|
if ($application instanceof IBootstrap) {
|
|
|
|
/** @var BootContext $context */
|
|
|
|
$context = new BootContext($application->getContainer());
|
|
|
|
$application->boot($context);
|
|
|
|
}
|
|
|
|
} catch (QueryException $e) {
|
|
|
|
$this->logger->logException($e, [
|
|
|
|
'message' => "Could not boot $appId" . $e->getMessage(),
|
|
|
|
]);
|
2020-06-17 22:07:42 +03:00
|
|
|
} catch (Throwable $e) {
|
|
|
|
$this->logger->logException($e, [
|
|
|
|
'message' => "Could not boot $appId" . $e->getMessage(),
|
|
|
|
'level' => ILogger::FATAL,
|
|
|
|
]);
|
2020-05-07 22:10:30 +03:00
|
|
|
}
|
|
|
|
}
|
2020-07-13 15:58:52 +03:00
|
|
|
|
|
|
|
public function isBootable(string $appId) {
|
|
|
|
$appNameSpace = App::buildAppNamespace($appId);
|
|
|
|
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
|
|
|
|
return class_exists($applicationClassName) &&
|
|
|
|
in_array(IBootstrap::class, class_implements($applicationClassName), true);
|
|
|
|
}
|
2020-05-07 22:10:30 +03:00
|
|
|
}
|