mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
65 lines
2.7 KiB
PHP
65 lines
2.7 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\service\handle;
|
||
|
||
use app\service\service\WechatService;
|
||
use think\admin\Service;
|
||
|
||
/**
|
||
* 授权公众号消息转发处理
|
||
* Class ReceiveHandle
|
||
* @package app\service\serivce
|
||
*/
|
||
class ReceiveHandle extends Service
|
||
{
|
||
/**
|
||
* 事件初始化
|
||
* @param string $appid
|
||
* @return string
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function handler($appid)
|
||
{
|
||
try {
|
||
$wechat = WechatService::WeChatReceive($appid);
|
||
} catch (\Exception $exception) {
|
||
return "Wechat message handling failed, {$exception->getMessage()}";
|
||
}
|
||
// 验证微信配置信息
|
||
$config = $this->app->db->name('WechatServiceConfig')->where(['authorizer_appid' => $appid])->find();
|
||
if (empty($config) || empty($config['appuri'])) {
|
||
sysoplog('微信接口', $message = "微信{$appid}授权配置验证无效");
|
||
return $message;
|
||
}
|
||
try {
|
||
list($data, $openid) = [$wechat->getReceive(), $wechat->getOpenid()];
|
||
if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey'];
|
||
$input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($wechat->isEncrypt())];
|
||
if (is_string($result = http_post($config['appuri'], $input, ['timeout' => 30]))) {
|
||
if (is_array($json = json_decode($result, true))) {
|
||
return $wechat->reply($json, true, $wechat->isEncrypt());
|
||
} else {
|
||
return $result;
|
||
}
|
||
}
|
||
} catch (\Exception $exception) {
|
||
sysoplog('微信接口', "微信{$appid}接口调用异常,{$exception->getMessage()}");
|
||
}
|
||
return 'success';
|
||
}
|
||
} |