121 lines
3.7 KiB
PHP
121 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace addons\third\library;
|
|
|
|
use fast\Http;
|
|
use think\Config;
|
|
use think\Session;
|
|
|
|
/**
|
|
* 微博
|
|
*/
|
|
class Weibo
|
|
{
|
|
const GET_AUTH_CODE_URL = "https://api.weibo.com/oauth2/authorize";
|
|
const GET_ACCESS_TOKEN_URL = "https://api.weibo.com/oauth2/access_token";
|
|
const GET_USERINFO_URL = "https://api.weibo.com/2/users/show.json";
|
|
|
|
/**
|
|
* 配置信息
|
|
* @var array
|
|
*/
|
|
private $config = [];
|
|
|
|
public function __construct($options = [])
|
|
{
|
|
if ($config = Config::get('third.weibo')) {
|
|
$this->config = array_merge($this->config, $config);
|
|
}
|
|
$this->config = array_merge($this->config, is_array($options) ? $options : []);
|
|
}
|
|
|
|
/**
|
|
* 登陆
|
|
*/
|
|
public function login()
|
|
{
|
|
header("Location:" . $this->getAuthorizeUrl());
|
|
}
|
|
|
|
/**
|
|
* 获取authorize_url
|
|
*/
|
|
public function getAuthorizeUrl()
|
|
{
|
|
$state = md5(uniqid(rand(), true));
|
|
Session::set('state', $state);
|
|
$queryarr = array(
|
|
"response_type" => "code",
|
|
"client_id" => $this->config['app_id'],
|
|
"redirect_uri" => $this->config['callback'],
|
|
"state" => $state,
|
|
);
|
|
request()->isMobile() && $queryarr['display'] = 'mobile';
|
|
$url = self::GET_AUTH_CODE_URL . '?' . http_build_query($queryarr);
|
|
return $url;
|
|
}
|
|
|
|
/**
|
|
* 获取用户信息
|
|
* @param array $params
|
|
* @return array
|
|
*/
|
|
public function getUserInfo($params = [])
|
|
{
|
|
$params = $params ?: request()->get('', null, null);
|
|
if (isset($params['access_token']) || (isset($params['state']) && $params['state'] == Session::get('state') && isset($params['code']))) {
|
|
//获取access_token
|
|
$data = isset($params['code']) ? $this->getAccessToken($params['code']) : $params;
|
|
$access_token = $data['access_token'] ?? '';
|
|
$refresh_token = $data['refresh_token'] ?? '';
|
|
$expires_in = $data['expires_in'] ?? 0;
|
|
if ($access_token) {
|
|
$uid = $data['uid'] ?? '';
|
|
//获取用户信息
|
|
$queryarr = [
|
|
"access_token" => $access_token,
|
|
"uid" => $uid,
|
|
];
|
|
$ret = Http::get(self::GET_USERINFO_URL, $queryarr);
|
|
$userinfo = (array)json_decode($ret, true);
|
|
if (!$userinfo || isset($userinfo['error_code'])) {
|
|
return [];
|
|
}
|
|
$userinfo['nickname'] = $userinfo['screen_name'] ?? '';
|
|
$userinfo['avatar'] = $userinfo['profile_image_url'] ?? '';
|
|
$data = [
|
|
'access_token' => $access_token,
|
|
'refresh_token' => $refresh_token,
|
|
'expires_in' => $expires_in,
|
|
'openid' => $uid,
|
|
'userinfo' => $userinfo
|
|
];
|
|
return $data;
|
|
}
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* 获取access_token
|
|
* @param string $code code
|
|
* @return array
|
|
*/
|
|
public function getAccessToken($code = '')
|
|
{
|
|
if (!$code) {
|
|
return [];
|
|
}
|
|
$queryarr = array(
|
|
"grant_type" => "authorization_code",
|
|
"client_id" => $this->config['app_id'],
|
|
"client_secret" => $this->config['app_secret'],
|
|
"redirect_uri" => $this->config['callback'],
|
|
"code" => $code,
|
|
);
|
|
$response = Http::post(self::GET_ACCESS_TOKEN_URL . '?' . http_build_query($queryarr), []);
|
|
$ret = (array)json_decode($response, true);
|
|
return $ret ?: [];
|
|
}
|
|
}
|