mirror of
https://github.com/friendica/friendica
synced 2025-05-11 15:04:09 +02:00
Functions and Standards
Standards and convert to dba functions where possible.
This commit is contained in:
parent
b991d8ff77
commit
9c7b6d9d5f
3 changed files with 91 additions and 61 deletions
|
@ -24,18 +24,24 @@ require_once "library/oauth2-php/lib/OAuth2.inc";
|
|||
*/
|
||||
class FKOAuthDataStore extends OAuthDataStore
|
||||
{
|
||||
function gen_token()
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
private static function genToken()
|
||||
{
|
||||
return md5(base64_encode(pack('N6', mt_rand(), mt_rand(), mt_rand(), mt_rand(), mt_rand(), uniqid())));
|
||||
}
|
||||
|
||||
function lookup_consumer($consumer_key)
|
||||
/**
|
||||
* @param string $consumer_key key
|
||||
* @return mixed
|
||||
*/
|
||||
public static function lookup_consumer($consumer_key)
|
||||
{
|
||||
logger(__function__.":".$consumer_key);
|
||||
|
||||
$r = q("SELECT client_id, pw, redirect_uri FROM clients WHERE client_id='%s'",
|
||||
dbesc($consumer_key)
|
||||
);
|
||||
$s = dba::select('clients', array('client_id', 'pw', 'redirect_uri'), array('client_id' => $consumer_key));
|
||||
$r = dba::inArray($r);
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
return new OAuthConsumer($r[0]['client_id'], $r[0]['pw'], $r[0]['redirect_uri']);
|
||||
|
@ -44,32 +50,41 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
return null;
|
||||
}
|
||||
|
||||
function lookup_token($consumer, $token_type, $token)
|
||||
/**
|
||||
* @param string $consumer consumer
|
||||
* @param string $token_type type
|
||||
* @param string $token token
|
||||
* @return mixed
|
||||
*/
|
||||
public static function lookup_token($consumer, $token_type, $token)
|
||||
{
|
||||
logger(__function__.":".$consumer.", ". $token_type.", ".$token);
|
||||
$r = q("SELECT id, secret,scope, expires, uid FROM tokens WHERE client_id='%s' AND scope='%s' AND id='%s'",
|
||||
dbesc($consumer->key),
|
||||
dbesc($token_type),
|
||||
dbesc($token)
|
||||
);
|
||||
|
||||
$s = dba::select('tokens', array('id', 'secret', 'scope', 'expires', 'uid'), array('client_id' => $consumer->key, 'scope' => $token_type, 'id' => $token));
|
||||
$r = dba::inArray($s);
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
$ot=new OAuthToken($r[0]['id'], $r[0]['secret']);
|
||||
$ot->scope=$r[0]['scope'];
|
||||
$ot->scope = $r[0]['scope'];
|
||||
$ot->expires = $r[0]['expires'];
|
||||
$ot->uid = $r[0]['uid'];
|
||||
return $ot;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function lookup_nonce($consumer, $token, $nonce, $timestamp)
|
||||
/**
|
||||
* @param string $consumer consumer
|
||||
* @param string $token token
|
||||
* @param string $nonce nonce
|
||||
* @param string $timestamp timestamp
|
||||
* @return mixed
|
||||
*/
|
||||
public static function lookup_nonce($consumer, $token, $nonce, $timestamp)
|
||||
{
|
||||
//echo __file__.":".__line__."<pre>"; var_dump($consumer,$key); killme();
|
||||
$r = q("SELECT id, secret FROM tokens WHERE client_id='%s' AND id='%s' AND expires=%d",
|
||||
dbesc($consumer->key),
|
||||
dbesc($nonce),
|
||||
intval($timestamp)
|
||||
);
|
||||
$s = dba::select('tokens', array('id', 'secret'), array('client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp));
|
||||
$r = dba::inArray($s);
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
return new OAuthToken($r[0]['id'], $r[0]['secret']);
|
||||
|
@ -78,11 +93,16 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
return null;
|
||||
}
|
||||
|
||||
function new_request_token($consumer, $callback = null)
|
||||
/**
|
||||
* @param string $consumer consumer
|
||||
* @param string $callback optional, default null
|
||||
* @return mixed
|
||||
*/
|
||||
public static function new_request_token($consumer, $callback = null)
|
||||
{
|
||||
logger(__function__.":".$consumer.", ". $callback);
|
||||
$key = $this->gen_token();
|
||||
$sec = $this->gen_token();
|
||||
$key = self::genToken();
|
||||
$sec = self::genToken();
|
||||
|
||||
if ($consumer->key) {
|
||||
$k = $consumer->key;
|
||||
|
@ -90,12 +110,14 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
$k = $consumer;
|
||||
}
|
||||
|
||||
$r = q("INSERT INTO tokens (id, secret, client_id, scope, expires) VALUES ('%s','%s','%s','%s', UNIX_TIMESTAMP()+%d)",
|
||||
dbesc($key),
|
||||
dbesc($sec),
|
||||
dbesc($k),
|
||||
'request',
|
||||
intval(REQUEST_TOKEN_DURATION)
|
||||
$r = dba::insert(
|
||||
'tokens',
|
||||
array(
|
||||
'id' => $key,
|
||||
'secret' => $sec,
|
||||
'client_id' => $k,
|
||||
'scope' => 'request',
|
||||
'expires' => UNIX_TIMESTAMP() + REQUEST_TOKEN_DURATION)
|
||||
);
|
||||
|
||||
if (!$r) {
|
||||
|
@ -105,7 +127,13 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
return new OAuthToken($key, $sec);
|
||||
}
|
||||
|
||||
function new_access_token($token, $consumer, $verifier = null)
|
||||
/**
|
||||
* @param string $token token
|
||||
* @param string $consumer consumer
|
||||
* @param string $verifier optional, defult null
|
||||
* @return object
|
||||
*/
|
||||
public static function new_access_token($token, $consumer, $verifier = null)
|
||||
{
|
||||
logger(__function__.":".$token.", ". $consumer.", ". $verifier);
|
||||
|
||||
|
@ -121,15 +149,17 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
logger(__function__.":".$verifier.",".$uverifier);
|
||||
|
||||
if (is_null($verifier) || ($uverifier!==false)) {
|
||||
$key = $this->gen_token();
|
||||
$sec = $this->gen_token();
|
||||
$r = q("INSERT INTO tokens (id, secret, client_id, scope, expires, uid) VALUES ('%s','%s','%s','%s', UNIX_TIMESTAMP()+%d, %d)",
|
||||
dbesc($key),
|
||||
dbesc($sec),
|
||||
dbesc($consumer->key),
|
||||
'access',
|
||||
intval(ACCESS_TOKEN_DURATION),
|
||||
intval($uverifier)
|
||||
$key = self::genToken();
|
||||
$sec = self::genToken();
|
||||
$r = dba::insert(
|
||||
'tokens',
|
||||
array(
|
||||
'id' => $key,
|
||||
'secret' => $sec,
|
||||
'client_id' => $consumer->key,
|
||||
'scope' => 'access',
|
||||
'expires' => UNIX_TIMESTAMP() + ACCESS_TOKEN_DURATION,
|
||||
'uid' => $uverifier)
|
||||
);
|
||||
|
||||
if ($r) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue