Update ReceiveHandler.php

This commit is contained in:
Anyon 2019-07-18 10:50:11 +08:00
parent b8eab9f337
commit 8c2651d697

View File

@ -1,15 +1,16 @@
<?php <?php
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | framework // | ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ] // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 官方网站: http://framework.thinkadmin.top // | 官方网站: http://demo.thinkadmin.top
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/framework // | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace app\service\handler; namespace app\service\handler;
@ -38,7 +39,7 @@ class ReceiveHandler
public static function handler($appid) public static function handler($appid)
{ {
try { try {
$service = WechatService::WeChatReceive($appid); $wechat = WechatService::WeChatReceive($appid);
} catch (\Exception $e) { } catch (\Exception $e) {
return "Wechat message handling failed, {$e->getMessage()}"; return "Wechat message handling failed, {$e->getMessage()}";
} }
@ -49,12 +50,16 @@ class ReceiveHandler
return $message; return $message;
} }
try { try {
list($data, $openid) = [$service->getReceive(), $service->getOpenid()]; list($data, $openid) = [$wechat->getReceive(), $wechat->getOpenid()];
if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey']; if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey'];
$input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($service->isEncrypt())]; $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_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; return $result;
} }
}
} catch (\Exception $e) { } catch (\Exception $e) {
\think\facade\Log::error("微信{$appid}接口调用异常,{$e->getMessage()}"); \think\facade\Log::error("微信{$appid}接口调用异常,{$e->getMessage()}");
} }