2011-02-15 12:24:21 +01:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/api.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-17 17:40:59 +01:00
|
|
|
use Friendica\Module\Login;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
require_once 'include/api.php';
|
2011-02-15 12:24:21 +01:00
|
|
|
|
2017-12-17 02:13:10 +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`
|
2018-07-21 15:10:13 +02:00
|
|
|
AND `tokens`.`id`='%s' AND `tokens`.`scope`='request'", DBA::escape($token));
|
2011-10-26 17:15:36 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2011-10-26 17:15:36 +02:00
|
|
|
return null;
|
2018-01-21 19:33:59 +01:00
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
return $r[0];
|
|
|
|
}
|
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
function api_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-10-26 17:15:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
if (count($a->user) && x($a->user, 'uid') && $a->user['uid'] != local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-10-26 17:15:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
function api_content(App $a)
|
|
|
|
{
|
|
|
|
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();
|
2017-12-17 02:13:10 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "<pre>";
|
|
|
|
var_dump($e);
|
|
|
|
killme();
|
2011-11-07 17:36:41 +01:00
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
if (x($_POST, 'oauth_yes')) {
|
2011-11-07 17:36:41 +01:00
|
|
|
$app = oauth_get_client($request);
|
2017-12-17 02:13:10 +01: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
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
$verifier = md5($app['secret'] . local_user());
|
2017-11-07 03:22:52 +01:00
|
|
|
Config::set("oauth", $verifier, local_user());
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
if ($consumer->callback_url != null) {
|
2011-11-07 17:36:41 +01:00
|
|
|
$params = $request->get_parameters();
|
2017-12-17 02:13:10 +01:00
|
|
|
$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));
|
2011-11-07 17:36:41 +01:00
|
|
|
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");
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2018-01-21 19:33:59 +01:00
|
|
|
'$title' => L10n::t('Authorize application connection'),
|
|
|
|
'$info' => L10n::t('Return to your app and insert this Securty Code:'),
|
2011-11-02 09:54:07 +01:00
|
|
|
'$code' => $verifier,
|
2018-01-15 14:05:12 +01: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
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
if (!local_user()) {
|
2015-12-25 23:17:34 +01:00
|
|
|
/// @TODO We need login form to redirect to this page
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Please login to continue.') . EOL);
|
2017-12-17 17:40:59 +01:00
|
|
|
return Login::form($a->query_string, 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);
|
2017-12-17 02:13:10 +01:00
|
|
|
if (is_null($app)) {
|
|
|
|
return "Invalid request. Unknown token.";
|
|
|
|
}
|
2015-08-17 22:38:05 +02:00
|
|
|
|
2011-10-26 17:15:36 +02:00
|
|
|
$tpl = get_markup_template('oauth_authorize.tpl');
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2018-01-21 19:33:59 +01:00
|
|
|
'$title' => L10n::t('Authorize application connection'),
|
2011-10-26 17:15:36 +02:00
|
|
|
'$app' => $app,
|
2018-01-21 19:33:59 +01:00
|
|
|
'$authorize' => L10n::t('Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'),
|
|
|
|
'$yes' => L10n::t('Yes'),
|
|
|
|
'$no' => L10n::t('No'),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
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();
|
|
|
|
}
|