2011-02-15 06:24:21 -05:00
|
|
|
<?php
|
2018-01-21 13:33:59 -05:00
|
|
|
/**
|
|
|
|
* @file mod/api.php
|
|
|
|
*/
|
2019-09-16 08:47:49 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2019-12-27 16:19:28 -05:00
|
|
|
use Friendica\Module\Security\Login;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2019-09-16 08:47:49 -04:00
|
|
|
require_once __DIR__ . '/../include/api.php';
|
2011-02-15 06:24:21 -05:00
|
|
|
|
2019-01-07 01:23:49 -05:00
|
|
|
function oauth_get_client(OAuthRequest $request)
|
2017-12-16 20:13:10 -05:00
|
|
|
{
|
2011-10-26 11:15:36 -04:00
|
|
|
$params = $request->get_parameters();
|
|
|
|
$token = $params['oauth_token'];
|
2015-08-17 16:38:05 -04:00
|
|
|
|
|
|
|
$r = q("SELECT `clients`.*
|
|
|
|
FROM `clients`, `tokens`
|
|
|
|
WHERE `clients`.`client_id`=`tokens`.`client_id`
|
2018-07-21 09:10:13 -04:00
|
|
|
AND `tokens`.`id`='%s' AND `tokens`.`scope`='request'", DBA::escape($token));
|
2011-10-26 11:15:36 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2011-10-26 11:15:36 -04:00
|
|
|
return null;
|
2018-01-21 13:33:59 -05:00
|
|
|
}
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2011-10-26 11:15:36 -04:00
|
|
|
return $r[0];
|
|
|
|
}
|
|
|
|
|
2017-12-16 20:13:10 -05:00
|
|
|
function api_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
2011-10-26 11:15:36 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (count($a->user) && !empty($a->user['uid']) && $a->user['uid'] != local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
2011-10-26 11:15:36 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 20:13:10 -05:00
|
|
|
function api_content(App $a)
|
|
|
|
{
|
2019-12-15 19:33:13 -05:00
|
|
|
if (DI::args()->getCommand() == 'api/oauth/authorize') {
|
2015-08-17 16:38:05 -04:00
|
|
|
/*
|
2011-10-26 11:15:36 -04:00
|
|
|
* api/oauth/authorize interact with the user. return a standard page
|
|
|
|
*/
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['template'] = "minimal";
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2011-11-07 11:36:41 -05:00
|
|
|
// get consumer/client from request token
|
|
|
|
try {
|
|
|
|
$request = OAuthRequest::from_request();
|
2017-12-16 20:13:10 -05:00
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "<pre>";
|
|
|
|
var_dump($e);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2011-11-07 11:36:41 -05:00
|
|
|
}
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($_POST['oauth_yes'])) {
|
2011-11-07 11:36:41 -05:00
|
|
|
$app = oauth_get_client($request);
|
2017-12-16 20:13:10 -05:00
|
|
|
if (is_null($app)) {
|
|
|
|
return "Invalid request. Unknown token.";
|
|
|
|
}
|
2011-11-07 11:36:41 -05:00
|
|
|
$consumer = new OAuthConsumer($app['client_id'], $app['pw'], $app['redirect_uri']);
|
2011-11-02 04:54:07 -04:00
|
|
|
|
2017-12-16 20:13:10 -05:00
|
|
|
$verifier = md5($app['secret'] . local_user());
|
2020-01-19 15:21:53 -05:00
|
|
|
DI::config()->set("oauth", $verifier, local_user());
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2017-12-16 20:13:10 -05:00
|
|
|
if ($consumer->callback_url != null) {
|
2011-11-07 11:36:41 -05:00
|
|
|
$params = $request->get_parameters();
|
2017-12-16 20:13:10 -05:00
|
|
|
$glue = "?";
|
|
|
|
if (strstr($consumer->callback_url, $glue)) {
|
|
|
|
$glue = "?";
|
|
|
|
}
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($consumer->callback_url . $glue . 'oauth_token=' . OAuthUtil::urlencode_rfc3986($params['oauth_token']) . '&oauth_verifier=' . OAuthUtil::urlencode_rfc3986($verifier));
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2011-11-07 11:36:41 -05:00
|
|
|
}
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate("oauth_authorize_done.tpl");
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Authorize application connection'),
|
|
|
|
'$info' => DI::l10n()->t('Return to your app and insert this Securty Code:'),
|
2011-11-02 04:54:07 -04:00
|
|
|
'$code' => $verifier,
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2011-10-26 11:15:36 -04:00
|
|
|
return $o;
|
|
|
|
}
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2017-12-16 20:13:10 -05:00
|
|
|
if (!local_user()) {
|
2015-12-25 17:17:34 -05:00
|
|
|
/// @TODO We need login form to redirect to this page
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Please login to continue.') . EOL);
|
2019-12-15 19:30:34 -05:00
|
|
|
return Login::form(DI::args()->getQueryString(), false, $request->get_parameters());
|
2011-10-26 11:15:36 -04:00
|
|
|
}
|
2011-11-07 11:36:41 -05:00
|
|
|
//FKOAuth1::loginUser(4);
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2011-11-07 11:36:41 -05:00
|
|
|
$app = oauth_get_client($request);
|
2017-12-16 20:13:10 -05:00
|
|
|
if (is_null($app)) {
|
|
|
|
return "Invalid request. Unknown token.";
|
|
|
|
}
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('oauth_authorize.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Authorize application connection'),
|
2011-10-26 11:15:36 -04:00
|
|
|
'$app' => $app,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$authorize' => DI::l10n()->t('Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'),
|
|
|
|
'$yes' => DI::l10n()->t('Yes'),
|
|
|
|
'$no' => DI::l10n()->t('No'),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-08-17 16:38:05 -04:00
|
|
|
|
2011-10-26 11:15:36 -04:00
|
|
|
return $o;
|
|
|
|
}
|
2013-12-15 17:00:47 -05:00
|
|
|
|
2011-02-15 06:24:21 -05:00
|
|
|
echo api_call($a);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2011-02-15 06:24:21 -05:00
|
|
|
}
|