summaryrefslogtreecommitdiff
path: root/lib/oauthstore.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-06 01:45:49 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-06 01:45:49 -0400
commitc22fb6e5693b4138ece9ad33f43639db4312a3a4 (patch)
treec6fcd247dc049796df46feba2745033d52ac3209 /lib/oauthstore.php
parente25d249a103363d3ea4ab1761063c90c21f9e2ff (diff)
mixed up OAuthConsumer and Consumer classes
darcs-hash:20080606054549-84dde-9d90611b14fa441873fc4504548d46848dbdf5b4.gz
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r--lib/oauthstore.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/oauthstore.php b/lib/oauthstore.php
index ee644a7f7..5b6ecc15d 100644
--- a/lib/oauthstore.php
+++ b/lib/oauthstore.php
@@ -41,7 +41,7 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
function lookup_token($consumer, $token_type, $token) {
$t = new Token();
- $t->consumer_key = $consumer->consumer_key;
+ $t->consumer_key = $consumer->key;
$t->tok = $token;
$t->type = ($token_type == 'access') ? 1 : 0;
if ($t->find(true)) {
@@ -53,7 +53,7 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
function lookup_nonce($consumer, $token, $nonce, $timestamp) {
$n = new Nonce();
- $n->consumer_key = $consumer->consumer_key;
+ $n->consumer_key = $consumer->key;
$n->tok = $token;
$n->nonce = $nonce;
if ($n->find(TRUE)) {
@@ -67,9 +67,9 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
}
function new_request_token($consumer) {
- common_debug('new_request_token("'.$consumer->consumer_key.'")', __FILE__);
+ common_debug('new_request_token("'.$consumer->key.'")', __FILE__);
$t = new Token();
- $t->consumer_key = $consumer->consumer_key;
+ $t->consumer_key = $consumer->key;
$t->tok = common_good_rand(16);
$t->secret = common_good_rand(16);
$t->type = 0; # request
@@ -90,11 +90,11 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
function new_access_token($token, $consumer) {
$rt = new Token();
- $rt->consumer_key = $consumer->consumer_key;
+ $rt->consumer_key = $consumer->key;
$rt->tok = $token;
if ($rt->find(TRUE) && $rt->state == 1) {
$at = new Token();
- $at->consumer_key = $consumer->consumer_key;
+ $at->consumer_key = $consumer->key;
$at->tok = common_good_rand(16);
$at->secret = common_good_rand(16);
$at->type = 1; # access