class SimpleOAuthDataStore in OAuth 1.0 6
Hierarchy
- class \OAuthDataStore
- class \SimpleOAuthDataStore
Expanded class hierarchy of SimpleOAuthDataStore
File
- ./
OAuth.php, line 664
View source
class SimpleOAuthDataStore extends OAuthDataStore {
/*{{{*/
private $dbh;
function __construct($path = "oauth.gdbm") {
/*{{{*/
$this->dbh = dba_popen($path, 'c', 'gdbm');
}
/*}}}*/
function __destruct() {
/*{{{*/
dba_close($this->dbh);
}
/*}}}*/
function lookup_consumer($consumer_key) {
/*{{{*/
$rv = dba_fetch("consumer_{$consumer_key}", $this->dbh);
if ($rv === FALSE) {
return NULL;
}
$obj = unserialize($rv);
if (!$obj instanceof OAuthConsumer) {
return NULL;
}
return $obj;
}
/*}}}*/
function lookup_token($consumer, $token_type, $token) {
/*{{{*/
$rv = dba_fetch("{$token_type}_{$token}", $this->dbh);
if ($rv === FALSE) {
return NULL;
}
$obj = unserialize($rv);
if (!$obj instanceof OAuthToken) {
return NULL;
}
return $obj;
}
/*}}}*/
function lookup_nonce($consumer, $token, $nonce, $timestamp) {
/*{{{*/
return dba_exists("nonce_{$nonce}", $this->dbh);
}
/*}}}*/
function new_token($consumer, $type = "request") {
/*{{{*/
$key = md5(time());
$secret = time() + time();
$token = new OAuthToken($key, md5(md5($secret)));
if (!dba_insert("{$type}_{$key}", serialize($token), $this->dbh)) {
throw new OAuthException("doooom!");
}
return $token;
}
/*}}}*/
function new_request_token($consumer) {
/*{{{*/
return $this
->new_token($consumer, "request");
}
/*}}}*/
function new_access_token($token, $consumer) {
/*{{{*/
$token = $this
->new_token($consumer, 'access');
dba_delete("request_" . $token->key, $this->dbh);
return $token;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OAuthDataStore:: |
function | |||
OAuthDataStore:: |
function | |||
SimpleOAuthDataStore:: |
private | property | ||
SimpleOAuthDataStore:: |
function |
Overrides OAuthDataStore:: |
||
SimpleOAuthDataStore:: |
function |
Overrides OAuthDataStore:: |
||
SimpleOAuthDataStore:: |
function |
Overrides OAuthDataStore:: |
||
SimpleOAuthDataStore:: |
function | |||
SimpleOAuthDataStore:: |
function | |||
SimpleOAuthDataStore:: |
function | |||
SimpleOAuthDataStore:: |
function | |||
SimpleOAuthDataStore:: |
function |