summaryrefslogtreecommitdiffstats
path: root/apps/files_external/ajax/oauth1.php
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/ajax/oauth1.php
parentced04f9ad2a55439d74681ce1a582a5c6ed2d5ab (diff)
downloadnextcloud-server-a50ef618761ae3588d00e55c39451cba75672e7f.tar.gz
nextcloud-server-a50ef618761ae3588d00e55c39451cba75672e7f.zip
Migrate Dropbox external storage to new API
Diffstat (limited to 'apps/files_external/ajax/oauth1.php')
-rw-r--r--apps/files_external/ajax/oauth1.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/apps/files_external/ajax/oauth1.php b/apps/files_external/ajax/oauth1.php
new file mode 100644
index 00000000000..ca339aeec58
--- /dev/null
+++ b/apps/files_external/ajax/oauth1.php
@@ -0,0 +1,73 @@
+<?php
+/**
+ * @author Jörn Friedrich Dreyer <jfd@butonic.de>
+ * @author Lukas Reschke <lukas@owncloud.com>
+ * @author Michael Gapczynski <GapczynskiM@gmail.com>
+ * @author Robin Appelman <icewind@owncloud.com>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
+ * @author Volkan Gezer <volkangezer@gmail.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/>
+ *
+ */
+require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php';
+
+OCP\JSON::checkAppEnabled('files_external');
+OCP\JSON::checkLoggedIn();
+OCP\JSON::callCheck();
+$l = \OC::$server->getL10N('files_external');
+
+// FIXME: currently hard-coded to Dropbox OAuth
+if (isset($_POST['app_key']) && isset($_POST['app_secret'])) {
+ $oauth = new Dropbox_OAuth_Curl((string)$_POST['app_key'], (string)$_POST['app_secret']);
+ if (isset($_POST['step'])) {
+ switch ($_POST['step']) {
+ case 1:
+ try {
+ if (isset($_POST['callback'])) {
+ $callback = (string)$_POST['callback'];
+ } else {
+ $callback = null;
+ }
+ $token = $oauth->getRequestToken();
+ OCP\JSON::success(array('data' => array('url' => $oauth->getAuthorizeUrl($callback),
+ 'request_token' => $token['token'],
+ 'request_token_secret' => $token['token_secret'])));
+ } catch (Exception $exception) {
+ OCP\JSON::error(array('data' => array('message' =>
+ $l->t('Fetching request tokens failed. Verify that your app key and secret are correct.'))
+ ));
+ }
+ break;
+ case 2:
+ if (isset($_POST['request_token']) && isset($_POST['request_token_secret'])) {
+ try {
+ $oauth->setToken((string)$_POST['request_token'], (string)$_POST['request_token_secret']);
+ $token = $oauth->getAccessToken();
+ OCP\JSON::success(array('access_token' => $token['token'],
+ 'access_token_secret' => $token['token_secret']));
+ } catch (Exception $exception) {
+ OCP\JSON::error(array('data' => array('message' =>
+ $l->t('Fetching access tokens failed. Verify that your app key and secret are correct.'))
+ ));
+ }
+ }
+ break;
+ }
+ }
+} else {
+ OCP\JSON::error(array('data' => array('message' => $l->t('Please provide a valid app key and secret.'))));
+}