2015-03-21 22:12:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
|
|
|
* @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;
|
2015-03-21 22:12:55 +03:00
|
|
|
use OCP\AppFramework\App;
|
2018-10-12 18:42:08 +03:00
|
|
|
use OCP\AppFramework\IAppContainer;
|
2019-11-06 12:11:23 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2015-03-21 22:12:55 +03:00
|
|
|
|
|
|
|
class Application extends App {
|
2019-11-06 12:11:23 +03:00
|
|
|
|
|
|
|
const APP_ID = 'files_versions';
|
|
|
|
|
|
|
|
public function __construct(array $urlParams = []) {
|
|
|
|
parent::__construct(self::APP_ID, $urlParams);
|
2015-03-21 22:12:55 +03:00
|
|
|
|
|
|
|
$container = $this->getContainer();
|
2019-11-06 12:11:23 +03:00
|
|
|
$server = $container->getServer();
|
|
|
|
|
|
|
|
/** @var IEventDispatcher $newDispatcher */
|
|
|
|
$dispatcher = $server->query(IEventDispatcher::class);
|
2015-03-21 22:12:55 +03:00
|
|
|
|
2019-11-06 12:11:23 +03:00
|
|
|
/**
|
2015-03-21 22:12:55 +03:00
|
|
|
* Register capabilities
|
|
|
|
*/
|
2018-01-26 01:16:13 +03:00
|
|
|
$container->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
|
|
|
|
*/
|
2018-10-12 18:42:08 +03:00
|
|
|
$container->registerService('principalBackend', function (IAppContainer $c) {
|
|
|
|
$server = $c->getServer();
|
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(),
|
2019-11-26 18:37:57 +03:00
|
|
|
$server->query(ProxyMapper::class),
|
|
|
|
\OC::$server->getConfig()
|
2018-04-30 21:39:45 +03:00
|
|
|
);
|
|
|
|
});
|
2018-10-12 18:42:08 +03:00
|
|
|
|
|
|
|
$container->registerService(IVersionManager::class, function(IAppContainer $c) {
|
|
|
|
return new VersionManager();
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->registerVersionBackends();
|
2019-11-06 12:11:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register Events
|
|
|
|
*/
|
|
|
|
$this->registerEvents($dispatcher);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register hooks
|
|
|
|
*/
|
|
|
|
Hooks::connectHooks();
|
2018-10-12 18:42:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function registerVersionBackends() {
|
|
|
|
$server = $this->getContainer()->getServer();
|
|
|
|
$appManager = $server->getAppManager();
|
|
|
|
foreach($appManager->getInstalledApps() as $app) {
|
|
|
|
$appInfo = $appManager->getAppInfo($app);
|
|
|
|
if (isset($appInfo['versions'])) {
|
|
|
|
$backends = $appInfo['versions'];
|
|
|
|
foreach($backends as $backend) {
|
2019-06-04 15:11:24 +03:00
|
|
|
if (isset($backend['@value'])) {
|
|
|
|
$this->loadBackend($backend);
|
|
|
|
} else {
|
|
|
|
foreach ($backend as $singleBackend) {
|
|
|
|
$this->loadBackend($singleBackend);
|
|
|
|
}
|
2018-10-12 18:42:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-21 22:12:55 +03:00
|
|
|
}
|
2019-06-04 15:11:24 +03:00
|
|
|
|
|
|
|
private function loadBackend(array $backend) {
|
|
|
|
$server = $this->getContainer()->getServer();
|
|
|
|
$logger = $server->getLogger();
|
|
|
|
/** @var IVersionManager $versionManager */
|
|
|
|
$versionManager = $this->getContainer()->getServer()->query(IVersionManager::class);
|
|
|
|
$class = $backend['@value'];
|
|
|
|
$for = $backend['@attributes']['for'];
|
|
|
|
try {
|
|
|
|
$backendObject = $server->query($class);
|
|
|
|
$versionManager->registerBackend($for, $backendObject);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$logger->logException($e);
|
|
|
|
}
|
|
|
|
}
|
2019-11-06 12:11:23 +03:00
|
|
|
|
|
|
|
protected function registerEvents(IEventDispatcher $dispatcher) {
|
|
|
|
$dispatcher->addServiceListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class);
|
|
|
|
$dispatcher->addServiceListener(LoadSidebar::class, LoadSidebarListener::class);
|
|
|
|
}
|
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
}
|