2008-05-27 21:07:21 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/omb.php');
|
|
|
|
|
|
|
|
class LaconicaOAuthDataStore extends OAuthDataStore {
|
|
|
|
|
2008-05-30 15:23:24 +01:00
|
|
|
# We keep a record of who's contacted us
|
2008-05-27 21:07:21 +01:00
|
|
|
|
|
|
|
function lookup_consumer($consumer_key) {
|
2008-06-02 21:06:45 +01:00
|
|
|
$con = Consumer::staticGet('consumer_key', $consumer_key);
|
2008-05-27 21:07:21 +01:00
|
|
|
if (!$con) {
|
|
|
|
$con = new Consumer();
|
|
|
|
$con->consumer_key = $consumer_key;
|
|
|
|
$con->seed = common_good_rand(16);
|
|
|
|
$con->created = DB_DataObject_Cast::dateTime();
|
|
|
|
if (!$con->insert()) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new OAuthConsumer($con->consumer_key, '');
|
|
|
|
}
|
|
|
|
|
2008-06-06 07:06:01 +01:00
|
|
|
function lookup_token($consumer, $token_type, $token_key) {
|
2008-05-27 21:07:21 +01:00
|
|
|
$t = new Token();
|
2008-06-06 06:45:49 +01:00
|
|
|
$t->consumer_key = $consumer->key;
|
2008-06-06 07:06:01 +01:00
|
|
|
$t->tok = $token_key;
|
2008-05-27 21:07:21 +01:00
|
|
|
$t->type = ($token_type == 'access') ? 1 : 0;
|
|
|
|
if ($t->find(true)) {
|
|
|
|
return new OAuthToken($t->tok, $t->secret);
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_nonce($consumer, $token, $nonce, $timestamp) {
|
|
|
|
$n = new Nonce();
|
2008-06-06 06:45:49 +01:00
|
|
|
$n->consumer_key = $consumer->key;
|
2008-06-06 07:06:01 +01:00
|
|
|
$n->tok = $token->key;
|
2008-05-27 21:07:21 +01:00
|
|
|
$n->nonce = $nonce;
|
|
|
|
if ($n->find(TRUE)) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
$n->timestamp = $timestamp;
|
|
|
|
$n->created = DB_DataObject_Cast::dateTime();
|
|
|
|
$n->insert();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:51:38 +01:00
|
|
|
function new_request_token($consumer) {
|
2008-05-27 21:07:21 +01:00
|
|
|
$t = new Token();
|
2008-06-06 06:45:49 +01:00
|
|
|
$t->consumer_key = $consumer->key;
|
2008-05-27 21:07:21 +01:00
|
|
|
$t->tok = common_good_rand(16);
|
|
|
|
$t->secret = common_good_rand(16);
|
|
|
|
$t->type = 0; # request
|
2008-06-06 06:39:14 +01:00
|
|
|
$t->state = 0; # unauthorized
|
2008-05-27 21:07:21 +01:00
|
|
|
$t->created = DB_DataObject_Cast::dateTime();
|
|
|
|
if (!$t->insert()) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return new OAuthToken($t->tok, $t->secret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:51:38 +01:00
|
|
|
# defined in OAuthDataStore, but not implemented anywhere
|
|
|
|
|
|
|
|
function fetch_request_token($consumer) {
|
|
|
|
return $this->new_request_token($consumer);
|
|
|
|
}
|
|
|
|
|
|
|
|
function new_access_token($token, $consumer) {
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('new_access_token("'.$token->key.'","'.$consumer->key.'")', __FILE__);
|
2008-05-27 21:07:21 +01:00
|
|
|
$rt = new Token();
|
2008-06-06 06:45:49 +01:00
|
|
|
$rt->consumer_key = $consumer->key;
|
2008-06-06 07:06:01 +01:00
|
|
|
$rt->tok = $token->key;
|
|
|
|
$rt->type = 0; # request
|
|
|
|
if ($rt->find(TRUE) && $rt->state == 1) { # authorized
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('request token found.', __FILE__);
|
2008-05-27 21:07:21 +01:00
|
|
|
$at = new Token();
|
2008-06-06 06:45:49 +01:00
|
|
|
$at->consumer_key = $consumer->key;
|
2008-05-27 21:07:21 +01:00
|
|
|
$at->tok = common_good_rand(16);
|
|
|
|
$at->secret = common_good_rand(16);
|
|
|
|
$at->type = 1; # access
|
|
|
|
$at->created = DB_DataObject_Cast::dateTime();
|
|
|
|
if (!$at->insert()) {
|
2008-06-06 07:15:56 +01:00
|
|
|
$e = $at->_lastError;
|
|
|
|
common_debug('access token "'.$at->tok.'" not inserted: "'.$e->message.'"', __FILE__);
|
2008-05-27 21:07:21 +01:00
|
|
|
return NULL;
|
|
|
|
} else {
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('access token "'.$at->tok.'" inserted', __FILE__);
|
2008-05-27 21:07:21 +01:00
|
|
|
# burn the old one
|
|
|
|
$orig_rt = clone($rt);
|
|
|
|
$rt->state = 2; # used
|
|
|
|
if (!$rt->update($orig_rt)) {
|
|
|
|
return NULL;
|
2008-06-04 19:51:31 +01:00
|
|
|
}
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('request token "'.$rt->tok.'" updated', __FILE__);
|
2008-06-04 19:51:31 +01:00
|
|
|
# Update subscription
|
|
|
|
# XXX: mixing levels here
|
|
|
|
$sub = Subscription::staticGet('token', $rt->tok);
|
|
|
|
if (!$sub) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('subscription for request token found', __FILE__);
|
2008-06-04 19:51:31 +01:00
|
|
|
$orig_sub = clone($sub);
|
|
|
|
$sub->token = $at->tok;
|
|
|
|
$sub->secret = $at->secret;
|
|
|
|
if (!$sub->update($orig_sub)) {
|
|
|
|
return NULL;
|
2008-05-27 21:07:21 +01:00
|
|
|
} else {
|
2008-06-06 07:15:56 +01:00
|
|
|
common_debug('subscription updated to use access token', __FILE__);
|
2008-05-27 21:07:21 +01:00
|
|
|
return new OAuthToken($at->tok, $at->secret);
|
2008-06-04 19:51:31 +01:00
|
|
|
}
|
2008-05-27 21:07:21 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2008-06-02 20:51:38 +01:00
|
|
|
|
|
|
|
# defined in OAuthDataStore, but not implemented anywhere
|
|
|
|
|
|
|
|
function fetch_access_token($consumer) {
|
|
|
|
return $this->new_access_token($consumer);
|
|
|
|
}
|
2008-05-27 21:07:21 +01:00
|
|
|
}
|