截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

WxMessageServer.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use app\common\enum\NoticeEnum;
  21. use app\common\logic\MessageNoticeLogic;
  22. use app\common\model\Client_;
  23. use app\common\model\NoticeSetting;
  24. use app\common\model\user\UserAuth;
  25. use EasyWeChat\Factory;
  26. class WxMessageServer
  27. {
  28. protected $config = null; // 配置信息
  29. protected $app = null; // easyechat实例
  30. protected $openid = null; // openid
  31. protected $template_id = null; // 消息模板ID
  32. protected $platform = null; //平台[公众号, 小程序]
  33. protected $notice = null; //通知记录
  34. // 初始化
  35. public function __construct($user_id, $platform)
  36. {
  37. // 获取用户信息
  38. $this->platform = $platform;
  39. $where = ['user_id' => (int)$user_id, 'client' => $platform];
  40. $user_model = UserAuth::where($where)->find();
  41. $this->openid = $user_model['openid'];
  42. if ($this->platform === Client_::oa) {
  43. $this->config = WeChatServer::getOaConfig();
  44. $this->app = Factory::officialAccount($this->config);
  45. } else if ($this->platform === Client_::mnp) {
  46. $this->config = WeChatServer::getMnpConfig();
  47. $this->app = Factory::miniProgram($this->config);
  48. }
  49. }
  50. // 发送消息
  51. public function send($params)
  52. {
  53. if (empty($this->openid)) {
  54. return false;
  55. }
  56. // 获取template_id
  57. $scene = NoticeSetting::where(['scene' => $params['scene']])->find()->toArray();
  58. if ($this->platform == Client_::oa) {
  59. $scene_model = $scene['oa_notice'];
  60. $send_type = NoticeEnum::OA_NOTICE;
  61. } else {
  62. $scene_model = $scene['mnp_notice'];
  63. $send_type = NoticeEnum::MNP_NOTICE;
  64. }
  65. if (!$scene_model || $scene_model['status'] == 0 || $scene_model['template_id'] == '') {
  66. return false;
  67. } else {
  68. $this->template_id = $scene_model['template_id'];
  69. }
  70. if ($this->platform == Client_::oa) {
  71. $template = $this->oaTemplate($params, $scene_model);
  72. } else {
  73. $template = $this->mnpTemplate($params, $scene_model);
  74. }
  75. $this->notice = MessageNoticeLogic::addNoticeLog($params, $scene_model, $send_type, json_encode($template, true));
  76. // 发送消息
  77. try {
  78. if ($this->platform === Client_::oa) {
  79. $res = $this->app->template_message->send($template);
  80. } else if ($this->platform === Client_::mnp) {
  81. $res = $this->app->subscribe_message->send($template);
  82. }
  83. MessageNoticeLogic::updateNotice($this->notice['id'], json_encode($res, true));
  84. return true;
  85. } catch (\Exception $e) {
  86. MessageNoticeLogic::updateNotice($this->notice['id'], $e->getMessage());
  87. return false;
  88. }
  89. }
  90. // 公众号消息模板
  91. public function oaTemplate($params, $scene_model)
  92. {
  93. $domain = request()->domain();
  94. $tpl = [
  95. 'touser' => $this->openid,
  96. 'template_id' => $this->template_id,
  97. 'url' => $domain.$params['url'],
  98. 'data' => [
  99. 'first' => $scene_model['first'],
  100. 'remark' => $scene_model['remark']
  101. ]
  102. ];
  103. return $this->tplformat($scene_model, $params, $tpl);
  104. }
  105. // 小程序消息模板
  106. public function mnpTemplate($params, $scene_model)
  107. {
  108. $tpl = [
  109. 'touser' => $this->openid,
  110. 'template_id' => $this->template_id,
  111. 'page' => $params['page']
  112. ];
  113. return $this->tplformat($scene_model, $params, $tpl);
  114. }
  115. // 调换变量
  116. public function tplformat($scene_model, $params, $tpl)
  117. {
  118. foreach ($scene_model['tpl'] as $item) {
  119. foreach ($params['params'] as $k => $v) {
  120. $search_replace = '{'.$k.'}';
  121. $item['tpl_content'] = str_replace($search_replace, $v, $item['tpl_content']);
  122. }
  123. $tpl['data'][$item['tpl_keyword']] = $item['tpl_content'];
  124. }
  125. return $tpl;
  126. }
  127. }