李昊 4 éve
szülő
commit
aebf644fc0

+ 17 - 10
GxPress/Api/GxPress.Api/AppControllers/UserController.cs

@@ -203,7 +203,7 @@ namespace GxPress.Api.AppControllers
             if (!string.IsNullOrEmpty(code))
                 throw new BusinessException("请求太频繁!");
             code = RandomGenerator.GetNumberString(6);
-            if (Common.Sms.MasSms.SendSms(phone, code))
+            if (Common.Sms.AliySms.SendSms(phone, code))
             {
                 _logger.LogInformation("{phone}验证码:{code}", phone, code);
                 var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
@@ -228,16 +228,23 @@ namespace GxPress.Api.AppControllers
             if (user != null)
                 throw new BusinessException("号码以被使用");
             //TODO 短信验证码发送
-            //return await _smsService.
-            //SendValidationCodeAsync(phone);
+            //发送短信
             var key = $"login:{phone}";
-            // if (await RedisHelper.ExistsAsync(key)) throw new BusinessException("发送太频繁");
-            var code = "180606";
-            _logger.LogInformation("{phone}验证码:{code}", phone, code);
-            //var result = await RedisHelper.SetAsync(key, code, 300);
-            //if (result == false)
-            //    throw new BusinessException("发送失败");
-            return true;
+            var code = await _cache.GetStringAsync(key);
+            if (!string.IsNullOrEmpty(code))
+                throw new BusinessException("请求太频繁!");
+            code = RandomGenerator.GetNumberString(6);
+            if (Common.Sms.AliySms.SendSms(phone, code))
+            {
+                _logger.LogInformation("{phone}验证码:{code}", phone, code);
+                var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
+                await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
+                {
+                    AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
+                });
+                return true;
+            }
+            return false;
         }
 
         /// <summary>

+ 1 - 0
GxPress/Infrastructure/GxPress.Common/GxPress.Common.csproj

@@ -15,6 +15,7 @@
     <PackageReference Include="System.Drawing.Common" Version="4.6.0" />
     <PackageReference Include="ZKWeb.Fork.QRCoder" Version="1.3.0" />
     <PackageReference Include="Imazen.WebP" Version="10.0.1" />
+    <PackageReference Include="aliyun-net-sdk-core" Version="1.5.3" />
   </ItemGroup>
 
 </Project>

+ 45 - 0
GxPress/Infrastructure/GxPress.Common/Sms/AliySms.cs

@@ -0,0 +1,45 @@
+using System.Text;
+using Aliyun.Acs.Core;
+using Aliyun.Acs.Core.Exceptions;
+using Aliyun.Acs.Core.Http;
+using Aliyun.Acs.Core.Profile;
+using Datory.Utils;
+
+namespace GxPress.Common.Sms
+{
+    public static class AliySms
+    {
+        public static bool SendSms(string phone, string code)
+        {
+            //发送验证码阿里云
+            IClientProfile profile =
+                DefaultProfile.GetProfile("cn-hangzhou", "LTAI4GKu41MJT8HBxdGAUSWU", "huEFjWImOBDmzyJ8jdive83BXpQm1V");
+            DefaultAcsClient client = new DefaultAcsClient(profile);
+            CommonRequest request = new CommonRequest
+            {
+                Method = MethodType.POST,
+                Domain = "dysmsapi.aliyuncs.com",
+                Version = "2017-05-25",
+                Action = "SendSms"
+            };
+            request.AddQueryParameters("PhoneNumbers", $"{phone}");
+            request.AddQueryParameters("SignName", "同岑");
+            request.AddQueryParameters("TemplateCode", "SMS_190273884");
+            request.AddQueryParameters("TemplateParam", "{\"code\":\"" + code + "\"}");
+            try
+            {
+                CommonResponse response = client.GetCommonResponse(request);
+                if (response.HttpStatus == 200)
+                {
+                    var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
+                    return true;
+                }
+            }
+            catch (ServerException e)
+            {
+                return false;
+            }
+            return false;
+        }
+    }
+}

+ 0 - 2
GxPress/Infrastructure/GxPress.Common/Sms/MasSms.cs

@@ -45,9 +45,7 @@ namespace GxPress.Common.Sms
             {
                 throw new Common.Exceptions.BusinessException(ex.Message);
             }
-
         }
-
     }
 
     public class SmsSuccess