summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/backend
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-08-12 22:03:41 +0100
committerRobin McCorkell <rmccorkell@owncloud.com>2015-08-25 00:22:10 +0100
commita50ef618761ae3588d00e55c39451cba75672e7f (patch)
treeba09c0b3b88716c9db95f74dfe6326c414fdcc69 /apps/files_external/lib/backend
parentced04f9ad2a55439d74681ce1a582a5c6ed2d5ab (diff)
downloadnextcloud-server-a50ef618761ae3588d00e55c39451cba75672e7f.tar.gz
nextcloud-server-a50ef618761ae3588d00e55c39451cba75672e7f.zip
Migrate Dropbox external storage to new API
Diffstat (limited to 'apps/files_external/lib/backend')
-rw-r--r--apps/files_external/lib/backend/dropbox.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/apps/files_external/lib/backend/dropbox.php b/apps/files_external/lib/backend/dropbox.php
new file mode 100644
index 00000000000..bfd2e4cddc4
--- /dev/null
+++ b/apps/files_external/lib/backend/dropbox.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * @author Robin McCorkell <rmccorkell@owncloud.com>
+ *
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @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\Files_External\Lib\Backend;
+
+use \OCP\IL10N;
+use \OCA\Files_External\Lib\Backend\Backend;
+use \OCA\Files_External\Lib\DefinitionParameter;
+use \OCA\Files_External\Lib\Auth\AuthMechanism;
+use \OCA\Files_External\Service\BackendService;
+use \OCA\Files_External\Lib\Auth\OAuth1\OAuth1;
+
+class Dropbox extends Backend {
+
+ public function __construct(IL10N $l, OAuth1 $legacyAuth) {
+ $this
+ ->setIdentifier('dropbox')
+ ->addIdentifierAlias('\OC\Files\Storage\Dropbox') // legacy compat
+ ->setStorageClass('\OC\Files\Storage\Dropbox')
+ ->setText($l->t('Dropbox'))
+ ->addParameters([
+ // all parameters handled in OAuth1 mechanism
+ ])
+ ->setDependencyCheck('\OC\Files\Storage\Dropbox::checkDependencies')
+ ->addAuthScheme(AuthMechanism::SCHEME_OAUTH1)
+ ->setLegacyAuthMechanism($legacyAuth)
+ ;
+ }
+
+}