PublishHandler.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. /**
  17. * 第三方平台测试上线
  18. *
  19. * @author Anyon <zoujingli@qq.com>
  20. * @date 2016/10/27 14:14
  21. */
  22. class PublishHandler
  23. {
  24. /**
  25. * 当前微信APPID
  26. * @var string
  27. */
  28. protected static $appid;
  29. /**
  30. * 事件初始化
  31. * @param string $appid
  32. * @return string
  33. * @throws \WeChat\Exceptions\InvalidDecryptException
  34. * @throws \WeChat\Exceptions\InvalidResponseException
  35. * @throws \WeChat\Exceptions\LocalCacheException
  36. */
  37. public static function handler($appid)
  38. {
  39. try {
  40. $wechat = WechatService::WeChatReceive($appid);
  41. } catch (\Exception $e) {
  42. return "Wechat message handling failed, {$e->getMessage()}";
  43. }
  44. /* 分别执行对应类型的操作 */
  45. switch (strtolower($wechat->getMsgType())) {
  46. case 'text':
  47. $receive = $wechat->getReceive();
  48. if ($receive['Content'] === 'TESTCOMPONENT_MSG_TYPE_TEXT') {
  49. return $wechat->text('TESTCOMPONENT_MSG_TYPE_TEXT_callback')->reply([], true);
  50. } else {
  51. $key = str_replace("QUERY_AUTH_CODE:", '', $receive['Content']);
  52. WechatService::service()->getQueryAuthorizerInfo($key);
  53. return $wechat->text("{$key}_from_api")->reply([], true);
  54. }
  55. case 'event':
  56. $receive = $wechat->getReceive();
  57. return $wechat->text("{$receive['Event']}from_callback")->reply([], true);
  58. default:
  59. return 'success';
  60. }
  61. }
  62. }