Receive.php 2.4 KB

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