123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- namespace app\common\model;
- use app\common\model\Config;
- use think\Model;
- use app\common\library\Common;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- /**
- * 短信验证码
- */
- class Sms Extends Model
- {
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = false;
- // 追加属性
- protected $append = [
- ];
- protected $table = 'q_sms';
- /**
- * 发送短信
- * @param $mobile
- * @param $event
- * @return array
- */
- public static function send_sms($mobile,$event){
- $last = self::where(['mobile' => $mobile, 'event' => $event])
- ->order('id', 'DESC')
- ->find();
- if ($last && time() - strtotime($last->createtime) < 60) {
- return Common::return_error('发送频繁!');
- }
- $ipSendTotal = Sms::where(['ip' => request()->ip()])->whereTime('createtime', '-1 hours')->count();
- if ($ipSendTotal >= 5) {
- return Common::return_error('发送频繁!');
- }
- $userinfo = User::getByMobile($mobile);
- if ($event == 'register' && $userinfo) {
- //已被注册
- return Common::return_error('已被注册!');
- } else if (in_array($event, ['changepwd', 'login']) && !$userinfo) {
- //未注册
- return Common::return_error('未注册!');
- }
- //发送阿里云短信
- $ret = self::accessKeyClient($event, $mobile, mt_rand(100000, 999999));
- if ($ret['Code'] === 'OK') {
- return Common::return_success('发送成功');
- } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
- return Common::return_error('发送太过频繁!');
- } else {
- return Common::return_error($ret['msg']);
- }
- }
- public static function accessKeyClient($event, $mobile, $num)
- {
- $statusStr = array(
- "0" => "短信发送成功",
- "-1" => "参数不全",
- "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
- "30" => "密码错误",
- "40" => "账号不存在",
- "41" => "余额不足",
- "42" => "帐户已过期",
- "43" => "IP地址限制",
- "50" => "内容含有敏感词"
- );
- $code = $num;
- $smsapi = "http://api.smsbao.com/";
- $user = "dy18747027321"; //短信平台帐号
- $pass = md5("5201314asd"); //短信平台密码
- $content="您的验证码".$code.",该验证码5分钟内有效,请勿泄漏于他人!";//要发送的短信内容
- $phone = $mobile;
- $sendurl = $smsapi."sms?u=".$user."&p=".$pass."&m=".$phone."&c=".urlencode($content);
- $result =file_get_contents($sendurl) ;
- //$a = $statusStr[$result];
- if ($result == 0){
- $ip = request()->ip();
- Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
- $array['Code'] = "OK";
- return $array;
- }else{
- $array['Code'] = 'error';
- return $array;
- }
- // $ali_accesskey = Config::get_values('ali_accesskey');
- // $ali_accesskey_secret = Config::get_values('ali_accesskey_secret');
- // $templateCode = Config::get_values('templateCode');
- // AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
- // ->regionId('cn-hangzhou')
- // ->asDefaultClient();
- //
- // try {
- // $result = AlibabaCloud::rpc()
- // ->product('Dysmsapi')
- // // ->scheme('https') // https | http
- // ->version('2017-05-25')
- // ->action('SendSms')
- // ->method('POST')
- // ->host('dysmsapi.aliyuncs.com')
- // ->options([
- // 'query' => [
- // 'PhoneNumbers' => $mobile,
- // 'SignName' => '杭州小胖脸科技有限公司',
- // 'TemplateCode' => $templateCode,
- // 'TemplateParam' => '{"code":' . $num . '}',
- // ],
- // ])
- // ->request();
- // $info = $result->toArray();
- // if ($info['Code'] == 'OK') {
- // $ip = request()->ip();
- // Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
- // }
- // return $info;
- // } catch (ClientException $e) {
- // echo $e->getErrorMessage() . PHP_EOL;
- // } catch (ServerException $e) {
- // echo $e->getErrorMessage() . PHP_EOL;
- // }
- }
- }
|