2011-02-15 12:24:21 +01:00
|
|
|
<?php
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-02-15 12:24:21 +01:00
|
|
|
require_once('include/api.php');
|
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
function oauth_get_client($request){
|
2016-02-07 15:11:34 +01:00
|
|
|
|
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
$params = $request->get_parameters();
|
|
|
|
$token = $params['oauth_token'];
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
$r = q("SELECT `clients`.*
|
|
|
|
FROM `clients`, `tokens`
|
|
|
|
WHERE `clients`.`client_id`=`tokens`.`client_id`
|
2011-10-26 17:15:36 +02:00
|
|
|
AND `tokens`.`id`='%s' AND `tokens`.`scope`='request'",
|
|
|
|
dbesc($token));
|
|
|
|
|
|
|
|
if (!count($r))
|
|
|
|
return null;
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
return $r[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
function api_post(&$a) {
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
if(! local_user()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
}
|
|
|
|
|
2011-02-15 12:24:21 +01:00
|
|
|
function api_content(&$a) {
|
2011-10-26 17:15:36 +02:00
|
|
|
if ($a->cmd=='api/oauth/authorize'){
|
2015-08-17 22:38:05 +02:00
|
|
|
/*
|
2011-10-26 17:15:36 +02:00
|
|
|
* api/oauth/authorize interact with the user. return a standard page
|
|
|
|
*/
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
$a->page['template'] = "minimal";
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
// get consumer/client from request token
|
|
|
|
try {
|
|
|
|
$request = OAuthRequest::from_request();
|
|
|
|
} catch(Exception $e) {
|
|
|
|
echo "<pre>"; var_dump($e); killme();
|
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
if (x($_POST,'oauth_yes')){
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
$app = oauth_get_client($request);
|
2011-10-26 17:15:36 +02:00
|
|
|
if (is_null($app)) return "Invalid request. Unknown token.";
|
2011-11-07 17:36:41 +01:00
|
|
|
$consumer = new OAuthConsumer($app['client_id'], $app['pw'], $app['redirect_uri']);
|
2011-11-02 09:54:07 +01:00
|
|
|
|
|
|
|
$verifier = md5($app['secret'].local_user());
|
2011-11-07 17:36:41 +01:00
|
|
|
set_config("oauth", $verifier, local_user());
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
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();
|
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
$tpl = get_markup_template("oauth_authorize_done.tpl");
|
|
|
|
$o = replace_macros($tpl, array(
|
|
|
|
'$title' => t('Authorize application connection'),
|
|
|
|
'$info' => t('Return to your app and insert this Securty Code:'),
|
2011-11-02 09:54:07 +01:00
|
|
|
'$code' => $verifier,
|
2011-10-26 17:15:36 +02:00
|
|
|
));
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
return $o;
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
if(! local_user()) {
|
2015-12-25 23:17:34 +01:00
|
|
|
/// @TODO We need login form to redirect to this page
|
2011-10-26 17:15:36 +02:00
|
|
|
notice( t('Please login to continue.') . EOL );
|
2011-11-07 17:36:41 +01:00
|
|
|
return login(false,$request->get_parameters());
|
2011-10-26 17:15:36 +02:00
|
|
|
}
|
2011-11-07 17:36:41 +01:00
|
|
|
//FKOAuth1::loginUser(4);
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-11-07 17:36:41 +01:00
|
|
|
$app = oauth_get_client($request);
|
2011-10-26 17:15:36 +02:00
|
|
|
if (is_null($app)) return "Invalid request. Unknown token.";
|
2011-11-07 17:36:41 +01:00
|
|
|
|
2015-08-17 22:38:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
$tpl = get_markup_template('oauth_authorize.tpl');
|
|
|
|
$o = replace_macros($tpl, array(
|
|
|
|
'$title' => t('Authorize application connection'),
|
|
|
|
'$app' => $app,
|
|
|
|
'$authorize' => t('Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'),
|
|
|
|
'$yes' => t('Yes'),
|
|
|
|
'$no' => t('No'),
|
|
|
|
));
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
//echo "<pre>"; var_dump($app); killme();
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
return $o;
|
|
|
|
}
|
2013-12-15 23:00:47 +01:00
|
|
|
|
2011-02-15 12:24:21 +01:00
|
|
|
echo api_call($a);
|
|
|
|
killme();
|
|
|
|
}
|