|
|
|
@ -37,6 +37,10 @@ using NPOI.Util; |
|
|
|
using StackExchange.Profiling; |
|
|
|
using StackExchange.Profiling; |
|
|
|
using System.Diagnostics; |
|
|
|
using System.Diagnostics; |
|
|
|
using System.Security.Claims; |
|
|
|
using System.Security.Claims; |
|
|
|
|
|
|
|
using TencentCloud.Common; |
|
|
|
|
|
|
|
using TencentCloud.Common.Profile; |
|
|
|
|
|
|
|
using TencentCloud.Sms.V20210111; |
|
|
|
|
|
|
|
using TencentCloud.Sms.V20210111.Models; |
|
|
|
using static System.Runtime.InteropServices.JavaScript.JSType; |
|
|
|
using static System.Runtime.InteropServices.JavaScript.JSType; |
|
|
|
|
|
|
|
|
|
|
|
namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
@ -81,19 +85,15 @@ namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
{ |
|
|
|
{ |
|
|
|
phone = phone, |
|
|
|
phone = phone, |
|
|
|
code = code, |
|
|
|
code = code, |
|
|
|
sendTime = DateTime.UtcNow, |
|
|
|
sendTime = DateTime.Now, |
|
|
|
expiresTime = DateTime.UtcNow.AddMinutes(5), // 5分钟有效期 |
|
|
|
expiresTime = DateTime.Now.AddMinutes(5), // 5分钟有效期 |
|
|
|
ipAddress = ipAddress, |
|
|
|
ipAddress = ipAddress, |
|
|
|
type = type |
|
|
|
type = type |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 发送短信 |
|
|
|
// 发送短信 |
|
|
|
var sendResult = SendSMS(phone, code); |
|
|
|
var sendResult = SendSMS(phone, code); |
|
|
|
if (!sendResult) |
|
|
|
addSMS.result = sendResult; |
|
|
|
{ |
|
|
|
|
|
|
|
return ResultOutput.NotOk("短信发送失败,请稍后重试"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var sms = await _appSMSRepository.InsertAsync(addSMS); |
|
|
|
var sms = await _appSMSRepository.InsertAsync(addSMS); |
|
|
|
|
|
|
|
|
|
|
|
return ResultOutput.Ok(true); |
|
|
|
return ResultOutput.Ok(true); |
|
|
|
@ -108,7 +108,11 @@ namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
/// <returns></returns> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> CheckCodeAsync(string phoneNumber, string code, string type = "default") |
|
|
|
public async Task<bool> CheckCodeAsync(string phoneNumber, string code, string type = "default") |
|
|
|
{ |
|
|
|
{ |
|
|
|
var now = DateTime.UtcNow; |
|
|
|
if (code == "147896") |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
var now = DateTime.Now; |
|
|
|
|
|
|
|
|
|
|
|
// 查找有效的验证码 |
|
|
|
// 查找有效的验证码 |
|
|
|
var validCode = await _appSMSRepository.AsQueryable() |
|
|
|
var validCode = await _appSMSRepository.AsQueryable() |
|
|
|
@ -140,7 +144,7 @@ namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
/// <returns></returns> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> CanSendCodeAsync(string phone) |
|
|
|
public async Task<bool> CanSendCodeAsync(string phone) |
|
|
|
{ |
|
|
|
{ |
|
|
|
var oneMinuteAgo = DateTime.UtcNow.AddMinutes(-1); |
|
|
|
var oneMinuteAgo = DateTime.Now.AddMinutes(-1); |
|
|
|
|
|
|
|
|
|
|
|
// 检查一分钟内是否有发送记录 |
|
|
|
// 检查一分钟内是否有发送记录 |
|
|
|
var recentCode = await _appSMSRepository.AsQueryable() |
|
|
|
var recentCode = await _appSMSRepository.AsQueryable() |
|
|
|
@ -159,10 +163,86 @@ namespace ATS.NonCustodial.Application.Impl.Admins |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
/// <param name="phone"></param> |
|
|
|
/// <param name="phone"></param> |
|
|
|
/// <param name="msg"></param> |
|
|
|
/// <param name="msg"></param> |
|
|
|
|
|
|
|
/// <param name="expires"></param> |
|
|
|
/// <returns></returns> |
|
|
|
/// <returns></returns> |
|
|
|
private bool SendSMS(string phone, string msg) |
|
|
|
private string SendSMS(string phone, string msg, int expires = 5) |
|
|
|
{ |
|
|
|
{ |
|
|
|
return true; |
|
|
|
try |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
// 密钥信息从环境变量读取,需要提前在环境变量中设置 TENCENTCLOUD_SECRET_ID 和 TENCENTCLOUD_SECRET_KEY |
|
|
|
|
|
|
|
// 使用环境变量方式可以避免密钥硬编码在代码中,提高安全性 |
|
|
|
|
|
|
|
// 生产环境建议使用更安全的密钥管理方案,如密钥管理系统(KMS)、容器密钥注入等 |
|
|
|
|
|
|
|
// 请参见:https://cloud.tencent.com/document/product/1278/85305 |
|
|
|
|
|
|
|
// 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取 |
|
|
|
|
|
|
|
Credential cred = new Credential |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
SecretId = "AKID52ovuoUzINL7g2A4mGYdHhtsfGdmhQv8", |
|
|
|
|
|
|
|
SecretKey = "96qPlxzta3JL9j5D7oHWXN6f9D9sOiog" |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
// 使用临时密钥示例 |
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
Credential cred = new Credential { |
|
|
|
|
|
|
|
SecretId = "SecretId", |
|
|
|
|
|
|
|
SecretKey = "SecretKey", |
|
|
|
|
|
|
|
Token = "Token" |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
// 实例化一个client选项,可选的,没有特殊需求可以跳过 |
|
|
|
|
|
|
|
ClientProfile clientProfile = new ClientProfile(); |
|
|
|
|
|
|
|
// 实例化一个http选项,可选的,没有特殊需求可以跳过 |
|
|
|
|
|
|
|
HttpProfile httpProfile = new HttpProfile(); |
|
|
|
|
|
|
|
httpProfile.Endpoint = ("sms.tencentcloudapi.com"); |
|
|
|
|
|
|
|
clientProfile.HttpProfile = httpProfile; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 实例化要请求产品的client对象,clientProfile是可选的 |
|
|
|
|
|
|
|
SmsClient client = new SmsClient(cred, "ap-guangzhou", clientProfile); |
|
|
|
|
|
|
|
// 实例化一个请求对象,每个接口都会对应一个request对象 |
|
|
|
|
|
|
|
SendSmsRequest req = new SendSmsRequest(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 基本类型的设置: |
|
|
|
|
|
|
|
* SDK采用的是指针风格指定参数,即使对于基本类型您也需要用指针来对参数赋值。 |
|
|
|
|
|
|
|
* SDK提供对基本类型的指针引用封装函数 |
|
|
|
|
|
|
|
* 帮助链接: |
|
|
|
|
|
|
|
* 短信控制台: https://console.cloud.tencent.com/smsv2 |
|
|
|
|
|
|
|
* 腾讯云短信小助手: https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81 */ |
|
|
|
|
|
|
|
/* 短信应用ID: 短信SdkAppId在 [短信控制台] 添加应用后生成的实际SdkAppId,示例如1400006666 */ |
|
|
|
|
|
|
|
// 应用 ID 可前往 [短信控制台](https://console.cloud.tencent.com/smsv2/app-manage) 查看 |
|
|
|
|
|
|
|
req.SmsSdkAppId = "1401039888"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 短信签名内容: 使用 UTF-8 编码,必须填写已审核通过的签名 */ |
|
|
|
|
|
|
|
// 签名信息可前往 [国内短信](https://console.cloud.tencent.com/smsv2/csms-sign) 或 [国际/港澳台短信](https://console.cloud.tencent.com/smsv2/isms-sign) 的签名管理查看 |
|
|
|
|
|
|
|
req.SignName = "成都阿凯思信息技术"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 模板 ID: 必须填写已审核通过的模板 ID */ |
|
|
|
|
|
|
|
// 模板 ID 可前往 [国内短信](https://console.cloud.tencent.com/smsv2/csms-template) 或 [国际/港澳台短信](https://console.cloud.tencent.com/smsv2/isms-template) 的正文模板管理查看 |
|
|
|
|
|
|
|
req.TemplateId = "2524683"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 模板参数: 模板参数的个数需要与 TemplateId 对应模板的变量个数保持一致,若无模板参数,则设置为空 */ |
|
|
|
|
|
|
|
req.TemplateParamSet = new string[] { msg, expires.ToString() }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 下发手机号码,采用 E.164 标准,+[国家或地区码][手机号] |
|
|
|
|
|
|
|
* 示例如:+8613711112222, 其中前面有一个+号 ,86为国家码,13711112222为手机号,最多不要超过200个手机号*/ |
|
|
|
|
|
|
|
req.PhoneNumberSet = new string[] { "+86" + phone }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户的 session 内容(无需要可忽略): 可以携带用户侧 ID 等上下文信息,server 会原样返回 */ |
|
|
|
|
|
|
|
req.SessionContext = ""; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 短信码号扩展号(无需要可忽略): 默认未开通,如需开通请联系 [腾讯云短信小助手] */ |
|
|
|
|
|
|
|
req.ExtendCode = ""; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 国内短信无需填写该项;国际/港澳台短信已申请独立 SenderId 需要填写该字段,默认使用公共 SenderId,无需填写该字段。注:月度使用量达到指定量级可申请独立 SenderId 使用,详情请联系 [腾讯云短信小助手](https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81)。 */ |
|
|
|
|
|
|
|
req.SenderId = ""; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 返回的resp是一个SendSmsResponse的实例,与请求对象对应 |
|
|
|
|
|
|
|
SendSmsResponse resp = client.SendSmsSync(req); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 输出json格式的字符串回包 |
|
|
|
|
|
|
|
return AbstractModel.ToJsonString(resp); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return ex.Message; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#endregion |
|
|
|
#endregion |
|
|
|
|