]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change names, update
authorEvan Prodromou <evan@prodromou.name>
Mon, 2 Jun 2008 19:51:38 +0000 (15:51 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 2 Jun 2008 19:51:38 +0000 (15:51 -0400)
darcs-hash:20080602195138-84dde-d5106000f1496aac729685b65da8bb21c520f0a3.gz

lib/oauthstore.php

index 4d2ce9a58d50c1308eb28304df5dc75252c6f61d..fe7f68c02cbcfb55cffcea2cdbf6a5ee53c5bc5c 100644 (file)
@@ -66,7 +66,7 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
                }
        }
        
-       function fetch_request_token($consumer) {
+       function new_request_token($consumer) {
                $t = new Token();
                $t->consumer_key = $consumer->consumer_key;
                $t->tok = common_good_rand(16);
@@ -81,7 +81,13 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
                }
        }
 
-       function fetch_access_token($token, $consumer) {
+       # defined in OAuthDataStore, but not implemented anywhere
+       
+       function fetch_request_token($consumer) {
+               return $this->new_request_token($consumer);
+       }
+       
+       function new_access_token($token, $consumer) {
                $rt = new Token();
                $rt->consumer_key = $consumer->consumer_key;
                $rt->tok = $token;
@@ -108,4 +114,10 @@ class LaconicaOAuthDataStore extends OAuthDataStore {
                        return NULL;
                }
        }
+       
+       # defined in OAuthDataStore, but not implemented anywhere
+       
+       function fetch_access_token($consumer) {
+               return $this->new_access_token($consumer);
+       }
 }