streams/include/oauth.php

178 lines
4.2 KiB
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
2011-10-20 13:57:35 +00:00
/**
2019-01-25 03:03:14 +00:00
* OAuth-1 server
2011-10-20 13:57:35 +00:00
*
*/
2011-11-02 08:54:07 +00:00
define('REQUEST_TOKEN_DURATION', 300);
define('ACCESS_TOKEN_DURATION', 31536000);
2011-10-20 13:57:35 +00:00
2019-05-15 05:16:49 +00:00
require_once('library/OAuth1.php');
2011-10-20 13:57:35 +00:00
class ZotOAuth1DataStore extends OAuth1DataStore {
function gen_token(){
2011-10-20 13:57:35 +00:00
return md5(base64_encode(pack('N6', mt_rand(), mt_rand(), mt_rand(), mt_rand(), mt_rand(), uniqid())));
}
2011-10-20 13:57:35 +00:00
function lookup_consumer($consumer_key) {
logger('consumer_key: ' . $consumer_key, LOGGER_DEBUG);
$r = q("SELECT client_id, pw, redirect_uri FROM clients WHERE client_id = '%s'",
2011-10-20 13:57:35 +00:00
dbesc($consumer_key)
);
if($r) {
2016-03-31 23:06:03 +00:00
App::set_oauth_key($consumer_key);
return new OAuth1Consumer($r[0]['client_id'],$r[0]['pw'],$r[0]['redirect_uri']);
}
2011-10-20 13:57:35 +00:00
return null;
}
2011-10-20 13:57:35 +00:00
function lookup_token($consumer, $token_type, $token) {
2019-05-15 05:16:49 +00:00
logger(__function__ . ':' . $consumer . ', ' . $token_type . ', ' . $token, LOGGER_DEBUG);
$r = q("SELECT id, secret, auth_scope, expires, uid FROM tokens WHERE client_id = '%s' AND auth_scope = '%s' AND id = '%s'",
2011-10-20 13:57:35 +00:00
dbesc($consumer->key),
dbesc($token_type),
dbesc($token)
);
2019-05-15 05:16:49 +00:00
if ($r) {
$ot = new OAuth1Token($r[0]['id'],$r[0]['secret']);
$ot->scope = $r[0]['auth_scope'];
2011-10-20 13:57:35 +00:00
$ot->expires = $r[0]['expires'];
2011-11-07 16:36:41 +00:00
$ot->uid = $r[0]['uid'];
2011-10-20 13:57:35 +00:00
return $ot;
}
return null;
}
2011-10-20 13:57:35 +00:00
function lookup_nonce($consumer, $token, $nonce, $timestamp) {
$r = q("SELECT id, secret FROM tokens WHERE client_id = '%s' AND id = '%s' AND expires = %d",
2011-10-20 13:57:35 +00:00
dbesc($consumer->key),
dbesc($nonce),
intval($timestamp)
);
2019-05-15 05:16:49 +00:00
if ($r) {
return new OAuth1Token($r[0]['id'],$r[0]['secret']);
2019-05-15 05:16:49 +00:00
}
2011-10-20 13:57:35 +00:00
return null;
}
function new_request_token($consumer, $callback = null) {
2019-05-15 05:16:49 +00:00
logger(__function__ . ':' . $consumer . ', ' . $callback, LOGGER_DEBUG);
2011-10-20 13:57:35 +00:00
$key = $this->gen_token();
$sec = $this->gen_token();
2011-11-07 16:36:41 +00:00
if ($consumer->key){
$k = $consumer->key;
2019-05-15 05:16:49 +00:00
}
else {
2011-11-07 16:36:41 +00:00
$k = $consumer;
}
2018-05-21 20:37:55 +00:00
$r = q("INSERT INTO tokens (id, secret, client_id, auth_scope, expires, uid) VALUES ('%s','%s','%s','%s', %d, 0)",
2011-10-20 13:57:35 +00:00
dbesc($key),
dbesc($sec),
2011-11-07 16:36:41 +00:00
dbesc($k),
2011-10-20 13:57:35 +00:00
'request',
2015-05-24 16:26:12 +00:00
time()+intval(REQUEST_TOKEN_DURATION));
2019-05-15 05:16:49 +00:00
if (! $r) {
return null;
2019-05-15 05:16:49 +00:00
}
return new OAuth1Token($key,$sec);
}
2011-10-20 13:57:35 +00:00
function new_access_token($token, $consumer, $verifier = null) {
2019-05-15 05:16:49 +00:00
logger(__function__ . ':' . $token . ', ' . $consumer .', ' . $verifier, LOGGER_DEBUG);
2011-10-20 13:57:35 +00:00
// return a new access token attached to this consumer
// for the user associated with this token if the request token
// is authorized
// should also invalidate the request token
2019-05-15 05:16:49 +00:00
$ret = null;
// get user for this verifier
$uverifier = get_config("oauth", $verifier);
2019-05-15 05:16:49 +00:00
logger(__function__ . ':' . $verifier . ', ' . $uverifier, LOGGER_DEBUG);
if (is_null($verifier) || ($uverifier !== false)) {
2011-10-20 13:57:35 +00:00
$key = $this->gen_token();
$sec = $this->gen_token();
$r = q("INSERT INTO tokens (id, secret, client_id, auth_scope, expires, uid) VALUES ('%s','%s','%s','%s', %d, %d)",
2011-10-20 13:57:35 +00:00
dbesc($key),
dbesc($sec),
2011-11-07 16:36:41 +00:00
dbesc($consumer->key),
2011-10-20 13:57:35 +00:00
'access',
2015-05-24 16:30:31 +00:00
time()+intval(ACCESS_TOKEN_DURATION),
2011-11-07 16:36:41 +00:00
intval($uverifier));
2019-05-15 05:16:49 +00:00
if ($r) {
$ret = new OAuth1Token($key,$sec);
}
}
2011-10-20 13:57:35 +00:00
q("DELETE FROM tokens WHERE id='%s'", $token->key);
2011-11-02 08:54:07 +00:00
2019-05-15 05:16:49 +00:00
if (! is_null($ret) && $uverifier !== false) {
del_config('oauth', $verifier);
}
return $ret;
2011-11-02 08:54:07 +00:00
}
2011-10-20 13:57:35 +00:00
}
class ZotOAuth1 extends OAuth1Server {
2011-10-20 13:57:35 +00:00
function __construct() {
parent::__construct(new ZotOAuth1DataStore());
$this->add_signature_method(new OAuth1SignatureMethod_PLAINTEXT());
$this->add_signature_method(new OAuth1SignatureMethod_HMAC_SHA1());
2011-10-20 13:57:35 +00:00
}
2011-11-07 16:36:41 +00:00
2019-05-15 05:16:49 +00:00
function loginUser($uid) {
logger("ZotOAuth1::loginUser $uid");
$r = q("SELECT * FROM channel WHERE channel_id = %d LIMIT 1",
2011-11-07 16:36:41 +00:00
intval($uid)
);
2019-05-15 05:16:49 +00:00
if ($r) {
2011-11-07 16:36:41 +00:00
$record = $r[0];
2019-05-15 05:16:49 +00:00
}
else {
logger('ZotOAuth1::loginUser failure: ' . print_r($_SERVER,true), LOGGER_DEBUG);
header('HTTP/1.0 401 Unauthorized');
echo('This api requires login');
killme();
2011-11-07 16:36:41 +00:00
}
$_SESSION['uid'] = $record['channel_id'];
2011-11-07 16:36:41 +00:00
$_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
$x = q("select * from account where account_id = %d limit 1",
intval($record['channel_account_id'])
);
2019-05-15 05:16:49 +00:00
if ($x) {
require_once('include/security.php');
authenticate_success($x[0],null,true,false,true,true);
$_SESSION['allow_api'] = true;
2011-11-07 16:36:41 +00:00
}
}
}