]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/oauthstore.php
Fix nonce usage in OAuth store
[quix0rs-gnu-social.git] / lib / oauthstore.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/omb.php');
23
24 class LaconicaOAuthDataStore extends OAuthDataStore
25 {
26
27     // We keep a record of who's contacted us
28
29     function lookup_consumer($consumer_key)
30     {
31         $con = Consumer::staticGet('consumer_key', $consumer_key);
32         if (!$con) {
33             $con = new Consumer();
34             $con->consumer_key = $consumer_key;
35             $con->seed = common_good_rand(16);
36             $con->created = DB_DataObject_Cast::dateTime();
37             if (!$con->insert()) {
38                 return null;
39             }
40         }
41         return new OAuthConsumer($con->consumer_key, '');
42     }
43
44     function lookup_token($consumer, $token_type, $token_key)
45     {
46         $t = new Token();
47         $t->consumer_key = $consumer->key;
48         $t->tok = $token_key;
49         $t->type = ($token_type == 'access') ? 1 : 0;
50         if ($t->find(true)) {
51             return new OAuthToken($t->tok, $t->secret);
52         } else {
53             return null;
54         }
55     }
56
57     function lookup_nonce($consumer, $token, $nonce, $timestamp)
58     {
59         $n = new Nonce();
60         $n->consumer_key = $consumer->key;
61         $n->ts = $timestamp;
62         $n->nonce = $nonce;
63         if ($n->find(true)) {
64             return true;
65         } else {
66             $n->created = DB_DataObject_Cast::dateTime();
67             $n->insert();
68             return false;
69         }
70     }
71
72     function new_request_token($consumer)
73     {
74         $t = new Token();
75         $t->consumer_key = $consumer->key;
76         $t->tok = common_good_rand(16);
77         $t->secret = common_good_rand(16);
78         $t->type = 0; // request
79         $t->state = 0; // unauthorized
80         $t->created = DB_DataObject_Cast::dateTime();
81         if (!$t->insert()) {
82             return null;
83         } else {
84             return new OAuthToken($t->tok, $t->secret);
85         }
86     }
87
88     // defined in OAuthDataStore, but not implemented anywhere
89
90     function fetch_request_token($consumer)
91     {
92         return $this->new_request_token($consumer);
93     }
94
95     function new_access_token($token, $consumer)
96     {
97         common_debug('new_access_token("'.$token->key.'","'.$consumer->key.'")', __FILE__);
98         $rt = new Token();
99         $rt->consumer_key = $consumer->key;
100         $rt->tok = $token->key;
101         $rt->type = 0; // request
102         if ($rt->find(true) && $rt->state == 1) { // authorized
103             common_debug('request token found.', __FILE__);
104             $at = new Token();
105             $at->consumer_key = $consumer->key;
106             $at->tok = common_good_rand(16);
107             $at->secret = common_good_rand(16);
108             $at->type = 1; // access
109             $at->created = DB_DataObject_Cast::dateTime();
110             if (!$at->insert()) {
111                 $e = $at->_lastError;
112                 common_debug('access token "'.$at->tok.'" not inserted: "'.$e->message.'"', __FILE__);
113                 return null;
114             } else {
115                 common_debug('access token "'.$at->tok.'" inserted', __FILE__);
116                 // burn the old one
117                 $orig_rt = clone($rt);
118                 $rt->state = 2; // used
119                 if (!$rt->update($orig_rt)) {
120                     return null;
121                 }
122                 common_debug('request token "'.$rt->tok.'" updated', __FILE__);
123                 // Update subscription
124                 // XXX: mixing levels here
125                 $sub = Subscription::staticGet('token', $rt->tok);
126                 if (!$sub) {
127                     return null;
128                 }
129                 common_debug('subscription for request token found', __FILE__);
130                 $orig_sub = clone($sub);
131                 $sub->token = $at->tok;
132                 $sub->secret = $at->secret;
133                 if (!$sub->update($orig_sub)) {
134                     return null;
135                 } else {
136                     common_debug('subscription updated to use access token', __FILE__);
137                     return new OAuthToken($at->tok, $at->secret);
138                 }
139             }
140         } else {
141             return null;
142         }
143     }
144
145     // defined in OAuthDataStore, but not implemented anywhere
146
147     function fetch_access_token($consumer)
148     {
149         return $this->new_access_token($consumer);
150     }
151 }