2012-06-13 21:54:32 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Adam Williamson <awilliam@redhat.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Volkan Gezer <volkangezer@gmail.com>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2013-05-18 22:51:25 +04:00
|
|
|
set_include_path(get_include_path().PATH_SEPARATOR.
|
|
|
|
\OC_App::getAppPath('files_external').'/3rdparty/google-api-php-client/src');
|
2016-05-24 11:58:16 +03:00
|
|
|
require_once 'Google/autoload.php';
|
2012-06-13 21:54:32 +04:00
|
|
|
|
|
|
|
OCP\JSON::checkAppEnabled('files_external');
|
|
|
|
OCP\JSON::checkLoggedIn();
|
2013-02-12 14:35:16 +04:00
|
|
|
OCP\JSON::callCheck();
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('files_external');
|
2013-02-12 14:35:16 +04:00
|
|
|
|
2015-08-13 00:09:20 +03:00
|
|
|
// FIXME: currently hard-coded to Google Drive
|
2013-05-17 04:09:32 +04:00
|
|
|
if (isset($_POST['client_id']) && isset($_POST['client_secret']) && isset($_POST['redirect'])) {
|
|
|
|
$client = new Google_Client();
|
2015-02-13 15:33:20 +03:00
|
|
|
$client->setClientId((string)$_POST['client_id']);
|
|
|
|
$client->setClientSecret((string)$_POST['client_secret']);
|
|
|
|
$client->setRedirectUri((string)$_POST['redirect']);
|
2013-05-17 04:09:32 +04:00
|
|
|
$client->setScopes(array('https://www.googleapis.com/auth/drive'));
|
2015-11-06 14:35:28 +03:00
|
|
|
$client->setApprovalPrompt('force');
|
2014-02-05 11:19:33 +04:00
|
|
|
$client->setAccessType('offline');
|
2013-05-17 04:09:32 +04:00
|
|
|
if (isset($_POST['step'])) {
|
|
|
|
$step = $_POST['step'];
|
|
|
|
if ($step == 1) {
|
|
|
|
try {
|
|
|
|
$authUrl = $client->createAuthUrl();
|
|
|
|
OCP\JSON::success(array('data' => array(
|
|
|
|
'url' => $authUrl
|
|
|
|
)));
|
|
|
|
} catch (Exception $exception) {
|
2012-11-30 19:27:11 +04:00
|
|
|
OCP\JSON::error(array('data' => array(
|
2014-06-12 22:31:07 +04:00
|
|
|
'message' => $l->t('Step 1 failed. Exception: %s', array($exception->getMessage()))
|
2013-05-17 04:09:32 +04:00
|
|
|
)));
|
2012-06-13 21:54:32 +04:00
|
|
|
}
|
2013-05-17 04:09:32 +04:00
|
|
|
} else if ($step == 2 && isset($_POST['code'])) {
|
|
|
|
try {
|
2015-02-13 15:33:20 +03:00
|
|
|
$token = $client->authenticate((string)$_POST['code']);
|
2013-05-17 04:09:32 +04:00
|
|
|
OCP\JSON::success(array('data' => array(
|
|
|
|
'token' => $token
|
|
|
|
)));
|
|
|
|
} catch (Exception $exception) {
|
|
|
|
OCP\JSON::error(array('data' => array(
|
2014-06-12 22:31:07 +04:00
|
|
|
'message' => $l->t('Step 2 failed. Exception: %s', array($exception->getMessage()))
|
2013-05-17 04:09:32 +04:00
|
|
|
)));
|
2012-06-13 21:54:32 +04:00
|
|
|
}
|
2013-05-17 04:09:32 +04:00
|
|
|
}
|
2012-06-13 21:54:32 +04:00
|
|
|
}
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|