summaryrefslogtreecommitdiff
path: root/actions/userauthorization.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-06 01:33:21 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-06 01:33:21 -0400
commit281dbc3177744ff522e96d844d194ff65b1f4776 (patch)
treeb388f9b1ce152de7e9a12c32ca30a9c77c6a7fcb /actions/userauthorization.php
parentc5853abc393a233e3514655df63cf9b01ded8293 (diff)
debug info for authorizing token
darcs-hash:20080606053321-84dde-c6ee7a4565cce35873ad36890b609b90b65b472d.gz
Diffstat (limited to 'actions/userauthorization.php')
-rw-r--r--actions/userauthorization.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index c6d4bed4e..b4fe1b075 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -185,15 +185,22 @@ class UserauthorizationAction extends Action {
}
function authorize_token(&$req) {
- $consumer_key = @$req->get_parameter('oauth_consumer_key');
- $token_field = @$req->get_parameter('oauth_token');
+ $consumer_key = $req->get_parameter('oauth_consumer_key');
+ $token_field = $req->get_parameter('oauth_token');
+ common_debug('consumer key = "'.$consumer_key.'"', __FILE__);
+ common_debug('token field = "'.$token_field.'"', __FILE__);
$rt = new Token();
$rt->consumer_key = $consumer_key;
$rt->tok = $token_field;
- if ($rt->find(TRUE)) {
+ $rt->type = 0;
+ $rt->state = 0;
+ common_debug('request token to look up: "'.print_r($rt,TRUE).'"');
+ if ($rt->find(true)) {
+ common_debug('found request token to authorize', __FILE__);
$orig_rt = clone($rt);
$rt->state = 1; # Authorized but not used
if ($rt->update($orig_rt)) {
+ common_debug('updated request token so it is authorized', __FILE__);
return true;
}
}