2018-06-18 15:26:32 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright 2018, Georg Ehrke <oc.list@georgehrke.com>
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2018-06-18 15:26:32 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2018-06-18 15:26:32 +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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-06-18 15:26:32 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Calendar\Resource;
|
|
|
|
|
|
|
|
use OCP\Calendar\Resource\IBackend;
|
2018-10-08 02:50:17 +03:00
|
|
|
use OCP\IServerContainer;
|
2018-06-18 15:26:32 +03:00
|
|
|
|
|
|
|
class Manager implements \OCP\Calendar\Resource\IManager {
|
|
|
|
|
2018-10-08 02:50:17 +03:00
|
|
|
/** @var IServerContainer */
|
|
|
|
private $server;
|
|
|
|
|
2018-08-24 16:21:04 +03:00
|
|
|
/** @var string[] holds all registered resource backends */
|
2018-07-12 11:41:19 +03:00
|
|
|
private $backends = [];
|
2018-06-18 15:26:32 +03:00
|
|
|
|
2018-08-24 16:21:04 +03:00
|
|
|
/** @var IBackend[] holds all backends that have been initialized already */
|
|
|
|
private $initializedBackends = [];
|
|
|
|
|
2018-10-08 02:50:17 +03:00
|
|
|
/**
|
|
|
|
* Manager constructor.
|
|
|
|
*
|
|
|
|
* @param IServerContainer $server
|
|
|
|
*/
|
|
|
|
public function __construct(IServerContainer $server) {
|
|
|
|
$this->server = $server;
|
|
|
|
}
|
|
|
|
|
2018-06-18 15:26:32 +03:00
|
|
|
/**
|
|
|
|
* Registers a resource backend
|
|
|
|
*
|
2018-08-24 16:21:04 +03:00
|
|
|
* @param string $backendClass
|
2018-06-18 15:26:32 +03:00
|
|
|
* @return void
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-08-24 16:21:04 +03:00
|
|
|
public function registerBackend(string $backendClass) {
|
|
|
|
$this->backends[$backendClass] = $backendClass;
|
2018-06-18 15:26:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregisters a resource backend
|
|
|
|
*
|
2018-08-24 16:21:04 +03:00
|
|
|
* @param string $backendClass
|
2018-06-18 15:26:32 +03:00
|
|
|
* @return void
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-08-24 16:21:04 +03:00
|
|
|
public function unregisterBackend(string $backendClass) {
|
|
|
|
unset($this->backends[$backendClass], $this->initializedBackends[$backendClass]);
|
2018-06-18 15:26:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return IBackend[]
|
2018-08-24 16:21:04 +03:00
|
|
|
* @throws \OCP\AppFramework\QueryException
|
2018-06-18 15:26:32 +03:00
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
|
|
|
public function getBackends():array {
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($this->backends as $backend) {
|
2018-08-24 16:21:04 +03:00
|
|
|
if (isset($this->initializedBackends[$backend])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-08 02:50:17 +03:00
|
|
|
$this->initializedBackends[$backend] = $this->server->query($backend);
|
2018-08-24 16:21:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return array_values($this->initializedBackends);
|
2018-06-18 15:26:32 +03:00
|
|
|
}
|
|
|
|
|
2018-06-18 19:15:50 +03:00
|
|
|
/**
|
|
|
|
* @param string $backendId
|
2018-08-24 16:21:04 +03:00
|
|
|
* @throws \OCP\AppFramework\QueryException
|
2018-06-18 19:15:50 +03:00
|
|
|
* @return IBackend|null
|
|
|
|
*/
|
2018-08-24 16:21:04 +03:00
|
|
|
public function getBackend($backendId) {
|
|
|
|
$backends = $this->getBackends();
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($backends as $backend) {
|
2018-08-24 16:21:04 +03:00
|
|
|
if ($backend->getBackendIdentifier() === $backendId) {
|
|
|
|
return $backend;
|
|
|
|
}
|
2018-06-18 19:15:50 +03:00
|
|
|
}
|
|
|
|
|
2018-08-24 16:21:04 +03:00
|
|
|
return null;
|
2018-06-18 19:15:50 +03:00
|
|
|
}
|
|
|
|
|
2018-06-18 15:26:32 +03:00
|
|
|
/**
|
|
|
|
* removes all registered backend instances
|
|
|
|
* @return void
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
|
|
|
public function clear() {
|
|
|
|
$this->backends = [];
|
2018-08-24 16:21:04 +03:00
|
|
|
$this->initializedBackends = [];
|
2018-06-18 15:26:32 +03:00
|
|
|
}
|
|
|
|
}
|