X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FFKOAuthDataStore.php;h=e0c048781344f2fc2637e9ea2efa42fcfb5c2fed;hb=e36f2bb1fb3439e9993c7568e57140c4f954b772;hp=fa4de46e4fe1c76a7376480d1fd950e7a8b7a595;hpb=77dfbaa0bf8b4749ec3f8ea46519a96f5cba464c;p=friendica.git diff --git a/src/Network/FKOAuthDataStore.php b/src/Network/FKOAuthDataStore.php index fa4de46e4f..e0c0487813 100644 --- a/src/Network/FKOAuthDataStore.php +++ b/src/Network/FKOAuthDataStore.php @@ -44,7 +44,7 @@ class FKOAuthDataStore extends OAuthDataStore { logger(__function__ . ":" . $consumer_key); - $s = dba::select('clients', array('client_id', 'pw', 'redirect_uri'), array('client_id' => $consumer_key)); + $s = dba::select('clients', ['client_id', 'pw', 'redirect_uri'], ['client_id' => $consumer_key]); $r = dba::inArray($s); if (DBM::is_result($r)) { @@ -64,7 +64,7 @@ class FKOAuthDataStore extends OAuthDataStore { logger(__function__ . ":" . $consumer . ", " . $token_type . ", " . $token); - $s = dba::select('tokens', array('id', 'secret', 'scope', 'expires', 'uid'), array('client_id' => $consumer->key, 'scope' => $token_type, 'id' => $token)); + $s = dba::select('tokens', ['id', 'secret', 'scope', 'expires', 'uid'], ['client_id' => $consumer->key, 'scope' => $token_type, 'id' => $token]); $r = dba::inArray($s); if (DBM::is_result($r)) { @@ -114,12 +114,12 @@ class FKOAuthDataStore extends OAuthDataStore $r = dba::insert( 'tokens', - array( + [ 'id' => $key, 'secret' => $sec, 'client_id' => $k, 'scope' => 'request', - 'expires' => time() + REQUEST_TOKEN_DURATION) + 'expires' => time() + REQUEST_TOKEN_DURATION] ); if (!$r) { @@ -155,13 +155,13 @@ class FKOAuthDataStore extends OAuthDataStore $sec = self::genToken(); $r = dba::insert( 'tokens', - array( + [ 'id' => $key, 'secret' => $sec, 'client_id' => $consumer->key, 'scope' => 'access', 'expires' => time() + ACCESS_TOKEN_DURATION, - 'uid' => $uverifier) + 'uid' => $uverifier] ); if ($r) { @@ -169,7 +169,7 @@ class FKOAuthDataStore extends OAuthDataStore } } - dba::delete('tokens', array('id' => $token->key)); + dba::delete('tokens', ['id' => $token->key]); if (!is_null($ret) && !is_null($uverifier)) { Config::delete("oauth", $verifier);