aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-11-07 17:36:41 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-11-07 17:36:41 +0100
commit10e5754e247e9adf7c576547c69d12ca09973c7a (patch)
tree567006262c37e7504e9f812c9cb3c8ee665d8c32 /mod
parent967f8b575e8ea3f9710dfb092ff993459edc2ab8 (diff)
downloadvolse-hubzilla-10e5754e247e9adf7c576547c69d12ca09973c7a.tar.gz
volse-hubzilla-10e5754e247e9adf7c576547c69d12ca09973c7a.tar.bz2
volse-hubzilla-10e5754e247e9adf7c576547c69d12ca09973c7a.zip
oauth: authorize
Diffstat (limited to 'mod')
-rw-r--r--mod/api.php45
1 files changed, 31 insertions, 14 deletions
diff --git a/mod/api.php b/mod/api.php
index 5903caee6..ad75e6620 100644
--- a/mod/api.php
+++ b/mod/api.php
@@ -2,13 +2,8 @@
require_once('include/api.php');
-function oauth_get_client(){
- // get consumer/client from request token
- try {
- $request = OAuthRequest::from_request();
- } catch(Exception $e) {
- echo "<pre>"; var_dump($e); killme();
- }
+function oauth_get_client($request){
+
$params = $request->get_parameters();
$token = $params['oauth_token'];
@@ -45,16 +40,36 @@ function api_content(&$a) {
* api/oauth/authorize interact with the user. return a standard page
*/
+ $a->page['template'] = "minimal";
- if (x($_POST,'oauth_yes')){
+ // get consumer/client from request token
+ try {
+ $request = OAuthRequest::from_request();
+ } catch(Exception $e) {
+ echo "<pre>"; var_dump($e); killme();
+ }
+
+
+ if (x($_POST,'oauth_yes')){
- $app = oauth_get_client();
+ $app = oauth_get_client($request);
if (is_null($app)) return "Invalid request. Unknown token.";
- $consumer = new OAuthConsumer($app['key'], $app['secret']);
+ $consumer = new OAuthConsumer($app['client_id'], $app['pw'], $app['redirect_uri']);
$verifier = md5($app['secret'].local_user());
- set_pconfig(local_user(), "oauth", "verifier", $verifier);
+ set_config("oauth", $verifier, local_user());
+
+
+ if ($consumer->callback_url!=null) {
+ $params = $request->get_parameters();
+ $glue="?";
+ if (strstr($consumer->callback_url,$glue)) $glue="?";
+ goaway($consumer->callback_url.$glue."oauth_token=".OAuthUtil::urlencode_rfc3986($params['oauth_token'])."&oauth_verifier=".OAuthUtil::urlencode_rfc3986($verifier));
+ killme();
+ }
+
+
$tpl = get_markup_template("oauth_authorize_done.tpl");
$o = replace_macros($tpl, array(
@@ -67,19 +82,21 @@ function api_content(&$a) {
}
-
if(! local_user()) {
//TODO: we need login form to redirect to this page
notice( t('Please login to continue.') . EOL );
- return login(false);
+ return login(false,$request->get_parameters());
}
+ //FKOAuth1::loginUser(4);
- $app = oauth_get_client();
+ $app = oauth_get_client($request);
if (is_null($app)) return "Invalid request. Unknown token.";
+
+
$tpl = get_markup_template('oauth_authorize.tpl');
$o = replace_macros($tpl, array(
'$title' => t('Authorize application connection'),