MessageService.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. namespace app\data\service;
  3. use app\data\model\DataUserMessage;
  4. use Carbon\Carbon;
  5. use think\admin\Service;
  6. /**
  7. * 短信支持服务
  8. * Class MessageService
  9. * @package app\data\service
  10. */
  11. class MessageService extends Service
  12. {
  13. /**
  14. * 平台授权账号
  15. * @var string
  16. */
  17. protected $username;
  18. /**
  19. * 平台授权密码
  20. * @var string
  21. */
  22. protected $password;
  23. /**
  24. * 短信条数查询
  25. */
  26. public function balance(): array
  27. {
  28. [$state, $message, $result] = $this->_request('v2/balance', []);
  29. return [$state, $message, $state ? $result['sumSms'] : 0];
  30. }
  31. /**
  32. * 执行网络请求
  33. * @param string $url 接口请求地址
  34. * @param array $data 接口请求参数
  35. * @return array
  36. */
  37. private function _request(string $url, array $data): array
  38. {
  39. $encode = md5(md5($this->password) . ($tkey = time()));
  40. $option = ['headers' => ['Content-Type:application/json;charset=UTF-8']];
  41. $request = json_encode(array_merge($data, ['username' => $this->username, 'password' => $encode, 'tKey' => $tkey]));
  42. $result = json_decode(http_post("https://api.mix2.zthysms.com/{$url}", $request, $option), true);
  43. if (empty($result['code'])) {
  44. return [0, '接口请求网络异常', []];
  45. } elseif (intval($result['code']) === 200) {
  46. return [1, $this->_error($result['code']), $result];
  47. } else {
  48. return [0, $this->_error($result['code']), $result];
  49. }
  50. }
  51. /**
  52. * 获取状态描述
  53. * @param integer $code
  54. * @return string
  55. */
  56. private function _error(int $code): string
  57. {
  58. $arrs = [
  59. 200 => '提交成功',
  60. 4001 => '用户名错误',
  61. 4002 => '密码不能为空',
  62. 4003 => '短信内容不能为空',
  63. 4004 => '手机号码错误',
  64. 4006 => 'IP鉴权错误',
  65. 4007 => '用户禁用',
  66. 4008 => 'tKey错误',
  67. 4009 => '密码错误',
  68. 4011 => '请求错误',
  69. 4013 => '定时时间错误',
  70. 4014 => '模板错误',
  71. 4015 => '扩展号错误',
  72. 4019 => '用户类型错误',
  73. 4023 => '签名错误',
  74. 4025 => '模板变量内容为空',
  75. 4026 => '手机号码数最大2000个',
  76. 4027 => '模板变量内容最大200组',
  77. 4029 => '请使用 POST 请求',
  78. 4030 => 'Content-Type 请使用 application/json',
  79. 4031 => '模板名称不能为空',
  80. 4032 => '模板类型不正确',
  81. 4034 => '模板内容不能为空',
  82. 4035 => '模板名称已经存在',
  83. 4036 => '添加模板信息失败',
  84. 4037 => '模板名称最大20字符',
  85. 4038 => '模板内容超过最大字符数',
  86. 4040 => '模板内容缺少变量值或规则错误',
  87. 4041 => '模板内容中变量规范错误',
  88. 4042 => '模板变量个数超限',
  89. 4044 => '接口24小时限制提交次数超限',
  90. 9998 => 'JSON解析错误',
  91. 9999 => '非法请求',
  92. ];
  93. return $arrs[$code] ?? $code;
  94. }
  95. /**
  96. * 验证手机短信验证码
  97. * @param string $code 验证码
  98. * @param string $phone 手机号验证
  99. * @param string $tplcode
  100. * @return boolean
  101. */
  102. public function checkVerifyCode(string $code, string $phone, string $tplcode = 'zt.tplcode_register'): bool
  103. {
  104. if($code==env('sms.test_code')){
  105. return true;
  106. }
  107. $cache = $this->app->cache->get(md5("code-{$tplcode}-{$phone}"), []);
  108. return is_array($cache) && isset($cache['code']) && $cache['code'] == $code;
  109. }
  110. /**
  111. * 验证手机短信验证码
  112. * @param string $phone 手机号码
  113. * @param integer $wait 等待时间
  114. * @param string $tplcode 模板编号
  115. * @return array
  116. * @throws \think\db\exception\DataNotFoundException
  117. * @throws \think\db\exception\DbException
  118. * @throws \think\db\exception\ModelNotFoundException
  119. */
  120. public function sendVerifyCode(string $phone, int $wait = 120, string $tplcode = 'zt.tplcode_register'): array
  121. {
  122. $content = sysconf($tplcode) ?: '您的短信验证码为{code},请在十分钟内完成操作!';
  123. $cache = $this->app->cache->get($ckey = md5("code-{$tplcode}-{$phone}"), []);
  124. // 检查是否已经发送
  125. if (is_array($cache) && isset($cache['time']) && $cache['time'] > time() - $wait) {
  126. $dtime = ($cache['time'] + $wait < time()) ? 0 : ($wait - time() + $cache['time']);
  127. return [1, '短信验证码已经发送!', ['time' => $dtime]];
  128. }
  129. // 生成新的验证码
  130. [$code, $time] = [rand(100000, 999999), time()];
  131. $this->app->cache->set($ckey, ['code' => $code, 'time' => $time], 600);
  132. // 尝试发送短信内容
  133. [$state] = $this->send($phone, preg_replace_callback("|{(.*?)}|", function ($matches) use ($code) {
  134. return $matches[1] === 'code' ? $code : $matches[1];
  135. }, $content));
  136. if ($state) return [1, '短信验证码发送成功!', [
  137. 'time' => ($time + $wait < time()) ? 0 : ($wait - time() + $time)],
  138. ]; else {
  139. $this->app->cache->delete($ckey);
  140. return [0, '短信发送失败,请稍候再试!', []];
  141. }
  142. }
  143. public function sendCode($phone,$type){
  144. $code=rand(100000, 999999);
  145. return app()->db->transaction(function () use ($phone, $type, $code){
  146. $msg=DataUserMessage::create([
  147. 'type'=>$type,
  148. 'phone'=>$phone,
  149. 'status'=>1,
  150. 'result'=>$code,
  151. ]);
  152. return $msg;
  153. });
  154. }
  155. public function checkCode($code,$phone,$type){
  156. if($code==env('sms.test_code')){
  157. return true;
  158. }
  159. $msg=DataUserMessage::mk()
  160. ->where('phone',$phone)
  161. ->where('type',$type)
  162. ->where('result',$code)
  163. ->where('create_at','>',Carbon::now()->subMinutes(3))
  164. ->order('id','desc')
  165. ->where('status',1)
  166. ->find();
  167. if(!$msg){
  168. return false;
  169. }
  170. $msg['status']=2;
  171. $msg->save();
  172. return true;
  173. }
  174. /**
  175. * 发送自定义短信内容
  176. * @param string $phone
  177. * @param string $content
  178. * @return array
  179. */
  180. public function send(string $phone, string $content): array
  181. {
  182. [$state, $message, $record] = $this->_request('v2/sendSms', ['mobile' => $phone, 'content' => $content]);
  183. DataUserMessage::mk()->insert(['phone' => $phone, 'content' => $content, 'result' => $message, 'status' => $state ? 1 : 0]);
  184. return [$state, $message, $record];
  185. }
  186. /**
  187. * 短信服务初始化
  188. * @return MessageService
  189. * @throws \think\db\exception\DataNotFoundException
  190. * @throws \think\db\exception\DbException
  191. * @throws \think\db\exception\ModelNotFoundException
  192. */
  193. protected function initialize(): MessageService
  194. {
  195. $this->username = sysconf('zt.username');
  196. $this->password = sysconf('zt.password');
  197. return $this;
  198. }
  199. }