Sms.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. namespace app\common\model;
  3. use app\common\model\Config;
  4. use think\Model;
  5. use app\common\library\Common;
  6. use AlibabaCloud\Client\AlibabaCloud;
  7. use AlibabaCloud\Client\Exception\ClientException;
  8. use AlibabaCloud\Client\Exception\ServerException;
  9. /**
  10. * 短信验证码
  11. */
  12. class Sms Extends Model
  13. {
  14. // 开启自动写入时间戳字段
  15. protected $autoWriteTimestamp = 'int';
  16. // 定义时间戳字段名
  17. protected $createTime = 'createtime';
  18. protected $updateTime = false;
  19. // 追加属性
  20. protected $append = [
  21. ];
  22. protected $table = 'q_sms';
  23. /**
  24. * 发送短信
  25. * @param $mobile
  26. * @param $event
  27. * @return array
  28. */
  29. public static function send_sms($mobile,$event){
  30. $last = self::where(['mobile' => $mobile, 'event' => $event])
  31. ->order('id', 'DESC')
  32. ->find();
  33. if ($last && time() - strtotime($last->createtime) < 60) {
  34. return Common::return_error('发送频繁!');
  35. }
  36. $ipSendTotal = Sms::where(['ip' => request()->ip()])->whereTime('createtime', '-1 hours')->count();
  37. if ($ipSendTotal >= 5) {
  38. return Common::return_error('发送频繁!');
  39. }
  40. $userinfo = User::getByMobile($mobile);
  41. if ($event == 'register' && $userinfo) {
  42. //已被注册
  43. return Common::return_error('已被注册!');
  44. } else if (in_array($event, ['changepwd', 'login']) && !$userinfo) {
  45. //未注册
  46. return Common::return_error('未注册!');
  47. }
  48. //发送阿里云短信
  49. $ret = self::accessKeyClient($event, $mobile, mt_rand(100000, 999999));
  50. if ($ret['Code'] === 'OK') {
  51. return Common::return_success('发送成功');
  52. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  53. return Common::return_error('发送太过频繁!');
  54. } else {
  55. return Common::return_error($ret['msg']);
  56. }
  57. }
  58. public static function accessKeyClient($event, $mobile, $num)
  59. {
  60. $statusStr = array(
  61. "0" => "短信发送成功",
  62. "-1" => "参数不全",
  63. "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
  64. "30" => "密码错误",
  65. "40" => "账号不存在",
  66. "41" => "余额不足",
  67. "42" => "帐户已过期",
  68. "43" => "IP地址限制",
  69. "50" => "内容含有敏感词"
  70. );
  71. $code = $num;
  72. $smsapi = "http://api.smsbao.com/";
  73. $user = "dy18747027321"; //短信平台帐号
  74. $pass = md5("5201314asd"); //短信平台密码
  75. $content="您的验证码".$code.",该验证码5分钟内有效,请勿泄漏于他人!";//要发送的短信内容
  76. $phone = $mobile;
  77. $sendurl = $smsapi."sms?u=".$user."&p=".$pass."&m=".$phone."&c=".urlencode($content);
  78. $result =file_get_contents($sendurl) ;
  79. //$a = $statusStr[$result];
  80. if ($result == 0){
  81. $ip = request()->ip();
  82. Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
  83. $array['Code'] = "OK";
  84. return $array;
  85. }else{
  86. $array['Code'] = 'error';
  87. return $array;
  88. }
  89. // $ali_accesskey = Config::get_values('ali_accesskey');
  90. // $ali_accesskey_secret = Config::get_values('ali_accesskey_secret');
  91. // $templateCode = Config::get_values('templateCode');
  92. // AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  93. // ->regionId('cn-hangzhou')
  94. // ->asDefaultClient();
  95. //
  96. // try {
  97. // $result = AlibabaCloud::rpc()
  98. // ->product('Dysmsapi')
  99. // // ->scheme('https') // https | http
  100. // ->version('2017-05-25')
  101. // ->action('SendSms')
  102. // ->method('POST')
  103. // ->host('dysmsapi.aliyuncs.com')
  104. // ->options([
  105. // 'query' => [
  106. // 'PhoneNumbers' => $mobile,
  107. // 'SignName' => '杭州小胖脸科技有限公司',
  108. // 'TemplateCode' => $templateCode,
  109. // 'TemplateParam' => '{"code":' . $num . '}',
  110. // ],
  111. // ])
  112. // ->request();
  113. // $info = $result->toArray();
  114. // if ($info['Code'] == 'OK') {
  115. // $ip = request()->ip();
  116. // Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
  117. // }
  118. // return $info;
  119. // } catch (ClientException $e) {
  120. // echo $e->getErrorMessage() . PHP_EOL;
  121. // } catch (ServerException $e) {
  122. // echo $e->getErrorMessage() . PHP_EOL;
  123. // }
  124. }
  125. }