mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]迁移微信第三方平台支持
This commit is contained in:
parent
d69c1fc656
commit
5481c48b48
@ -1,86 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
$sql = <<<SQL
|
||||
CREATE TABLE `wechat_config` (
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`authorizer_appid` varchar(100) DEFAULT NULL COMMENT '公众号APPID',
|
||||
`authorizer_access_token` varchar(200) DEFAULT NULL COMMENT '公众号Token',
|
||||
`authorizer_refresh_token` varchar(200) DEFAULT NULL COMMENT '公众号刷新Token',
|
||||
`func_info` varchar(100) DEFAULT NULL COMMENT '公众号集权',
|
||||
`nick_name` varchar(50) DEFAULT NULL COMMENT '公众号昵称',
|
||||
`head_img` varchar(200) DEFAULT NULL COMMENT '公众号头像',
|
||||
`expires_in` bigint(20) DEFAULT NULL COMMENT 'Token有效时间',
|
||||
`service_type` tinyint(2) DEFAULT NULL COMMENT '公众号实际类型',
|
||||
`service_type_info` tinyint(2) DEFAULT NULL COMMENT '服务类型信息',
|
||||
`verify_type` tinyint(2) DEFAULT NULL COMMENT '公众号实际认证类型',
|
||||
`verify_type_info` tinyint(2) DEFAULT NULL COMMENT '公众号认证类型',
|
||||
`user_name` varchar(100) DEFAULT NULL COMMENT '众众号原始账号',
|
||||
`alias` varchar(100) DEFAULT NULL COMMENT '公众号别名',
|
||||
`qrcode_url` varchar(200) DEFAULT NULL COMMENT '公众号二维码地址',
|
||||
`business_info` varchar(255) DEFAULT NULL,
|
||||
`principal_name` varchar(255) DEFAULT NULL COMMENT '公司名称',
|
||||
`idc` tinyint(1) unsigned DEFAULT NULL,
|
||||
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(1正常授权,0取消授权)',
|
||||
`total` bigint(20) unsigned DEFAULT '0' COMMENT '统计调用次数',
|
||||
`appkey` char(32) DEFAULT NULL COMMENT '接口KEY',
|
||||
`appuri` varchar(255) DEFAULT NULL COMMENT '响应接口APP',
|
||||
`create_by` bigint(20) DEFAULT NULL COMMENT '创建人ID',
|
||||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `index_wechat_config_authorizer_appid` (`authorizer_appid`) USING BTREE
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='公众号授权参数';
|
||||
SQL;
|
||||
|
||||
try {
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include "../include.php";
|
||||
|
||||
|
||||
$config = [
|
||||
'component_appid' => 'test',
|
||||
'component_token' => 'test',
|
||||
'component_appsecret' => '71308e96a204296c57d7cd4b21b883e8',
|
||||
'component_encodingaeskey' => 'BJIUzE0gqlWy0GxfPp4J1oPTBmOrNDIGPNav1YFH5Z5',
|
||||
// 配置商户支付参数
|
||||
'mch_id' => "1332187001",
|
||||
'mch_key' => '11bd3d66d85f322a1e803cb587d18c3f',
|
||||
// 配置商户支付双向证书目录
|
||||
'ssl_key' => '',
|
||||
'ssl_cer' => '',
|
||||
|
||||
];
|
||||
// 开放平台获取授权公众号 AccessToken 处理
|
||||
$config['GetAccessTokenCallback'] = function ($authorizer_appid) use ($config) {
|
||||
$open = new \WeChat\Open($config);
|
||||
$authorizer_refresh_token = ''; // 从数据库去找吧,在授权绑定的时候获取到了
|
||||
$result = $open->refreshAccessToken($authorizer_appid, $authorizer_refresh_token);
|
||||
if (empty($result['authorizer_access_token'])) {
|
||||
throw new \WeChat\Exceptions\InvalidResponseException($result['errmsg'], '0');
|
||||
}
|
||||
$data = [
|
||||
'authorizer_access_token' => $result['authorizer_access_token'],
|
||||
'authorizer_refresh_token' => $result['authorizer_refresh_token'],
|
||||
];
|
||||
// 需要把$data记录到数据库
|
||||
return $result['authorizer_access_token'];
|
||||
};
|
||||
// 使用第三方服务创建接口实例
|
||||
$open = new \WeChat\Open($config);
|
||||
$wechat = $open->instance('授权公众号APPID', 'User');
|
||||
} catch (Exception $e) {
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
}
|
273
WeChat/Open.php
273
WeChat/Open.php
@ -1,273 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace WeChat;
|
||||
|
||||
use WeChat\Contracts\DataArray;
|
||||
use WeChat\Contracts\Tools;
|
||||
use WeChat\Contracts\WeChat;
|
||||
use WeChat\Exceptions\InvalidArgumentException;
|
||||
use WeChat\Exceptions\InvalidResponseException;
|
||||
|
||||
/**
|
||||
* 第三方平台支持
|
||||
* Class Open
|
||||
* @package WeChat
|
||||
*/
|
||||
class Open extends WeChat
|
||||
{
|
||||
|
||||
/**
|
||||
* Open constructor.
|
||||
* @param array $options
|
||||
*/
|
||||
public function __construct(array $options)
|
||||
{
|
||||
if (empty($options['component_token'])) {
|
||||
throw new InvalidArgumentException("Missing Config -- [component_token]");
|
||||
}
|
||||
if (empty($options['component_appid'])) {
|
||||
throw new InvalidArgumentException("Missing Config -- [component_appid]");
|
||||
}
|
||||
if (empty($options['component_appsecret'])) {
|
||||
throw new InvalidArgumentException("Missing Config -- [component_appsecret]");
|
||||
}
|
||||
if (empty($options['component_encodingaeskey'])) {
|
||||
throw new InvalidArgumentException("Missing Config -- [component_encodingaeskey]");
|
||||
}
|
||||
$this->config = new DataArray($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* 接收公众平台推送的 Ticket
|
||||
* @return bool|array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function setComonentTicket()
|
||||
{
|
||||
$receive = new Receive([
|
||||
'token' => $this->config->get('component_token'),
|
||||
'appid' => $this->config->get('component_appid'),
|
||||
'appsecret' => $this->config->get('component_appsecret'),
|
||||
'encodingaeskey' => $this->config->get('component_encodingaeskey'),
|
||||
]);
|
||||
$data = $receive->getReceive();
|
||||
if (!empty($data['ComponentVerifyTicket'])) {
|
||||
Tools::setCache('component_verify_ticket', $data['ComponentVerifyTicket']);
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取或刷新服务 AccessToken
|
||||
* @return bool|string
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function getComponentAccessToken()
|
||||
{
|
||||
$cache = 'wechat_component_access_token';
|
||||
$component_access_token = Tools::getCache($cache);
|
||||
if (empty($$component_access_token)) {
|
||||
$url = 'https://api.weixin.qq.com/cgi-bin/component/api_component_token';
|
||||
$result = $this->callPostApi($url, [
|
||||
'component_appid' => $this->config->get('component_appid'),
|
||||
'component_appsecret' => $this->config->get('component_appsecret'),
|
||||
'component_verify_ticket' => Tools::get('component_verify_ticket'),
|
||||
]);
|
||||
if (empty($result['component_access_token'])) {
|
||||
throw new InvalidResponseException('GetComponentAccessToken Faild', '0');
|
||||
}
|
||||
Tools::setCache($cache, $component_access_token, 7000);
|
||||
}
|
||||
return $component_access_token;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取授权方的帐号基本信息
|
||||
* @param string $authorizer_appid 授权公众号或小程序的appid
|
||||
* @return array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function getAuthorizerInfo($authorizer_appid)
|
||||
{
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_info?component_access_token={$component_access_token}";
|
||||
$result = $this->callPostApi($url, [
|
||||
'authorizer_appid' => $authorizer_appid,
|
||||
'component_appid' => $this->config->get('component_appid'),
|
||||
]);
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置授权方的选项信息
|
||||
* @param string $authorizer_appid 授权公众号或小程序的appid
|
||||
* @param string $option_name 选项名称
|
||||
* @param string $option_value 设置的选项值
|
||||
* @return array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function setAuthorizerOption($authorizer_appid, $option_name, $option_value)
|
||||
{
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https://api.weixin.qq.com/cgi-bin/component/ api_set_authorizer_option?component_access_token={$component_access_token}";
|
||||
$result = $this->callPostApi($url, [
|
||||
'option_name' => $option_name,
|
||||
'option_value' => $option_value,
|
||||
'authorizer_appid' => $authorizer_appid,
|
||||
'component_appid' => $this->config->get('component_appid'),
|
||||
]);
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取预授权码 pre_auth_code
|
||||
* @return string
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function getPreauthCode()
|
||||
{
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https://api.weixin.qq.com/cgi-bin/component/api_create_preauthcode?component_access_token={$component_access_token}";
|
||||
$result = $this->callPostApi($url, ['component_appid' => $this->config->get('component_appid')]);
|
||||
if (empty($result['pre_auth_code'])) {
|
||||
throw new InvalidResponseException('GetPreauthCode Faild.', '0');
|
||||
}
|
||||
return $result['pre_auth_code'];
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取授权回跳地址
|
||||
* @param string $redirect_uri 回调URI
|
||||
* @param integer $auth_type 要授权的帐号类型
|
||||
* @return bool
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function getAuthRedirect($redirect_uri, $auth_type = 3)
|
||||
{
|
||||
$pre_auth_code = $this->getPreauthCode();
|
||||
$redirect_uri = urlencode($redirect_uri);
|
||||
$component_appid = $this->config->get('component_appid');
|
||||
return "https://mp.weixin.qq.com/cgi-bin/componentloginpage?component_appid={$component_appid}&pre_auth_code={$pre_auth_code}&redirect_uri={$redirect_uri}&auth_type={$auth_type}";
|
||||
}
|
||||
|
||||
/**
|
||||
* 使用授权码换取公众号或小程序的接口调用凭据和授权信息
|
||||
* @return bool|array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function getQueryAuthorizerInfo()
|
||||
{
|
||||
if (empty($_GET['auth_code'])) {
|
||||
return false;
|
||||
}
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https://api.weixin.qq.com/cgi-bin/component/api_query_auth?component_access_token={$component_access_token}";
|
||||
$result = $this->callPostApi($url, [
|
||||
'component_appid' => $this->config->get('component_appid'),
|
||||
'authorization_code' => $_GET['auth_code'],
|
||||
]);
|
||||
if (empty($result['authorizer_appid']) || empty($result['authorizer_access_token'])) {
|
||||
throw new InvalidResponseException('GetQueryAuthorizerInfo Faild.', '0');
|
||||
}
|
||||
// 缓存授权公众号访问 ACCESS_TOKEN
|
||||
Tools::setCache("{$result['authorizer_appid']}_access_token", $result['authorizer_access_token'], 7000);
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取(刷新)授权公众号的令牌
|
||||
* @param string $authorizer_appid 授权公众号或小程序的appid
|
||||
* @param string $authorizer_refresh_token 授权方的刷新令牌
|
||||
* @return array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function refreshAccessToken($authorizer_appid, $authorizer_refresh_token)
|
||||
{
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https:// api.weixin.qq.com /cgi-bin/component/api_authorizer_token?component_access_token={$component_access_token}";
|
||||
$result = $this->callPostApi($url, [
|
||||
'authorizer_appid' => $authorizer_appid,
|
||||
'authorizer_refresh_token' => $authorizer_refresh_token,
|
||||
'component_appid' => $this->config->get('component_appid'),
|
||||
]);
|
||||
if (empty($result['authorizer_access_token'])) {
|
||||
throw new InvalidResponseException('RefreshAccessToken Faild', '0');
|
||||
}
|
||||
// 缓存授权公众号访问 ACCESS_TOKEN
|
||||
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* oauth 授权跳转接口
|
||||
* @param string $authorizer_appid 授权公众号或小程序的appid
|
||||
* @param string $redirect_uri 回调地址
|
||||
* @param string $scope snsapi_userinfo|snsapi_base
|
||||
* @return string
|
||||
*/
|
||||
public function getOauthRedirect($authorizer_appid, $redirect_uri, $scope = 'snsapi_userinfo')
|
||||
{
|
||||
$redirect_url = urlencode($redirect_uri);
|
||||
$component_appid = $this->config->get('component_appid');
|
||||
return "https://open.weixin.qq.com/connect/oauth2/authorize?appid={$authorizer_appid}&redirect_uri={$redirect_url}"
|
||||
. "&response_type=code&scope={$scope}&state={$authorizer_appid}&component_appid={$component_appid}#wechat_redirect";
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过code获取AccessToken
|
||||
* @param string $authorizer_appid 授权公众号或小程序的appid
|
||||
* @return bool|array
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function getOauthAccessToken($authorizer_appid)
|
||||
{
|
||||
if (empty($_GET['code'])) {
|
||||
return false;
|
||||
}
|
||||
$component_appid = $this->config->get('component_appid');
|
||||
$component_access_token = $this->getComponentAccessToken();
|
||||
$url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid={$authorizer_appid}&code={$_GET['code']}&grant_type=authorization_code&"
|
||||
. "component_appid={$component_appid}&component_access_token={$component_access_token}";
|
||||
$result = $this->callGetApi($url);
|
||||
return $result !== false ? $result : false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建需要的接口实例
|
||||
* @param string $type 需要加载的接口实例名称
|
||||
* @param string $authorizer_appid 授权公众号的appid
|
||||
* @return Card|Custom|Media|Menu|Oauth|Pay|Product|Qrcode|Receive|Scan|Script|Shake|Tags|Template|User|Wifi
|
||||
*/
|
||||
public function instance($type, $authorizer_appid)
|
||||
{
|
||||
$className = 'WeChat\\' . ucfirst(strtolower($type));
|
||||
$config = $this->config->get();
|
||||
$config['appid'] = $authorizer_appid;
|
||||
$config['token'] = $this->config->get('component_token');
|
||||
$config['appsecret'] = $this->config->get('component_appsecret');
|
||||
$config['encodingaeskey'] = $this->config->get('component_encodingaeskey');
|
||||
return new $className($config);
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user