MessageService.php 9.2 KB

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