Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin McCorkell <robin@mccorkell.me.uk>2016-05-11 21:34:57 +0300
committerRobin McCorkell <robin@mccorkell.me.uk>2016-05-11 23:16:31 +0300
commit711bc7469ae3261e3813a82e3807691ec3904098 (patch)
tree5e65aea3d9a8b95d90a757d712d4a71bbd61f26d /apps/files_external/appinfo
parentaf0930fe59971ce610270a873a4c2d70012a8534 (diff)
Use backend/auth mechanism providers in files_external
Diffstat (limited to 'apps/files_external/appinfo')
-rw-r--r--apps/files_external/appinfo/application.php38
1 files changed, 22 insertions, 16 deletions
diff --git a/apps/files_external/appinfo/application.php b/apps/files_external/appinfo/application.php
index cdc58aed7e8..5d490c6091f 100644
--- a/apps/files_external/appinfo/application.php
+++ b/apps/files_external/appinfo/application.php
@@ -30,20 +30,26 @@ use \OCP\AppFramework\App;
use OCP\AppFramework\IAppContainer;
use \OCP\IContainer;
use \OCA\Files_External\Service\BackendService;
+use \OCA\Files_External\Lib\Config\IBackendProvider;
+use \OCA\Files_External\Lib\Config\IAuthMechanismProvider;
/**
* @package OCA\Files_External\Appinfo
*/
-class Application extends App {
+class Application extends App implements IBackendProvider, IAuthMechanismProvider {
+
public function __construct(array $urlParams = array()) {
parent::__construct('files_external', $urlParams);
- $this->getContainer()->registerService('OCP\Files\Config\IUserMountCache', function (IAppContainer $c) {
+ $container = $this->getContainer();
+
+ $container->registerService('OCP\Files\Config\IUserMountCache', function (IAppContainer $c) {
return $c->getServer()->query('UserMountCache');
});
- $this->loadBackends();
- $this->loadAuthMechanisms();
+ $backendService = $container->query('OCA\\Files_External\\Service\\BackendService');
+ $backendService->registerBackendProvider($this);
+ $backendService->registerAuthMechanismProvider($this);
// app developers: do NOT depend on this! it will disappear with oC 9.0!
\OC::$server->getEventDispatcher()->dispatch(
@@ -63,13 +69,12 @@ class Application extends App {
}
/**
- * Load storage backends provided by this app
+ * @{inheritdoc}
*/
- protected function loadBackends() {
+ public function getBackends() {
$container = $this->getContainer();
- $service = $container->query('OCA\\Files_External\\Service\\BackendService');
- $service->registerBackends([
+ $backends = [
$container->query('OCA\Files_External\Lib\Backend\Local'),
$container->query('OCA\Files_External\Lib\Backend\FTP'),
$container->query('OCA\Files_External\Lib\Backend\DAV'),
@@ -80,24 +85,25 @@ class Application extends App {
$container->query('OCA\Files_External\Lib\Backend\Google'),
$container->query('OCA\Files_External\Lib\Backend\Swift'),
$container->query('OCA\Files_External\Lib\Backend\SFTP_Key'),
- ]);
+ ];
if (!\OC_Util::runningOnWindows()) {
- $service->registerBackends([
+ $backends += [
$container->query('OCA\Files_External\Lib\Backend\SMB'),
$container->query('OCA\Files_External\Lib\Backend\SMB_OC'),
- ]);
+ ];
}
+
+ return $backends;
}
/**
- * Load authentication mechanisms provided by this app
+ * @{inheritdoc}
*/
- protected function loadAuthMechanisms() {
+ public function getAuthMechanisms() {
$container = $this->getContainer();
- $service = $container->query('OCA\\Files_External\\Service\\BackendService');
- $service->registerAuthMechanisms([
+ return [
// AuthMechanism::SCHEME_NULL mechanism
$container->query('OCA\Files_External\Lib\Auth\NullMechanism'),
@@ -123,7 +129,7 @@ class Application extends App {
// Specialized mechanisms
$container->query('OCA\Files_External\Lib\Auth\AmazonS3\AccessKey'),
- ]);
+ ];
}
}