mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-01-11 21:59:13 +00:00
87 lines
2.6 KiB
PHP
87 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2022, MetaProvide Holding EKF
|
|
*
|
|
* @author Ron Trevor <ecoron@proton.me>
|
|
*
|
|
* @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
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Files_External_Ethswarm\AppInfo;
|
|
|
|
use OCA\Files_External_Ethswarm\Backend\BeeSwarm;
|
|
use OCA\Files_External_Ethswarm\Auth\HttpBasicAuth;
|
|
use OCA\Files_External\Lib\Config\IBackendProvider;
|
|
use OCA\Files_External\Service\BackendService;
|
|
use OCA\Files_External\Lib\Config\IAuthMechanismProvider;
|
|
use OCP\AppFramework\App;
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
|
use OCA\Files_External_Ethswarm\Listener\CSPListener;
|
|
use OCP\Security\CSP\AddContentSecurityPolicyEvent;
|
|
|
|
/**
|
|
* @package OCA\Files_external_beeswarm\AppInfo
|
|
*/
|
|
class Application extends App implements IBootstrap, IBackendProvider, IAuthMechanismProvider {
|
|
public const APP_ID = 'files_external_ethswarm';
|
|
|
|
public function __construct(array $urlParams = []) {
|
|
parent::__construct(self::APP_ID, $urlParams);
|
|
}
|
|
|
|
/**
|
|
* @{inheritdoc}
|
|
*/
|
|
public function getBackends() {
|
|
$container = $this->getContainer();
|
|
return [
|
|
$container->query(BeeSwarm::class)
|
|
];
|
|
}
|
|
|
|
public function boot(IBootContext $context): void {
|
|
$context->injectFn([$this, 'registerEventsScripts']);
|
|
|
|
$context->injectFn(function (BackendService $backendService) {
|
|
$backendService->registerBackendProvider($this);
|
|
$backendService->registerAuthMechanismProvider($this);
|
|
});
|
|
|
|
|
|
$this->getAuthMechanisms();
|
|
}
|
|
|
|
public function registerEventsScripts(IEventDispatcher $dispatcher) {
|
|
}
|
|
|
|
public function register(IRegistrationContext $context): void {
|
|
$context->registerEventListener(AddContentSecurityPolicyEvent::class, CSPListener::class);
|
|
}
|
|
|
|
public function getAuthMechanisms() {
|
|
$container = $this->getContainer();
|
|
return [
|
|
// AuthMechanism::BASIC HTTP mechanisms
|
|
$container->get(HttpBasicAuth::class),
|
|
];
|
|
}
|
|
}
|