2015-10-29 19:27:14 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-29 19:27:14 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Federation\AppInfo;
|
|
|
|
|
|
|
|
use OCA\Federation\Controller\SettingsController;
|
2015-12-04 14:11:07 +03:00
|
|
|
use OCA\Federation\DAV\FedAuth;
|
2015-10-29 19:27:14 +03:00
|
|
|
use OCA\Federation\DbHandler;
|
2015-11-23 19:01:53 +03:00
|
|
|
use OCA\Federation\Hooks;
|
2015-10-29 19:27:14 +03:00
|
|
|
use OCA\Federation\Middleware\AddServerMiddleware;
|
2016-01-22 16:58:49 +03:00
|
|
|
use OCA\Federation\SyncFederationAddressBooks;
|
2015-10-29 19:27:14 +03:00
|
|
|
use OCA\Federation\TrustedServers;
|
|
|
|
use OCP\AppFramework\IAppContainer;
|
2015-12-04 14:11:07 +03:00
|
|
|
use OCP\SabrePluginEvent;
|
2015-11-23 19:01:53 +03:00
|
|
|
use OCP\Util;
|
2015-12-04 14:11:07 +03:00
|
|
|
use Sabre\DAV\Auth\Plugin;
|
2015-10-29 19:27:14 +03:00
|
|
|
|
|
|
|
class Application extends \OCP\AppFramework\App {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $urlParams
|
|
|
|
*/
|
|
|
|
public function __construct($urlParams = array()) {
|
|
|
|
parent::__construct('federation', $urlParams);
|
|
|
|
$this->registerService();
|
|
|
|
$this->registerMiddleware();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function registerService() {
|
|
|
|
$container = $this->getContainer();
|
|
|
|
|
|
|
|
$container->registerService('addServerMiddleware', function(IAppContainer $c) {
|
|
|
|
return new AddServerMiddleware(
|
|
|
|
$c->getAppName(),
|
|
|
|
\OC::$server->getL10N($c->getAppName()),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$container->registerService('DbHandler', function(IAppContainer $c) {
|
|
|
|
return new DbHandler(
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getL10N($c->getAppName())
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$container->registerService('TrustedServers', function(IAppContainer $c) {
|
2016-02-26 18:59:53 +03:00
|
|
|
$server = $c->getServer();
|
2015-10-29 19:27:14 +03:00
|
|
|
return new TrustedServers(
|
|
|
|
$c->query('DbHandler'),
|
2016-02-26 18:59:53 +03:00
|
|
|
$server->getHTTPClientService(),
|
|
|
|
$server->getLogger(),
|
|
|
|
$server->getJobList(),
|
|
|
|
$server->getSecureRandom(),
|
|
|
|
$server->getConfig(),
|
|
|
|
$server->getEventDispatcher()
|
2015-10-29 19:27:14 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$container->registerService('SettingsController', function (IAppContainer $c) {
|
|
|
|
$server = $c->getServer();
|
|
|
|
return new SettingsController(
|
|
|
|
$c->getAppName(),
|
|
|
|
$server->getRequest(),
|
|
|
|
$server->getL10N($c->getAppName()),
|
|
|
|
$c->query('TrustedServers')
|
|
|
|
);
|
|
|
|
});
|
2016-02-26 18:59:53 +03:00
|
|
|
|
2015-10-29 19:27:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function registerMiddleware() {
|
|
|
|
$container = $this->getContainer();
|
|
|
|
$container->registerMiddleware('addServerMiddleware');
|
|
|
|
}
|
2015-11-10 12:50:59 +03:00
|
|
|
|
2015-11-23 19:01:53 +03:00
|
|
|
/**
|
|
|
|
* listen to federated_share_added hooks to auto-add new servers to the
|
|
|
|
* list of trusted servers.
|
|
|
|
*/
|
|
|
|
public function registerHooks() {
|
|
|
|
|
|
|
|
$container = $this->getContainer();
|
|
|
|
$hooksManager = new Hooks($container->query('TrustedServers'));
|
|
|
|
|
|
|
|
Util::connectHook(
|
|
|
|
'OCP\Share',
|
|
|
|
'federated_share_added',
|
|
|
|
$hooksManager,
|
|
|
|
'addServerHook'
|
|
|
|
);
|
2015-12-04 14:11:07 +03:00
|
|
|
|
|
|
|
$dispatcher = $this->getContainer()->getServer()->getEventDispatcher();
|
|
|
|
$dispatcher->addListener('OCA\DAV\Connector\Sabre::authInit', function($event) use($container) {
|
|
|
|
if ($event instanceof SabrePluginEvent) {
|
|
|
|
$authPlugin = $event->getServer()->getPlugin('auth');
|
|
|
|
if ($authPlugin instanceof Plugin) {
|
2015-12-07 17:28:06 +03:00
|
|
|
$h = new DbHandler($container->getServer()->getDatabaseConnection(),
|
|
|
|
$container->getServer()->getL10N('federation')
|
|
|
|
);
|
|
|
|
$authPlugin->addBackend(new FedAuth($h));
|
2015-12-04 14:11:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-11-23 19:01:53 +03:00
|
|
|
}
|
|
|
|
|
2016-01-22 16:58:49 +03:00
|
|
|
/**
|
|
|
|
* @return SyncFederationAddressBooks
|
|
|
|
*/
|
|
|
|
public function getSyncService() {
|
2016-01-25 13:39:57 +03:00
|
|
|
$syncService = \OC::$server->query('CardDAVSyncService');
|
2016-01-22 16:58:49 +03:00
|
|
|
$dbHandler = $this->getContainer()->query('DbHandler');
|
2017-04-05 23:35:59 +03:00
|
|
|
$discoveryService = \OC::$server->query(\OCP\OCS\IDiscoveryService::class);
|
2017-02-24 18:09:52 +03:00
|
|
|
return new SyncFederationAddressBooks($dbHandler, $syncService, $discoveryService);
|
2016-01-22 16:58:49 +03:00
|
|
|
}
|
|
|
|
|
2015-10-29 19:27:14 +03:00
|
|
|
}
|