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>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
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;
|
|
|
|
|
2015-12-04 14:11:07 +03:00
|
|
|
use OCA\Federation\DAV\FedAuth;
|
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;
|
2017-08-02 15:34:51 +03:00
|
|
|
use OCP\AppFramework\App;
|
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;
|
2017-08-02 15:34:51 +03:00
|
|
|
use Sabre\DAV\Server;
|
2018-01-26 01:16:13 +03:00
|
|
|
use OCP\Share;
|
2015-10-29 19:27:14 +03:00
|
|
|
|
2017-08-02 15:34:51 +03:00
|
|
|
class Application extends App {
|
2015-10-29 19:27:14 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $urlParams
|
|
|
|
*/
|
2017-08-02 15:34:51 +03:00
|
|
|
public function __construct($urlParams = []) {
|
2015-10-29 19:27:14 +03:00
|
|
|
parent::__construct('federation', $urlParams);
|
|
|
|
$this->registerMiddleware();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function registerMiddleware() {
|
|
|
|
$container = $this->getContainer();
|
2017-08-02 15:34:51 +03:00
|
|
|
$container->registerAlias('AddServerMiddleware', AddServerMiddleware::class);
|
|
|
|
$container->registerMiddleWare('AddServerMiddleware');
|
2015-10-29 19:27:14 +03:00
|
|
|
}
|
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();
|
2017-08-02 15:34:51 +03:00
|
|
|
$hooksManager = $container->query(Hooks::class);
|
2015-11-23 19:01:53 +03:00
|
|
|
|
|
|
|
Util::connectHook(
|
2018-01-26 01:16:13 +03:00
|
|
|
Share::class,
|
2015-11-23 19:01:53 +03:00
|
|
|
'federated_share_added',
|
|
|
|
$hooksManager,
|
|
|
|
'addServerHook'
|
|
|
|
);
|
2015-12-04 14:11:07 +03:00
|
|
|
|
2017-08-02 15:34:51 +03:00
|
|
|
$dispatcher = $container->getServer()->getEventDispatcher();
|
2015-12-04 14:11:07 +03:00
|
|
|
$dispatcher->addListener('OCA\DAV\Connector\Sabre::authInit', function($event) use($container) {
|
|
|
|
if ($event instanceof SabrePluginEvent) {
|
2017-08-02 15:34:51 +03:00
|
|
|
$server = $event->getServer();
|
|
|
|
if ($server instanceof Server) {
|
|
|
|
$authPlugin = $server->getPlugin('auth');
|
|
|
|
if ($authPlugin instanceof Plugin) {
|
|
|
|
$authPlugin->addBackend($container->query(FedAuth::class));
|
|
|
|
}
|
2015-12-04 14:11:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-11-23 19:01:53 +03:00
|
|
|
}
|
|
|
|
|
2015-10-29 19:27:14 +03:00
|
|
|
}
|