Basic template for authorising exernal apps with OAuth

This commit is contained in:
Tom Needham 2012-07-30 10:25:41 +00:00
parent 038af7e636
commit 5933d43901
2 changed files with 60 additions and 0 deletions

41
settings/oauth.php Normal file
View File

@ -0,0 +1,41 @@
<?php
/**
* Copyright (c) 2012, Tom Needham <tom@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
require_once('../lib/base.php');
// Logic
$operation = isset($_GET['operation']) ? $_GET['operation'] : '';
switch($operation){
case 'register':
break;
case 'request_token':
break;
case 'authorise';
// Example
$consumer = array(
'name' => 'Firefox Bookmark Sync',
'scopes' => array('bookmarks'),
);
$t = new OC_Template('settings', 'oauth', 'guest');
$t->assign('consumer', $consumer);
$t->printPage();
break;
case 'access_token';
break;
default:
// Something went wrong
header('Location: /');
break;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Copyright (c) 2012, Tom Needham <tom@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
?>
<p><strong><?php echo $_['consumer']['name']; ?></strong> is requesting permission to read, write, modify and delete data from the following apps:</p>
<ul>
<?php
// Foreach requested scope
foreach($_['consumer']['scopes'] as $app){
echo '<li>'.$app.'</li>';
}
?>
</ul>
<button>Disallow</button>
<button>Allow</button>