截流自动化的商城平台
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.

SmsLogic.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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\admin\logic\setting;
  20. use app\common\basics\Logic;
  21. use app\common\enum\NoticeEnum;
  22. use app\common\model\SmsConfig;
  23. use app\common\model\SmsLog;
  24. use app\common\server\ConfigServer;
  25. class SmsLogic extends Logic
  26. {
  27. /**
  28. * Notes: 短信配置列表
  29. * @author 段誉(2021/6/7 15:54)
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public static function configLists()
  36. {
  37. $default = ConfigServer::get('sms_driver', 'default', '');
  38. $lists = [
  39. [
  40. 'name' => '阿里云短信',
  41. 'path' => '存储在本地服务器',
  42. 'engine' => 'ali',
  43. 'status' => $default == 'ali' ? 1 : 0
  44. ],
  45. [
  46. 'name' => '腾讯云短信',
  47. 'path' => '存储在七牛云,请前往七牛云开通存储服务',
  48. 'engine' => 'tc',
  49. 'status' => $default == 'tc' ? 1 : 0
  50. ]
  51. ];
  52. return ['count' => count($lists), 'lists' => $lists];
  53. }
  54. /**
  55. * Notes: 设置短信配置
  56. * @param $post
  57. * @author 段誉(2021/6/21 23:33)
  58. * @return bool
  59. */
  60. public static function setConfig($post)
  61. {
  62. $engine = $post['engine'] ?? '';
  63. try{
  64. if ($engine == 'ali') {
  65. ConfigServer::set('sms_engine', 'ali', [
  66. 'sign' => $post['sign'],
  67. 'app_key' => $post['app_key'],
  68. 'secret_key' => $post['secret_key'],
  69. ]);
  70. } elseif ($engine == 'tc') {
  71. ConfigServer::set('sms_engine', 'tc', [
  72. 'sign' => $post['sign'],
  73. 'app_id' => $post['app_id'],
  74. 'app_key' => $post['app_key'],
  75. 'secret_key' => $post['secret_key'],
  76. ]);
  77. } else {
  78. throw new \Exception('设置短信渠道不存在');
  79. }
  80. self::setDefaultByStatus($post['status'] ?? 'off', $engine);
  81. return true;
  82. } catch (\Exception $e) {
  83. self::$error = $e->getMessage();
  84. return false;
  85. }
  86. }
  87. /**
  88. * Notes: 根据原来的短信引擎更新短信默认
  89. * @param $status
  90. * @param $now_engine
  91. * @author 段誉(2021/6/22 0:22)
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\DbException
  94. * @throws \think\db\exception\ModelNotFoundException
  95. */
  96. public static function setDefaultByStatus($status, $now_engine)
  97. {
  98. $last_engine = ConfigServer::get('sms_driver', 'default', '');
  99. if ($status == 'on') {
  100. ConfigServer::set('sms_driver', 'default', $now_engine);
  101. }
  102. if ($status != 'on' && $last_engine == $now_engine) {
  103. ConfigServer::set('sms_driver', 'default', '');
  104. }
  105. }
  106. /**
  107. * Notes: 获取短信配置
  108. * @param $engine
  109. * @author 段誉(2021/6/22 0:10)
  110. * @return array|bool|mixed|null
  111. */
  112. public static function getConfigInfo($engine)
  113. {
  114. switch ($engine) {
  115. case 'ali':
  116. $info = ConfigServer::get('sms_engine', 'ali', [
  117. 'sign' => '',
  118. 'app_key' => '',
  119. 'secret_key' => '',
  120. ]);
  121. break;
  122. case 'tc':
  123. $info = ConfigServer::get('sms_engine', 'tc', [
  124. 'sign' => '',
  125. 'app_id' => '',
  126. 'app_key' => '',
  127. 'secret_key' => '',
  128. ]);
  129. break;
  130. default:
  131. $info = [];
  132. }
  133. if (empty($info)) {
  134. return false;
  135. }
  136. $info['default_engine'] = ConfigServer::get('sms_driver', 'default', '');
  137. return $info;
  138. }
  139. //************************************************短信发送记录*************************************************************
  140. /**
  141. * Notes: 日志列表
  142. * @param $get
  143. * @author 段誉(2021/6/7 15:54)
  144. * @return array
  145. * @throws \think\db\exception\DbException
  146. */
  147. public static function logLists($get)
  148. {
  149. $where = [
  150. ['message_key', 'in', NoticeEnum::SMS_SCENE]
  151. ];
  152. if (isset($get['name']) && $get['name']) {
  153. $where[] = ['d.name', 'like', '%' . $get['name'] . '%'];
  154. }
  155. if (isset($get['mobile']) && $get['mobile']) {
  156. $where[] = ['mobile', 'like', '%' . $get['mobile'] . '%'];
  157. }
  158. if (isset($get['send_status']) && $get['send_status'] != '') {
  159. $where[] = ['send_status', '=', $get['send_status']];
  160. }
  161. if (isset($get['start_time']) && $get['start_time']) {
  162. $where[] = ['create_time', '>=', strtotime($get['start_time'])];
  163. }
  164. if (isset($get['end_time']) && $get['end_time']) {
  165. $where[] = ['create_time', '<=', strtotime($get['end_time'])];
  166. }
  167. $lists = SmsLog::where($where)
  168. ->order('id desc')
  169. ->paginate([
  170. 'page' => $get['page'],
  171. 'list_rows' => $get['limit'],
  172. 'var_page' => 'page'
  173. ])->toArray();
  174. return ['count' => $lists['total'], 'lists' => $lists['data']];
  175. }
  176. /**
  177. * Notes: 短信详情
  178. * @param $id
  179. * @author 段誉(2021/6/7 15:53)
  180. * @return array|\think\Model|null
  181. * @throws \think\db\exception\DataNotFoundException
  182. * @throws \think\db\exception\DbException
  183. * @throws \think\db\exception\ModelNotFoundException
  184. */
  185. public static function detail($id)
  186. {
  187. $log = SmsLog::where([
  188. ['message_key', 'in',NoticeEnum::SMS_SCENE],
  189. ['id', '=', $id]
  190. ])->withAttr('name', function ($value, $data){
  191. return NoticeEnum::getSceneDesc($data['message_key']);
  192. })->find();
  193. return $log;
  194. }
  195. }