|
@@ -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>
|