截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SmsMessageServer.php 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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\enum\SmsEnum;
  22. use app\common\logic\MessageNoticeLogic;
  23. use app\common\model\NoticeSetting;
  24. use app\common\model\SmsLog;
  25. use app\common\server\sms\Driver;
  26. class SmsMessageServer
  27. {
  28. protected $sms_log;
  29. protected $notice;
  30. public function send($params)
  31. {
  32. try{
  33. // 手机号为空 直接返回
  34. if (empty($params['mobile'])) {
  35. return true;
  36. }
  37. //场景对应短信模板信息
  38. $scene_config = NoticeSetting::where(['scene' => $params['scene']])->findOrEmpty();
  39. //增加短信记录
  40. $content = $this->getContentInfo($scene_config, $params);
  41. $code = $this->getCodeInfo($params['scene'], $scene_config, $params['params']);
  42. $this->sms_log = $this->addSmsLog($params, $content, $code);
  43. //增加通知记录
  44. $this->notice = MessageNoticeLogic::addNoticeLog($params, $scene_config['sms_notice'], NoticeEnum::SMS_NOTICE, $content);
  45. //发送短信
  46. $SmsDriver = new Driver();
  47. $res = $SmsDriver->send($params['mobile'], [
  48. 'template_id' => $scene_config['sms_notice']['template_code'],
  49. 'param' => $this->setSmsParams($scene_config, $params),
  50. ]);
  51. if (false === $res) {
  52. $this->updateSmsLog($this->sms_log['id'], SmsEnum::SEND_FAIL, $SmsDriver->getError());
  53. throw new \Exception($SmsDriver->getError());
  54. }
  55. $this->updateSmsLog($this->sms_log['id'], SmsEnum::SEND_SUCCESS, $res);
  56. return true;
  57. } catch (\Exception $e) {
  58. if (!empty($this->sms_log['id'])) {
  59. $this->updateSmsLog($this->sms_log['id'], SmsEnum::SEND_FAIL, $e->getMessage());
  60. }
  61. if (!empty($this->notice['id'])) {
  62. MessageNoticeLogic::updateNotice($this->notice['id'], $e->getMessage());
  63. }
  64. return $e->getMessage();
  65. }
  66. }
  67. public function addSmsLog($params, $content, $code)
  68. {
  69. return SmsLog::create([
  70. 'message_key' => $params['scene'],
  71. 'mobile' => $params['mobile'],
  72. 'content' => $content,
  73. 'code' => $code,
  74. 'send_status' => SmsEnum::SEND_ING,
  75. 'send_time' => time(),
  76. ]);
  77. }
  78. public function updateSmsLog($id, $status, $result)
  79. {
  80. SmsLog::update([
  81. 'send_status' => $status,
  82. 'results' => json_encode($result, JSON_UNESCAPED_UNICODE)
  83. ],['id' => $id]);
  84. }
  85. //发送内容(替换设置好的模板变量)
  86. public function getContentInfo($scene_config, $params)
  87. {
  88. $content = $scene_config['sms_notice']['content'];
  89. foreach ($params['params'] as $item => $val) {
  90. $search_replace = '{' . $item . '}';
  91. $content = str_replace($search_replace, $val, $content);
  92. }
  93. return $content;
  94. }
  95. //短信验证码
  96. public function getCodeInfo($scene, $scene_config, $sms_params)
  97. {
  98. $code = '';
  99. if (in_array($scene, NoticeEnum::NOTICE_NEED_CODE)) {
  100. $code = array_intersect_key($sms_params, $scene_config['variable']);
  101. if ($code) {
  102. return array_shift($code);
  103. }
  104. }
  105. return $code;
  106. }
  107. /**
  108. * @notes 腾讯云参数设置
  109. * @param $scene_config
  110. * @param $params
  111. * @return array|mixed
  112. * @author 段誉
  113. * @date 2021/8/4 14:09
  114. */
  115. public function setSmsParams($scene_config, $params)
  116. {
  117. $sms_driver = ConfigServer::get('sms_driver', 'default', '');
  118. if ($sms_driver != 'tc') {
  119. return $params['params'];
  120. }
  121. //腾讯云特殊处理
  122. $arr = [];
  123. $content = $scene_config['sms_notice']['content'];
  124. foreach ($params['params'] as $item => $val) {
  125. $search = '{' . $item . '}';
  126. if(strpos($content, $search) !== false
  127. && !in_array($item, $arr)
  128. ) {
  129. //arr => 获的数组[nickname, order_sn] //顺序可能是乱的
  130. $arr[] = $item;
  131. }
  132. }
  133. //arr2 => 获得数组[nickname, order_sn] //调整好顺序的变量名数组
  134. $arr2 = [];
  135. if (!empty($arr)) {
  136. foreach ($arr as $v) {
  137. $key = strpos($content, $v);
  138. $arr2[$key] = $v;
  139. }
  140. }
  141. //格式化 arr2 => 以小到大的排序的数组
  142. ksort($arr2);
  143. $arr3 = array_values($arr2);
  144. //arr4 => 获取到变量数组的对应的值 [mofung, 123456789]
  145. $arr4 = [];
  146. foreach ($arr3 as $v2) {
  147. if(isset($params['params'][$v2])) {
  148. $arr4[] = $params['params'][$v2];
  149. }
  150. }
  151. return $arr4;
  152. }
  153. }