2015-03-21 22:12:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2015-03-21 22:12:55 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-21 22:12:55 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_Versions\AppInfo;
|
|
|
|
|
2019-08-06 14:40:52 +03:00
|
|
|
use OCA\DAV\CalDAV\Proxy\ProxyMapper;
|
2018-04-30 21:39:45 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files\Event\LoadAdditionalScriptsEvent;
|
|
|
|
use OCA\Files\Event\LoadSidebar;
|
2019-11-06 12:11:23 +03:00
|
|
|
use OCA\Files_Versions\Capabilities;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_Versions\Hooks;
|
2019-11-06 12:11:23 +03:00
|
|
|
use OCA\Files_Versions\Listener\LoadAdditionalListener;
|
|
|
|
use OCA\Files_Versions\Listener\LoadSidebarListener;
|
2018-10-12 18:42:08 +03:00
|
|
|
use OCA\Files_Versions\Versions\IVersionManager;
|
|
|
|
use OCA\Files_Versions\Versions\VersionManager;
|
2020-07-08 14:19:00 +03:00
|
|
|
use OCP\App\IAppManager;
|
2015-03-21 22:12:55 +03:00
|
|
|
use OCP\AppFramework\App;
|
2020-07-08 14:19:00 +03:00
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IServerContainer;
|
2020-07-16 11:32:34 +03:00
|
|
|
use Psr\Container\ContainerInterface;
|
2015-03-21 22:12:55 +03:00
|
|
|
|
2020-07-08 14:19:00 +03:00
|
|
|
class Application extends App implements IBootstrap {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const APP_ID = 'files_versions';
|
2019-11-06 12:11:23 +03:00
|
|
|
|
|
|
|
public function __construct(array $urlParams = []) {
|
|
|
|
parent::__construct(self::APP_ID, $urlParams);
|
2020-07-08 14:19:00 +03:00
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
|
2020-07-08 14:19:00 +03:00
|
|
|
public function register(IRegistrationContext $context): void {
|
2019-11-06 12:11:23 +03:00
|
|
|
/**
|
2015-03-21 22:12:55 +03:00
|
|
|
* Register capabilities
|
|
|
|
*/
|
2020-07-08 14:19:00 +03:00
|
|
|
$context->registerCapability(Capabilities::class);
|
2015-08-17 21:40:03 +03:00
|
|
|
|
2019-11-06 12:11:23 +03:00
|
|
|
/**
|
2018-04-30 21:39:45 +03:00
|
|
|
* Register $principalBackend for the DAV collection
|
|
|
|
*/
|
2020-07-16 11:32:34 +03:00
|
|
|
$context->registerService('principalBackend', function (ContainerInterface $c) {
|
|
|
|
/** @var IServerContainer $server */
|
|
|
|
$server = $c->get(IServerContainer::class);
|
2018-04-30 21:39:45 +03:00
|
|
|
return new Principal(
|
2018-10-12 18:42:08 +03:00
|
|
|
$server->getUserManager(),
|
|
|
|
$server->getGroupManager(),
|
|
|
|
$server->getShareManager(),
|
|
|
|
$server->getUserSession(),
|
2019-08-06 14:40:52 +03:00
|
|
|
$server->getAppManager(),
|
2020-07-16 11:32:34 +03:00
|
|
|
$server->get(ProxyMapper::class),
|
2020-07-08 14:19:00 +03:00
|
|
|
$server->getConfig()
|
2018-04-30 21:39:45 +03:00
|
|
|
);
|
|
|
|
});
|
2018-10-12 18:42:08 +03:00
|
|
|
|
2020-07-16 11:32:34 +03:00
|
|
|
$context->registerService(IVersionManager::class, function () {
|
2018-10-12 18:42:08 +03:00
|
|
|
return new VersionManager();
|
|
|
|
});
|
|
|
|
|
2019-11-06 12:11:23 +03:00
|
|
|
/**
|
|
|
|
* Register Events
|
|
|
|
*/
|
2020-07-08 14:19:00 +03:00
|
|
|
$context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class);
|
|
|
|
$context->registerEventListener(LoadSidebar::class, LoadSidebarListener::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function boot(IBootContext $context): void {
|
|
|
|
$context->injectFn(\Closure::fromCallable([$this, 'registerVersionBackends']));
|
2019-11-06 12:11:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register hooks
|
|
|
|
*/
|
|
|
|
Hooks::connectHooks();
|
2018-10-12 18:42:08 +03:00
|
|
|
}
|
|
|
|
|
2020-07-16 11:32:34 +03:00
|
|
|
public function registerVersionBackends(ContainerInterface $container, IAppManager $appManager, ILogger $logger) {
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($appManager->getInstalledApps() as $app) {
|
2018-10-12 18:42:08 +03:00
|
|
|
$appInfo = $appManager->getAppInfo($app);
|
|
|
|
if (isset($appInfo['versions'])) {
|
|
|
|
$backends = $appInfo['versions'];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($backends as $backend) {
|
2019-06-04 15:11:24 +03:00
|
|
|
if (isset($backend['@value'])) {
|
2020-07-16 11:32:34 +03:00
|
|
|
$this->loadBackend($backend, $container, $logger);
|
2019-06-04 15:11:24 +03:00
|
|
|
} else {
|
|
|
|
foreach ($backend as $singleBackend) {
|
2020-07-16 11:32:34 +03:00
|
|
|
$this->loadBackend($singleBackend, $container, $logger);
|
2019-06-04 15:11:24 +03:00
|
|
|
}
|
2018-10-12 18:42:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
}
|
2019-06-04 15:11:24 +03:00
|
|
|
|
2020-07-16 11:32:34 +03:00
|
|
|
private function loadBackend(array $backend, ContainerInterface $container, ILogger $logger) {
|
2019-06-04 15:11:24 +03:00
|
|
|
/** @var IVersionManager $versionManager */
|
2020-07-16 11:32:34 +03:00
|
|
|
$versionManager = $container->get(IVersionManager::class);
|
2019-06-04 15:11:24 +03:00
|
|
|
$class = $backend['@value'];
|
|
|
|
$for = $backend['@attributes']['for'];
|
|
|
|
try {
|
2020-07-16 11:32:34 +03:00
|
|
|
$backendObject = $container->get($class);
|
2019-06-04 15:11:24 +03:00
|
|
|
$versionManager->registerBackend($for, $backendObject);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$logger->logException($e);
|
|
|
|
}
|
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
}
|