Merge branch 'abp' of https://gitee.com/ccnetcore/Yi into abp
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
using AlibabaCloud.SDK.Dysmsapi20170525;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using Volo.Abp.Domain.Services;
|
||||
using Yi.Framework.Rbac.Domain.Shared.Options;
|
||||
|
||||
namespace Yi.Framework.Rbac.Domain.Managers
|
||||
{
|
||||
public class AliyunManger : DomainService, IAliyunManger
|
||||
{
|
||||
private ILogger<AliyunManger> _logger;
|
||||
private AliyunOptions Options { get; set; }
|
||||
public AliyunManger(ILogger<AliyunManger> logger, IOptions<AliyunOptions> options)
|
||||
{
|
||||
Options = options.Value;
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
private Client CreateClient()
|
||||
{
|
||||
AlibabaCloud.OpenApiClient.Models.Config config = new AlibabaCloud.OpenApiClient.Models.Config
|
||||
{
|
||||
// 必填,您的 AccessKey ID
|
||||
AccessKeyId = Options.AccessKeyId,
|
||||
// 必填,您的 AccessKey Secret
|
||||
AccessKeySecret = Options.AccessKeySecret,
|
||||
};
|
||||
// 访问的域名
|
||||
config.Endpoint = "dysmsapi.aliyuncs.com";
|
||||
return new Client(config);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 发送短信
|
||||
/// </summary>
|
||||
/// <param name="phoneNumbers"></param>
|
||||
/// <param name="code"></param>
|
||||
/// <returns></returns>
|
||||
public async Task SendSmsAsync(string phoneNumbers, string code)
|
||||
{
|
||||
|
||||
try
|
||||
{
|
||||
var _aliyunClient = CreateClient();
|
||||
AlibabaCloud.SDK.Dysmsapi20170525.Models.SendSmsRequest sendSmsRequest = new AlibabaCloud.SDK.Dysmsapi20170525.Models.SendSmsRequest
|
||||
{
|
||||
PhoneNumbers = phoneNumbers,
|
||||
SignName = Options.Sms.SignName,
|
||||
TemplateCode = Options.Sms.TemplateCode,
|
||||
TemplateParam = System.Text.Json.JsonSerializer.Serialize(new { code })
|
||||
};
|
||||
|
||||
var response = await _aliyunClient.SendSmsAsync(sendSmsRequest);
|
||||
}
|
||||
|
||||
catch (Exception _error)
|
||||
{
|
||||
_logger.LogError(_error, "阿里云短信发送错误:" + _error.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public interface IAliyunManger
|
||||
{
|
||||
Task SendSmsAsync(string phoneNumbers, string code);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user