You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
3.5 KiB

3 years ago
<?php
// QQ 登录
if (defined('WEBSITE') || defined('GETINFO'))
{
global $_LANG;
$_LANG['help']['APP_KEY'] = '在 淘宝 http://open.taobao.com/ 此处申请的 APP ID';
$_LANG['help']['APP_SECRET'] = '在淘宝中申请的 appkey';
$_LANG['APP_KEY'] = 'APP ID';
$_LANG['APP_SECRET'] = 'APP KEY';
$i = isset($web) ? count($web) : 0;
// 类名
$web[$i]['name'] = '淘宝';
// 文件名,不包含后缀
$web[$i]['type'] = 'taobao';
$web[$i]['className'] = 'taobao';
// 作者信息
$web[$i]['author'] = '`Dream`';
// 作者QQ
$web[$i]['qq'] = '0000210';
// 作者邮箱
$web[$i]['email'] = '0000210@ecmoban.com';
// 申请网址
$web[$i]['website'] = 'http://open.taobao.com';
// 版本号
$web[$i]['version'] = '2.7v';
// 更新日期
$web[$i]['date'] = '2013-11-5';
// 配置信息
$web[$i]['config'] = array(
array('type'=>'text' , 'name'=>'APP_KEY', 'value'=>''),
array('type'=>'text' , 'name' => 'APP_SECRET' , 'value' => ''),
);
}
if (!defined('WEBSITE'))
{
include_once(dirname(__FILE__).'/oath2.class.php');
class website extends oath2
{
// 类赋值
function website()
{
$this->app_key = APP_KEY;
$this->app_secret = APP_SECRET;
$this->scope = '';
$this->authorizeURL = 'https://oauth.taobao.com/authorize';
$this->post_login = array();
$this->meth = 'GET';
$this->tokenURL = 'https://oauth.taobao.com/token';
$this->post_token = array();
$this->graphURL = 'https://graph.qq.com/oauth2.0/me';
$this->userURL = 'https://graph.qq.com/user/get_user_info';
$this->post_msg = array(
'client_id' => '',
'client_secret'=>'',
'oauth_consumer_key' => $this->app_key,
'format'=>'json'
);
}
function getGraph( $result )
{
if(!$this->is_error($result , false))
{
return false;
}
$params = $token = array();
parse_str($result, $params);
$token = $params;
$graph_url = $this->graphURL."?access_token=" . $params['access_token'];
$user = $this->http($graph_url , 'GET');
$user = $this->is_error($user);
$token['openid'] = $user['openid'];
unset($token['expires_in']);
return $token;
}
function message($info)
{
if(!$info || !is_array($info))
{
return false;
}
$info['name'] = $info['nickname'];
$info['sex'] = $info['gender'] == '男' ? '1' : '0';
$info['user_id'] = $this->token['openid'];
$info['img'] = $info['figureurl_2'];
$info['rank_id'] = RANK_ID;
return $info;
}
function is_error($response , $is_chuli = true)
{
if (strrpos($response, "callback") !== false)
{
$lpos = strpos($response, "(");
$rpos = strrpos($response, ")");
$response = substr($response, $lpos + 1, $rpos - $lpos -1);
$ret = json_decode($response , true);
if($ret['ret'] || $ret['error'])
{
$this->add_error((isset($ret['ret']) ? $ret['ret'] : $ret['error']) , isset($ret['error_description']) ? $ret['error_description'] : '' , isset($ret['msg']) ? $ret['msg'] : '');
return false;
}
}
if($is_chuli)
{
$ret = json_decode($response , true);
if($ret['ret'] || $ret['error'])
{
print_r($ret);
$this->add_error((isset($ret['ret']) ? $ret['ret'] : $ret['error']) , isset($ret['error_description']) ? $ret['error_description'] : '' , isset($ret['msg']) ? $ret['msg'] : '');
return false;
}
return $ret ? $ret : $response;
}
else
{
return true;
}
}
}
}
3 years ago
?>