2012-06-13 21:54:32 +04:00
|
|
|
<?php
|
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');
|
2014-01-29 07:57:07 +04:00
|
|
|
require_once 'Google/Client.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
|
|
|
|
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'));
|
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
|
|
|
}
|