nextcloud/lib/private/Calendar/Room/Manager.php
Côme Chilliet 1ab09ec753
chore: Apply new coding standard to all files
The diff can be checked using: git diff --ignore-all-space --ignore-blank-lines
To see only the changes not related to blank lines.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2026-06-01 13:46:39 +02:00

132 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Calendar\Room;
use OC\AppFramework\Bootstrap\Coordinator;
use OC\Calendar\ResourcesRoomsUpdater;
use OCP\AppFramework\QueryException;
use OCP\Calendar\Room\IBackend;
use OCP\Calendar\Room\IManager;
use Psr\Container\ContainerInterface;
class Manager implements IManager {
private bool $bootstrapBackendsLoaded = false;
/**
* @var string[] holds all registered resource backends
* @psalm-var class-string<IBackend>[]
*/
private array $backends = [];
/** @var IBackend[] holds all backends that have been initialized already */
private array $initializedBackends = [];
public function __construct(
private Coordinator $bootstrapCoordinator,
private ContainerInterface $container,
private ResourcesRoomsUpdater $updater,
) {
}
/**
* Registers a resource backend
*
* @since 14.0.0
*/
#[\Override]
public function registerBackend(string $backendClass): void {
$this->backends[$backendClass] = $backendClass;
}
/**
* Unregisters a resource backend
*
* @param string $backendClass
* @since 14.0.0
*/
#[\Override]
public function unregisterBackend(string $backendClass): void {
unset($this->backends[$backendClass], $this->initializedBackends[$backendClass]);
}
private function fetchBootstrapBackends(): void {
if ($this->bootstrapBackendsLoaded) {
return;
}
$context = $this->bootstrapCoordinator->getRegistrationContext();
if ($context === null) {
// Too soon
return;
}
foreach ($context->getCalendarRoomBackendRegistrations() as $registration) {
$this->backends[] = $registration->getService();
}
}
/**
* @return IBackend[]
* @throws QueryException
* @since 14.0.0
*/
#[\Override]
public function getBackends():array {
$this->fetchBootstrapBackends();
foreach ($this->backends as $backend) {
if (isset($this->initializedBackends[$backend])) {
continue;
}
/**
* @todo fetch from the app container
*
* The backend might have services injected that can't be build from the
* server container.
*/
$this->initializedBackends[$backend] = $this->container->get($backend);
}
return array_values($this->initializedBackends);
}
/**
* @param string $backendId
* @throws QueryException
*/
#[\Override]
public function getBackend($backendId): ?IBackend {
$backends = $this->getBackends();
foreach ($backends as $backend) {
if ($backend->getBackendIdentifier() === $backendId) {
return $backend;
}
}
return null;
}
/**
* removes all registered backend instances
*
* @since 14.0.0
*/
#[\Override]
public function clear(): void {
$this->backends = [];
$this->initializedBackends = [];
}
#[\Override]
public function update(): void {
$this->updater->updateRooms();
}
}