ReceiveHandler.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 开源项目:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\service\handler;
  15. use app\service\service\WechatService;
  16. use think\Db;
  17. /**
  18. * 微信推送消息处理
  19. *
  20. * @author Anyon <zoujingli@qq.com>
  21. * @date 2016/10/27 14:14
  22. */
  23. class ReceiveHandler
  24. {
  25. /**
  26. * 事件初始化
  27. * @param string $appid
  28. * @return string
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @throws \think\exception\DbException
  32. * @throws \think\Exception
  33. */
  34. public static function handler($appid)
  35. {
  36. try {
  37. $service = WechatService::WeChatReceive($appid);
  38. } catch (\Exception $e) {
  39. return "Wechat message handling failed, {$e->getMessage()}";
  40. }
  41. // 验证微信配置信息
  42. $config = Db::name('WechatServiceConfig')->where(['authorizer_appid' => $appid])->find();
  43. if (empty($config) || empty($config['appuri'])) {
  44. \think\facade\Log::error(($message = "微信{$appid}授权配置验证无效"));
  45. return $message;
  46. }
  47. try {
  48. list($data, $openid) = [$service->getReceive(), $service->getOpenid()];
  49. if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey'];
  50. $input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($service->isEncrypt())];
  51. if (is_string($result = http_post($config['appuri'], $input, ['timeout' => 30]))) {
  52. return $result;
  53. }
  54. } catch (\Exception $e) {
  55. \think\facade\Log::error("微信{$appid}接口调用异常,{$e->getMessage()}");
  56. }
  57. return 'success';
  58. }
  59. }